* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #111112;
    --surface: #17171a;
    --surface-hover: rgba(255, 255, 255, 0.04);
    --border: #29292e;
    --text: #ffffff;
    --text-secondary: #9497a9;
    --text-muted: #626266;
    --accent: #9747ff;
    --accent-dark: #7c3aed;
    --accent-deep: #6d28d9;
    --accent-subtle: rgba(151, 71, 255, 0.15);
    --youtube: #ff0033;
    --success: #c0ff47;
    --success-dark: #a3e635;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text,
.footer-logo-text {
    font-family:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(17, 17, 18, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
}

@media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: flex-start;
        position: relative;
        padding: 16px 20px;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }
    .burger {
        display: none !important;
    }
    .nav-links {
        display: none !important;
    }
    .hero-grid {
        min-height: auto;
        padding-top: 24px;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-visual {
        display: none !important;
    }
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .hero-stat-value {
        font-size: 22px;
    }
    .hero-stat-label {
        font-size: 11px;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(113, 50, 245, 0.25);
}

.btn-primary:active {
    transform: scale(0.97) translateY(0);
}

.btn-youtube {
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
}

.btn-youtube:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(113, 50, 245, 0.25);
}

.btn-youtube:active {
    transform: scale(0.97) translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.btn-subtle {
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 10px 18px;
}

.btn-subtle:hover {
    background: rgba(133, 91, 251, 0.24);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-scroll-container {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 32px 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-grid {
        padding: 24px 20px 40px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        height: auto;
        min-height: auto;
    }
    .hero-visual {
        display: none !important;
    }
    .showcase-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 0 16px;
        scrollbar-width: none;
        white-space: nowrap;
    }
    .showcase-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .showcase-grid {
        display: inline-flex;
        vertical-align: top;
        padding: 0 20px;
        gap: 16px;
        flex-wrap: nowrap;
        width: auto;
    }
    .showcase-link {
        display: inline-block;
        white-space: normal;
        width: 120px;
    }
}

.hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--youtube);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (max-width: 480px) {
    .hero-grid {
        padding-top: 24px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .partner-badge {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
    }
    .badge-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    .hero-visual-main {
        max-height: 260px;
    }
    .section h2 {
        font-size: 24px;
    }
    .services-content h2 {
        font-size: 24px;
    }
    .market-card {
        padding: 28px 20px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .platform-icons {
        gap: 8px;
    }
    .platform-icons img {
        width: 28px;
        height: 28px;
    }
    .platform-icons img[src*="images/"] {
        transform: scale(1.2);
    }
    .platform-icons img[src*="images/"]:hover {
        transform: scale(1.2) scale(1.1);
    }
    .ad-type {
        flex-wrap: wrap;
    }
    .ad-type .badge {
        margin-left: 0;
    }
    .step {
        flex-direction: column;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .monetization-highlight h3 {
        font-size: 20px;
    }
    .showcase-link {
        width: 100px;
    }
    .trust-logo-img {
        height: 20px;
    }
    .trust-logo-img img {
        max-width: 70px;
    }
    .faq-answer {
        padding: 0 20px 20px;
    }
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-stat-value {
        font-size: 20px !important;
    }
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.hero-visual-main {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 900px) {
    .hero-visual {
        min-height: 360px;
    }
}

/* Trust Bar */
.trust-bar {
    background: var(--bg);
    padding: 48px 32px;
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 32px 20px;
    }
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 24px;
    }
}

.trust-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust-logo-img:hover {
    opacity: 1;
}

.trust-logo-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 110px;
    filter: grayscale(1) brightness(2);
}

@media (max-width: 480px) {
    .trust-logo {
        font-size: 16px;
    }
    .trust-logo-img {
        height: 22px;
    }
    .trust-logo-img img {
        max-width: 80px;
    }
}

/* Content Sections */
.section {
    padding: 120px 32px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }
}

.section-header {
    max-width: 600px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 36px;
    }
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 28px;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.5;
}

/* Services Section - What Playgama Does */
.services-section {
    background: linear-gradient(180deg, #111112 0%, #9747ff 100%);
    color: white;
    padding: 80px 32px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.services-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .services-content h2 {
        font-size: 28px;
    }
}

.services-content h2 span {
    color: #c0ff47;
}

.services-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(151, 71, 255, 0.3);
    transform: translateX(4px);
}

.service-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}

