:root {
            --primary-bg: #121212;
            --secondary-bg: #1e1e1e;
            --accent-gold: #FFB805;
            --accent-gold-hover: #e6a600;
            --text-main: #ffffff;
            --text-muted: #b0b0b0;
            --black: #000000;
            --white: #ffffff;
            --card-bg: #252525;
            --border-color: rgba(255, 184, 5, 0.2);
            --transition: all 0.3s ease;
            --header-h: 70px;
            --container-w: 1200px;
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }
        ul { list-style: none; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        img { max-width: 100%; height: auto; display: block; }

        .site-H3rYTM-container {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        .site-H3rYTM-header {
            background: var(--secondary-bg);
            border-bottom: 2px solid var(--accent-gold);
            height: var(--header-h);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .site-H3rYTM-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .site-H3rYTM-header-logo img {
            width: 130px;
            height: auto;
        }
        .site-H3rYTM-header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .site-H3rYTM-btn {
            cursor: pointer;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 14px;
            transition: var(--transition);
            align-items: center;
            gap: 8px;
        }
        .site-H3rYTM-btn-gold {
            background: var(--accent-gold);
            color: var(--black);
        }
        .site-H3rYTM-btn-gold:hover { background: var(--accent-gold-hover); }
        .site-H3rYTM-btn-black {
            background: var(--black);
            color: var(--white);
            border: 1px solid var(--accent-gold);
        }
        .site-H3rYTM-burger {
            width: 30px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }
        .site-H3rYTM-burger span {
            height: 3px;
            width: 100%;
            background: var(--accent-gold);
        }

        /* HERO SECTION */
        .site-H3rYTM-hero {
            padding-top: calc(var(--header-h) + 60px);
            padding-bottom: 60px;
            background: radial-gradient(circle at 10% 20%, rgba(255, 184, 5, 0.05) 0%, transparent 50%);
        }
        .site-H3rYTM-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }
        .site-H3rYTM-hero-title {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
        }
        .site-H3rYTM-bonus-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
        }
        .site-H3rYTM-bonus-label {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            color: var(--accent-gold);
        }
        .site-H3rYTM-bonus-value {
            font-size: 48px;
            font-weight: 900;
        }
        .site-H3rYTM-bonus-value span { color: var(--accent-gold); }
        .site-H3rYTM-bonus-img {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 150px;
            opacity: 0.8;
        }
        .site-H3rYTM-promo-box {
            display: flex;
            margin: 20px 0;
            background: var(--black);
            border-radius: 6px;
            overflow: hidden;
            border: 1px dashed var(--accent-gold);
        }
        .site-H3rYTM-promo-box input {
            background: transparent;
            border: none;
            color: var(--accent-gold);
            padding: 12px;
            font-weight: 700;
            font-size: 20px;
            width: 100%;
            text-align: center;
        }
        .site-H3rYTM-hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .site-H3rYTM-hero-desc {
            margin-top: 30px;
            color: var(--text-muted);
        }
        .site-H3rYTM-stats {
            display: flex;
            gap: 30px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        .site-H3rYTM-stat-item {
            display: flex;
            flex-direction: column;
        }
        .site-H3rYTM-stat-val {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-gold);
        }

        /* TOC */
        .site-H3rYTM-section-title {
            font-size: 32px;
            margin-bottom: 40px;
            border-left: 5px solid var(--accent-gold);
            padding-left: 20px;
        }
        .site-H3rYTM-toc {
            background: var(--secondary-bg);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }
        .site-H3rYTM-toc ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .site-H3rYTM-toc a {
            color: var(--text-muted);
            font-size: 14px;
        }
        .site-H3rYTM-toc a:hover { color: var(--accent-gold); }

        /* TABLES */
        .site-H3rYTM-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 30px 0;
            background: var(--secondary-bg);
            border-radius: 8px;
        }
        table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            text-align: left;
        }
        th, td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        th { background: rgba(255, 184, 5, 0.1); color: var(--accent-gold); text-transform: uppercase; font-size: 13px; }

        /* SCREENSHOTS */
        .site-H3rYTM-screenshots {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 20px;
        }
        .site-H3rYTM-screenshots div {
            flex: 0 0 220px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }

        /* INSTRUCTIONS */
        .site-H3rYTM-guide-block {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin: 60px 0;
        }
        .site-H3rYTM-guide-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        .site-H3rYTM-step-list {
            counter-reset: step;
        }
        .site-H3rYTM-step-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 30px;
        }
        .site-H3rYTM-step-item::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--accent-gold);
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            border-radius: 50%;
        }

        /* FAQ */
        .site-H3rYTM-faq {
            margin: 60px 0;
        }
        details {
            background: var(--card-bg);
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
        }
        summary {
            padding: 20px;
            font-weight: 700;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        summary svg { width: 20px; transition: 0.3s; }
        details[open] summary svg { transform: rotate(180deg); }
        details div { padding: 0 20px 20px; color: var(--text-muted); }

        /* FOOTER */
        .site-H3rYTM-footer {
            background: var(--black);
            padding: 60px 0 30px;
            border-top: 4px solid var(--accent-gold);
        }
        .site-H3rYTM-footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .site-H3rYTM-partner-list {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .site-H3rYTM-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ASIDE STICKY */
        .site-H3rYTM-sticky-btn {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        @media (max-width: 1024px) {
            .site-H3rYTM-hero-grid { grid-template-columns: 1fr; text-align: center; }
            .site-H3rYTM-hero-title { font-size: 32px; }
            .site-H3rYTM-hero-grid img { margin: 0 auto; max-width: 300px; }
            .site-H3rYTM-hero-btns { justify-content: center; }
            .site-H3rYTM-guide-item { grid-template-columns: 1fr; }
            .site-H3rYTM-guide-item:nth-child(even) { direction: rtl; }
            .site-H3rYTM-guide-item:nth-child(even) * { direction: ltr; }
        }

        @media (max-width: 768px) {
            .site-H3rYTM-header-actions button:last-of-type { display: none; }
            .site-H3rYTM-stats { flex-wrap: wrap; justify-content: center; }
        }

        section { padding: 40px 0; }
        h2 { color: var(--accent-gold); text-transform: uppercase; }
        h3 { color: var(--white); margin: 20px 0 10px; }
        p { margin-bottom: 15px; color: var(--text-muted); }
        span.site-H3rYTM-accent { color: var(--accent-gold); font-weight: bold; }
        .hidden { display: none; }

.gen-z90td1j9 {
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.gen-59nzwj6x {
  color: rgb(176, 176, 176);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gen-22ayowty {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-1imheof2 .site-H3rYTM-section-title { margin-bottom: 20px; font-weight: 700; }
.gen-1imheof2 p { line-height: 1.6; margin-bottom: 15px; }
.gen-1imheof2 h3 { margin-top: 25px; margin-bottom: 10px; font-size: 1.4rem; color: #ffc107; }
.gen-1imheof2 .site-H3rYTM-table-wrapper { margin: 20px 0; overflow-x: auto; }
.gen-1imheof2 table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); }
.gen-1imheof2 th, .gen-1imheof2 td { padding: 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.gen-1imheof2 th { background: rgba(255,255,255,0.1); color: #ffc107; }
.gen-1imheof2 .site-H3rYTM-btn-gold { background: #ffc107; color: #000; border: none; font-weight: bold; cursor: pointer; border-radius: 4px; transition: transform 0.2s; }
.gen-1imheof2 .site-H3rYTM-btn-gold:hover { transform: scale(1.05); background: #e6af06; }

.gen-aquqdv95 {
  color: rgb(255, 184, 5);
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gen-qh29jugh {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.gen-uyekurwf {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.gen-s69ls516 {
  color: rgb(255, 184, 5);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  border-radius: 0px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gen-xyqnve50 {
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 18.72px;
  border-radius: 0px;
  margin: 10px 0;
  font-weight: 500;
}

.gen-f3657cwv {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-ic6eyuae {
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.gen-ic6eyuae p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.gen-ic6eyuae img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    display: block;
}

.gen-lji85e76 {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-yg1ur0rm {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-3y2sz4ex {
  color: rgb(255, 184, 5);
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}

.gen-uiuf50ei {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-47rmpr31 {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.gen-oerqnng6 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
}
.gen-oerqnng6 .highlight {
    color: #ffcc00;
    font-weight: 500;
}
.gen-oerqnng6 li {
    position: relative;
    padding-left: 20px;
}
.gen-oerqnng6 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffcc00;
}

.gen-lb2ek461 {
  color: rgb(255, 184, 5);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  border-radius: 0px;
  margin: 20px 0;
  font-weight: 700;
}

.gen-q4ns2aff {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}
.gen-q4ns2aff .site-H3rYTM-accent {
  color: #ffffff;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.gen-qeccprlc {
  color: rgb(176, 176, 176);
  background: rgba(0, 0, 0, 0);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  border-radius: 0px;
  line-height: 1.5;
}

.gen-fzcfw59q {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.gen-jmxm038e {
  color: rgb(176, 176, 176);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gen-pjst1i3p {
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.gen-pjst1i3p .site-H3rYTM-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.gen-pjst1i3p .site-H3rYTM-step-list {
    list-style: none;
    padding: 0;
}

.gen-pjst1i3p .site-H3rYTM-step-list li {
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.gen-pjst1i3p .site-H3rYTM-step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5ad02;
    font-weight: bold;
}






._extracted-style-2BYx { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-53R4 { color:var(--accent-gold) }

._extracted-style-0dw8 { color:var(--accent-gold) }

._extracted-style-Zzux { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-3cAf { font-size: 24px; }

._extracted-style-D3Om { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-DwVU { text-align: center; }

._extracted-style-6N_A { padding: 15px 40px; }

._extracted-style-RAjP { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-372Q { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-T9-s { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-jqhT { margin-left: 20px; color: var(--text-muted); }

._extracted-style-ENDN { margin-top: 20px; }

._extracted-style-Nzwe { border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; list-style-type: none; }

._extracted-style-3k1T { margin-bottom: 12px; }

._extracted-style-jzGp { display: block; color: #fff; margin-bottom: 4px; }

._extracted-style-_3v4 { display: block; color: #fff; margin-bottom: 4px; }

._extracted-style-hBX0 { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-A1QN { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

._extracted-style-PkGb { background: var(--card-bg); padding: 20px; border-radius: 8px; }

._extracted-style-rjc5 { background: var(--card-bg); padding: 20px; border-radius: 8px; }

._extracted-style-HoEA { background: var(--card-bg); padding: 20px; border-radius: 8px; }

._extracted-style-Dc1V { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-Z3Jz { max-width: 300px; }

._extracted-style-sk0r { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-1wWd { display: flex; gap: 40px; flex-wrap: wrap; }

._extracted-style-qbSt { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-IraJ { margin-bottom: 30px; }

._extracted-style-bPCa { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-jD-l { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-XamQ { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style--qyd { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-pIe- { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-Zrtz { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-ffkB { display:inline; vertical-align:middle; margin-right:10px; }

._extracted-style-knEh { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-8LIP { opacity: 1; transform: translateY(0px); transition: 0.6s ease-out; }

._extracted-style-0Khw { margin-top:0 }

._extracted-style-Fkf2 { display:flex; gap:10px; }

._extracted-style-6qyn { width:100%; border-radius:50px; font-size:18px; padding:15px; }