/* Root Variables */
:root {
    --primary-color: #7c3aed;
    --secondary-color: #a855f7;
    --tertiary-color: #d946ef;
    --dark-bg: #0f172a;
    --darker-bg: #0a0e27;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --accent: #06b6d4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    animation: slideDown 0.5s ease-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 44px;
    height: 44px;
    padding: 4px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.35);
}

.logo-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(217, 70, 239, 0.05) 50%, rgba(15, 23, 42, 0) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 520px;
    height: 520px;
    background-image: url('media/branding/ic_launcher-playstore.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.play-icon {
    font-size: 1.3em;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.4);
    color: var(--text-secondary);
}

.badge-early {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.35);
    color: #67e8f9;
}

.badge-available {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.badge-soon {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.35);
    color: #e9d5ff;
}

/* Store Cards */
.store-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.store-card {
    text-align: left;
    border: 1px solid var(--border-color);
    background: rgba(30, 41, 59, 0.35);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.store-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.store-card-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.store-card-title h3 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}

.store-card-status {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: nowrap;
}

.store-card-action {
    display: flex;
    align-items: center;
}

.store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.store-badge-link:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.75);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

.store-badge {
    height: 52px;
    width: auto;
    display: block;
}

.store-card.is-disabled {
    opacity: 0.75;
}

.store-card.is-disabled .store-badge-link {
    filter: grayscale(1);
}

/* Hero Image */
.hero-image {
    animation: fadeInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.loading-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.pulse {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Phone prototype slideshow */
.prototype-connecting {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    opacity: 1;
    transition: opacity 500ms ease;
}

.prototype-connecting.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.prototype-status {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.prototype-slideshow {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 650ms ease, transform 650ms ease;
}

.prototype-slideshow.is-visible {
    opacity: 1;
    transform: scale(1);
}

.prototype-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease;
}

.prototype-slide.is-active {
    opacity: 1;
}

.prototype-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.prototype-slides {
    position: absolute;
    inset: 0;
}

/* Tour panel (outside phone mockup) */
.prototype-tour-panel {
    width: 300px;
    margin: 14px auto 0;
    padding: 14px 14px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.22);
    text-align: left;
}

.prototype-tour-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.prototype-tour-heading {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prototype-step {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.prototype-progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    overflow: hidden;
    margin-bottom: 10px;
}

.prototype-progress-bar {
    height: 100%;
    width: 20%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.95));
    transition: width 500ms ease;
}

.prototype-title {
    font-weight: 700;
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 4px;
    text-transform: none;
}

.prototype-desc {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255,255,255,0.78);
    margin-bottom: 10px;
}

.prototype-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prototype-flow-item {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.22);
    color: rgba(255,255,255,0.75);
    border-radius: 999px;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, color 200ms ease;
}

.prototype-flow-item:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.prototype-flow-item:hover {
    transform: translateY(-1px);
    border-color: rgba(124, 58, 237, 0.55);
}

.prototype-flow-item.is-active {
    background: rgba(124, 58, 237, 0.28);
    border-color: rgba(124, 58, 237, 0.6);
    color: rgba(255,255,255,0.95);
}

.prototype-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    max-width: calc(100% - 24px);
    justify-content: center;
}

.prototype-dot {
    appearance: none;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    transition: transform 250ms ease, background 250ms ease;
    cursor: pointer;
}

.prototype-dot.is-active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

.prototype-dot:focus-visible {
    outline: 2px solid rgba(34, 211, 238, 0.95);
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(124, 58, 237, 0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

.feature-card:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(217, 70, 239, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Fun Features Highlight Section */
.fun-features {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.fun-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.fun-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fun-features-text {
    animation: slideUp 0.8s ease-out;
}

.fun-features-text .section-title {
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.fun-features-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.fun-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fun-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fun-highlight:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--tertiary-color);
    transform: translateX(10px);
}

.fun-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

.fun-content h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.fun-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.fun-features-visual {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.fun-mockup {
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.fun-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--dark-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-animation {
    text-align: center;
    position: relative;
}

.roulette-wheel {
    font-size: 4rem;
    animation: spin 3s linear infinite;
    margin-bottom: 20px;
}

.reward-badge {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
    position: absolute;
    top: -20px;
    right: -20px;
}

.heart-burst {
    font-size: 2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    position: absolute;
    bottom: -10px;
    left: -10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(1.1);
    }
}

/* Why Us Section */
.why-us {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-us-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.why-us-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-us-card p {
    color: var(--text-secondary);
}

/* Download Section */
.download {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.download-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 20px 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-note {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Feedback Section */
.feedback-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin: -40px 0 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-embed-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

.form-embed-wrapper iframe {
    display: block;
    border: none;
    border-radius: 15px;
}

.feedback-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    animation: slideUp 0.8s ease-out;
}

.feedback-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feedback-info ul {
    list-style: none;
}

.feedback-info li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.feedback-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* User Feedbacks Section */
.user-feedbacks-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feedback-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feedback-card:nth-child(1) { animation-delay: 0.1s; }
.feedback-card:nth-child(2) { animation-delay: 0.2s; }
.feedback-card:nth-child(3) { animation-delay: 0.3s; }
.feedback-card:nth-child(4) { animation-delay: 0.4s; }

.feedback-card:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(217, 70, 239, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.feedback-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease;
}

.feedback-card:hover .feedback-avatar {
    transform: scale(1.1);
}

.feedback-rating {
    font-size: 1rem;
    margin-bottom: 15px;
}

.feedback-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.feedback-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.feedback-notice {
    text-align: center;
    padding: 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--card-bg);
    color: var(--text-primary);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(124, 58, 237, 0.05);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Media Styles */
.faq-media-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.faq-media-item {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-media-item:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
}

.faq-media-type {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 10px;
    text-transform: uppercase;
}

.media-preview-btn {
    width: 100%;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.media-caption {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.media-preview {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    background: var(--darker-bg);
}

.video-thumbnail {
    position: relative;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.video-thumbnail::before {
    content: '▶';
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 10;
}

.media-link {
    display: block;
    padding: 10px;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.media-link:hover {
    background: rgba(124, 58, 237, 0.2);
    text-decoration: underline;
}

.faq-answer .faq-media-container ~ p {
    margin-top: 20px;
}

/* Lightbox */
body.no-scroll {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lightbox.open {
    display: block;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.lightbox-content {
    position: relative;
    width: min(1000px, 92vw);
    max-height: 92vh;
    margin: 4vh auto;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: calc(92vh - 120px);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(30, 41, 59, 0.7);
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
}

.lightbox-close:hover {
    border-color: rgba(124, 58, 237, 0.75);
}

.lightbox-caption {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .nav-links {
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-cards {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .store-card-status {
        white-space: normal;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .fun-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fun-mockup {
        width: 250px;
        height: 500px;
    }

    .fun-highlights {
        gap: 20px;
    }

    .fun-highlight {
        padding: 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .feedback-container {
        grid-template-columns: 1fr;
    }

    .feedbacks-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }

    .logo-text {
        display: none;
    }

    .fun-features {
        padding: 60px 20px;
    }

    .fun-features-subtitle {
        font-size: 1rem;
    }

    .fun-mockup {
        width: 200px;
        height: 400px;
    }

    .fun-icon {
        font-size: 2rem;
    }

    .roulette-wheel {
        font-size: 3rem;
    }

    .reward-badge {
        font-size: 2.5rem;
    }

    .heart-burst {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer p {
        padding: 15px;
        font-size: 0.95rem;
    }

    .form-embed-wrapper iframe {
        height: 400px !important;
    }
}