.service-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-image {
        width: 100%;
        height: 140px;
        order: -1;
    }
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(113, 50, 245, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
}

.service-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.monetization-highlight {
    background: rgba(113, 50, 245, 0.08);
    border: 1px solid rgba(113, 50, 245, 0.2);
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 768px) {
    .monetization-highlight {
        padding: 24px;
    }
}

.monetization-highlight h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.monetization-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ad-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ad-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.ad-type-icon {
    width: 32px;
    height: 32px;
    background: rgba(192, 255, 71, 0.16);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ad-type-icon.soon {
    background: rgba(98, 98, 102, 0.16);
}

.ad-type span {
    font-weight: 600;
}

.ad-type .badge {
    margin-left: auto;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.ad-type .badge.live {
    background: rgba(192, 255, 71, 0.16);
    color: var(--success);
}

.ad-type .badge.soon {
    background: rgba(104, 107, 130, 0.12);
    color: #484b5e;
}

.payout-methods {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(113, 50, 245, 0.15);
}

.payout-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.payout-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payout-item {
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
}

/* Countries Section */
.countries-section {
    background: var(--bg);
}

.countries-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .countries-grid {
        gap: 12px;
    }
}

.country-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

@media (max-width: 480px) {
    .country-tag {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.country-tag.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.country-tag.coming {
    color: var(--text-muted);
}

/* Why Playgama */
.why-section {
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 24px rgba(113, 50, 245, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border-color: rgba(113, 50, 245, 0.2);
}

.benefit-highlight:hover {
    border-color: var(--accent);
    box-shadow:
        0 4px 24px rgba(113, 50, 245, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
    .benefit {
        padding: 24px;
    }
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.benefit h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.benefit p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefit-highlight {
    background: var(--surface);
    border-color: var(--accent);
    border-width: 2px;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
}

.platform-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.platform-icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    opacity: 0.7;
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.platform-icons img[src*="images/"] {
    transform: scale(1.45);
}

.platform-icons img[src*="images/"]:hover {
    transform: scale(1.45) scale(1.1);
}

.platform-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.platform-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.stat-item-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Steps */
.steps-section {
    background: var(--surface);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 28px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 24px rgba(113, 50, 245, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border-color: rgba(113, 50, 245, 0.2);
}

@media (max-width: 480px) {
    .step {
        padding: 24px;
        gap: 16px;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

@media (max-width: 480px) {
    .step-content h3 {
        font-size: 18px;
    }
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.step-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(151, 71, 255, 0.4);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.step-content a::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.2s ease;
}

.step-content a:hover {
    color: #c0ff47;
    border-bottom-color: #c0ff47;
}

.step-content a:hover::after {
    transform: translateX(3px);
}

/* FAQ Section */
.faq-section {
    background: var(--bg);
}

.faq-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 24px rgba(113, 50, 245, 0.06);
    border-color: rgba(113, 50, 245, 0.15);
}

.faq-question {
    padding: 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 28px 28px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg) 0%, #9747ff 100%);
    color: white;
    text-align: center;
    padding: 100px 32px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px;
    }
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.17;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-light {
    background: white;
    color: #111112;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 24px;
    font-weight: 600;
}

.btn-light:hover {
    background: #f0f0f0;
}

.btn-dark-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
    background: #070708;
    color: white;
    padding: 80px 32px 40px;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 40px;
    }
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    color: white;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent);
}

.footer-subscribe p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 8px;
}

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: #626266;
}

.subscribe-form input:focus {
    border-color: var(--accent);
}

.subscribe-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.subscribe-form button:hover {
    background: var(--accent-dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Market Opportunity Section */
.market-section {
    background: var(--bg);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}

.market-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-card:hover {
    border-color: rgba(151, 71, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(113, 50, 245, 0.06);
}

.market-number {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -2px;
    margin-bottom: 8px;
    line-height: 1;
}

.market-label {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(113, 50, 245, 0.08);
    border-color: rgba(113, 50, 245, 0.2);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent-subtle);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* Showcase Section */
.showcase-section {
    background: var(--bg);
}

.showcase-scroll-container {
    width: 100%;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .showcase-scroll-container {
        padding: 0;
    }
}

.showcase-grid {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.showcase-link,
.showcase-link:hover,
.showcase-link:focus,
.showcase-link:active {
    text-decoration: none !important;
    color: inherit;
    display: block;
    width: 150px;
    flex-shrink: 0;
    outline: none;
    border: none;
}

@media (max-width: 768px) {
    .showcase-link {
        width: 120px;
    }
}

.showcase-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(151, 71, 255, 0.15);
    border-color: rgba(151, 71, 255, 0.3);
}

.showcase-image {
    aspect-ratio: 5/7;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-info {
    padding: 12px;
}

.showcase-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.showcase-genre {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.showcase-metric {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.showcase-publisher {
    font-size: 13px;
    color: var(--text-muted);
    display: none;
}

/* Developer Section */
.developer-section {
    background: var(--bg);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .dev-grid {
        grid-template-columns: 1fr;
    }
}

.code-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.code-card:hover {
    border-color: rgba(151, 71, 255, 0.25);
    box-shadow: 0 4px 24px rgba(113, 50, 245, 0.06);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.code-dot.red {
    background: #ff5f57;
}
.code-dot.yellow {
    background: #febc2e;
}
.code-dot.green {
    background: #28c840;
}

.code-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 4px;
    font-family: "DM Sans", sans-serif;
}

.code-block {
    flex: 1;
    padding: 20px;
    background: #0d0d0f;
    overflow-x: auto;
    font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #e6e6e6;
}

.code-block .c {
    color: #6a9955;
} /* comment */
.code-block .k {
    color: #c586c0;
} /* keyword */
.code-block .f {
    color: #dcdcaa;
} /* function */
.code-block .s {
    color: #ce9178;
} /* string */
.code-block .m {
    color: #b5cea8;
} /* method/property */
.code-block .i {
    color: #9cdcfe;
} /* identifier */
.code-block .p {
    color: #d4d4d4;
} /* punctuation */

.engine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.engine-tag {
    font-size: 12px;
    padding: 5px 10px;
    background: var(--accent-subtle);
    color: var(--accent);
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid transparent;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.engine-tag:hover {
    background: rgba(151, 71, 255, 0.16);
}

.engine-tag.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.engine-tag:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.qa-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qa-card:hover {
    border-color: rgba(151, 71, 255, 0.25);
    box-shadow: 0 4px 24px rgba(113, 50, 245, 0.06);
}

.qa-mockup {
    background: #0d0d0f;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qa-progress-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.qa-progress-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--success);
    letter-spacing: -1px;
}

.qa-progress-label {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

.qa-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.qa-progress-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--success) 0%, var(--success-dark) 100%);
    border-radius: 4px;
}

.qa-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qa-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.qa-check-icon {
    width: 18px;
    height: 18px;
    background: rgba(192, 255, 71, 0.15);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.qa-check-item.pending .qa-check-icon {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.qa-check-item.pending {
    color: var(--text-muted);
}

.zip-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(151, 71, 255, 0.06);
    border: 1px solid rgba(151, 71, 255, 0.15);
    border-radius: 16px;
}

.zip-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.zip-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.zip-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.dev-cta {
    margin-top: 8px;
}

.dev-cta a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(151, 71, 255, 0.4);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.dev-cta a::after {
    content: "→";
    font-size: 13px;
    transition: transform 0.2s ease;
}

.dev-cta a:hover {
    color: #c0ff47;
    border-bottom-color: #c0ff47;
}

.dev-cta a:hover::after {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .code-block {
        font-size: 12px;
        padding: 16px;
    }
    .qa-card {
        padding: 24px;
    }
    .zip-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-list > * {
    opacity: 0;
    transform: translateY(16px);
}

.stagger-list.visible > *:nth-child(1) {
    transition-delay: 0ms;
}
.stagger-list.visible > *:nth-child(2) {
    transition-delay: 80ms;
}
.stagger-list.visible > *:nth-child(3) {
    transition-delay: 160ms;
}
.stagger-list.visible > *:nth-child(4) {
    transition-delay: 240ms;
}
.stagger-list.visible > *:nth-child(5) {
    transition-delay: 320ms;
}
.stagger-list.visible > *:nth-child(6) {
    transition-delay: 400ms;
}
.stagger-list.visible > *:nth-child(7) {
    transition-delay: 480ms;
}
.stagger-list.visible > *:nth-child(8) {
    transition-delay: 560ms;
}

.stagger-list.visible > * {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero content immediate reveal */
.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.badge-icon {
    width: 18px;
    height: 18px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
