/* ============================================
   OMG Browser - Professional Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Disable touch highlight on mobile */
    -webkit-tap-highlight-color: transparent;
}

/* Allow text selection for readable content */
p, h1, h2, h3, h4, h5, h6, span, div {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Disable selection for interactive elements */
button, a, img, .btn, .emoji-clickable, .main-logo, .floating-emoji {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --amber: #fbbf24;
    --black: #000000;
    --gray: #111111;
    --text: #ffffff;
    --text-dim: #666666;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   DIVIDER / SPACER SECTIONS
   ============================================ */

.divspace {
    width: 100%;
    background: transparent;
}

/* Default spacing options */
.divspace-xs { height: 20px; }
.divspace-sm { height: 40px; }
.divspace-md { height: 60px; }
.divspace-lg { height: 80px; }
.divspace-xl { height: 120px; }
.divspace-2xl { height: 160px; }

/* Responsive spacing - reduce on mobile */
@media (max-width: 768px) {
    .divspace-xs { height: 10px; }
    .divspace-sm { height: 20px; }
    .divspace-md { height: 30px; }
    .divspace-lg { height: 40px; }
    .divspace-xl { height: 60px; }
    .divspace-2xl { height: 80px; }
}

/* ============================================
   HEADER - Glassmorphism
   ============================================ */

.main-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1400px;
}

.header-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 36px;
    height: 36px;
}

.header-title-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.header-version {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    opacity: 0.5;
    letter-spacing: 0.3px;
}

.header-download-btn {
    background: var(--amber);
    color: var(--black);
    padding: 10px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.header-download-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   HERO SLIDER - HUGE SCREENSHOTS
   ============================================ */

.hero-slider-section {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    background: var(--black);
}

.hero-container {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    gap: 80px;
    margin: 0 auto;
}

/* Left: Text (Fixed) */
.hero-text {
    flex: 1.2;
    max-width: 700px;
    min-width: 550px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Right: Visual Slider Wrapper */
.hero-visual-wrapper {
    flex: 0.9;
    position: relative;
    height: calc(100vh - 180px);
    min-height: 500px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}

.swiper-wrapper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.btn {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.22s ease-out;
    display: inline-block;
    will-change: transform, filter;
}

.btn-primary {
    background: var(--amber);
    color: var(--black);
}

.btn-primary:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.5));
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}

/* Visual Content */
.slide-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-screenshot {
    max-height: calc(100vh - 180px);
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
    display: block;
    opacity: 1;
    transform: scale(0);
    animation: popInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popInScale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* Emojis - Strategically Positioned with Proper Layering */
.floating-emoji {
    position: absolute;
    pointer-events: none;
    z-index: 1; /* Behind text/buttons by default */
    opacity: 1;
    transform: scale(0);
    animation: popInEmoji 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Make specifically clickable emojis receive pointer events and sit above visuals */
.floating-emoji.emoji-clickable {
    pointer-events: auto;
    z-index: 5;
}

/* Only allow interaction on emojis within the active slide */
.swiper-slide:not(.swiper-slide-active) .emoji-clickable {
    pointer-events: none !important;
}

@keyframes popInEmoji {
    0% {
        transform: scale(0) rotate(var(--emoji-rotation, 0deg));
    }
    100% {
        transform: scale(1) rotate(var(--emoji-rotation, 0deg));
    }
}

/* Stagger emoji animations */
.floating-emoji.emoji-1 {
    animation-delay: 0.2s;
}

.floating-emoji.emoji-2 {
    animation-delay: 0.3s;
}

.floating-emoji.emoji-3 {
    animation-delay: 0.4s;
}

.floating-emoji.emoji-4 {
    animation-delay: 0.5s;
}

.floating-emoji.emoji-5 {
    animation-delay: 0.6s;
}

/* Background emojis - large and blurred for depth */
.bg-emoji {
    filter: blur(8px);
    z-index: 0;
    opacity: 0.4;
    transform: scale(0);
    animation: popInBg 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popInBg {
    0% {
        transform: scale(0) rotate(var(--emoji-rotation, 0deg));
    }
    100% {
        transform: scale(1) rotate(var(--emoji-rotation, 0deg));
    }
}

.bg-emoji-1 {
    animation-delay: 0.1s;
}

.bg-emoji-2 {
    animation-delay: 0.15s;
}

/* Background emoji positions (same for all slides for consistency) */
.bg-emoji-1 {
    top: 10%;
    left: -30%;
    width: 220px;
    height: 220px;
}

.bg-emoji-2 {
    bottom: 5%;
    right: -15%;
    width: 200px;
    height: 200px;
}

/* ========== SLIDE 1 - Play Videos ========== */
/* Large emoji overlapping top-left */
[data-swiper-slide-index="0"] .emoji-1 {
    top: -10%;
    left: -5%;
    width: 160px;
    height: 160px;
    z-index: 3;
}

/* Medium emoji on right side */
[data-swiper-slide-index="0"] .emoji-2 {
    top: 15%;
    right: -10%;
    width: 140px;
    height: 140px;
    z-index: 1;
}

/* Large emoji half-overlapping bottom */
[data-swiper-slide-index="0"] .emoji-3 {
    bottom: 20%;
    left: 0%;
    width: 170px;
    height: 170px;
    z-index: 3;
}

/* Extra large OMG icon bottom-right */
[data-swiper-slide-index="0"] .emoji-4 {
    bottom: -5%;
    right: -8%;
    width: 200px;
    height: 200px;
    z-index: 2;
}

/* Medium emoji middle-right */
[data-swiper-slide-index="0"] .emoji-5 {
    top: 50%;
    right: -6%;
    width: 120px;
    height: 120px;
    z-index: 1;
}

/* ========== SLIDE 2 - Extension Support ========== */
/* Large emoji top-right */
[data-swiper-slide-index="1"] .emoji-1 {
    top: -8%;
    right: -7%;
    width: 150px;
    height: 150px;
    z-index: 3;
}

/* Extra large emoji overlapping top-left */
[data-swiper-slide-index="1"] .emoji-2 {
    top: 5%;
    left: -8%;
    width: 180px;
    height: 180px;
    z-index: 3;
}

/* Large emoji bottom far-left */
[data-swiper-slide-index="1"] .emoji-3 {
    bottom: 30%;
    left: 3%;
    width: 165px;
    height: 165px;
    z-index: 1;
}

/* Huge OMG icon bottom-left */
[data-swiper-slide-index="1"] .emoji-4 {
    bottom: -8%;
    left: -12%;
    width: 220px;
    height: 220px;
    z-index: 2;
}

/* Medium emoji right-middle */
[data-swiper-slide-index="1"] .emoji-5 {
    top: 55%;
    right: -5%;
    width: 130px;
    height: 130px;
    z-index: 1;
}

/* ========== SLIDE 3 - Video Player ========== */
/* Large emoji top-left corner */
[data-swiper-slide-index="2"] .emoji-1 {
    top: -5%;
    left: -10%;
    width: 175px;
    height: 175px;
    z-index: 3;
}

/* Medium emoji right-top */
[data-swiper-slide-index="2"] .emoji-2 {
    top: 20%;
    right: -4%;
    width: 135px;
    height: 135px;
    z-index: 1;
}

/* Huge emoji bottom-right */
[data-swiper-slide-index="2"] .emoji-3 {
    bottom: -10%;
    right: -12%;
    width: 210px;
    height: 210px;
    z-index: 2;
}

/* Extra large OMG icon left-middle */
[data-swiper-slide-index="2"] .emoji-4 {
    bottom: 25%;
    left: -6%;
    width: 190px;
    height: 190px;
    z-index: 3;
}

/* Medium emoji top-middle */
[data-swiper-slide-index="2"] .emoji-5 {
    top: 8%;
    left: 20%;
    width: 125px;
    height: 125px;
    z-index: 1;
}

/* ========== SLIDE 4 - Ad Blocker ========== */
/* Huge emoji bottom-left overlapping */
[data-swiper-slide-index="3"] .emoji-1 {
    bottom: 10%;
    left: -8%;
    width: 195px;
    height: 195px;
    z-index: 3;
}

/* Large emoji right-middle */
[data-swiper-slide-index="3"] .emoji-2 {
    top: 40%;
    right: -9%;
    width: 155px;
    height: 155px;
    z-index: 1;
}

/* Medium emoji top-right */
[data-swiper-slide-index="3"] .emoji-3 {
    top: 0%;
    right: 5%;
    width: 140px;
    height: 140px;
    z-index: 1;
}

/* Large OMG icon top-left */
[data-swiper-slide-index="3"] .emoji-4 {
    top: -7%;
    left: -5%;
    width: 170px;
    height: 170px;
    z-index: 3;
}

/* Extra large emoji bottom-right */
[data-swiper-slide-index="3"] .emoji-5 {
    bottom: -6%;
    right: -10%;
    width: 185px;
    height: 185px;
    z-index: 2;
}

/* Navigation - Positioned at screen edges for desktop */
.hero-slider-section .swiper-button-prev,
.hero-slider-section .swiper-button-next {
    color: var(--amber) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.22s ease-out,
                opacity 0.3s ease;
    will-change: transform, filter;
}

.hero-slider-section .swiper-button-prev {
    left: 40px;
}

.hero-slider-section .swiper-button-next {
    right: 40px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.08);
    filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.4));
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
}

/* Pagination - Hidden */
.swiper-pagination {
    display: none !important;
}

/* ============================================
   FEATURES
   ============================================ */

.features-section {
    padding: 0 40px;
    background: var(--black);
}

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

.section-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    background: linear-gradient(135deg, var(--text) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeInUp 0.8s ease-out forwards;
}

.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;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2),
                0 0 40px rgba(251, 191, 36, 0.1);
    background: linear-gradient(135deg, var(--gray) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.feature-icon.animate {
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.feature-card:nth-child(1) .feature-icon.animate {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) .feature-icon.animate {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon.animate {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) .feature-icon.animate {
    animation-delay: 0.4s;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    70% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(251, 191, 36, 0.3));
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */

.download-cta-section {
    padding: 0 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
    text-align: center;
}

.download-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.download-cta-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-cta-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 24px;
    opacity: 0.3;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.download-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Responsive for Download CTA */
@media (max-width: 768px) {
    .download-cta-section {
        padding: 0 30px;
    }

    .download-cta-title {
        font-size: 36px;
    }

    .download-cta-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stats-grid {
        gap: 40px;
        margin-bottom: 40px;
    }

    .stat-card:not(:last-child)::after {
        right: -20px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .download-cta-buttons .btn {
        padding: 16px 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .download-cta-section {
        padding: 0 20px;
    }

    .download-cta-title {
        font-size: 28px;
    }

    .download-cta-subtitle {
        font-size: 15px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-card:not(:last-child)::after {
        right: -15px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
    color: var(--black);
    padding: 20px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 17px;
    z-index: 10000;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    max-width: 90vw;
}

.toast.show {
    bottom: 60px;
}

.toast span {
    font-size: 28px;
    flex-shrink: 0;
    animation: bounce 1s ease-in-out infinite;
}

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

.toast p {
    margin: 0;
    color: var(--black);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .toast {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 40px;
        white-space: normal;
        text-align: center;
        max-width: 280px;
    }

    .toast span {
        font-size: 24px;
    }

    .toast.show {
        bottom: 30px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 60px 30px 40px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

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

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

.footer-copyright {
    color: var(--text-dim);
    font-size: 13px;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP
   ============================================ */

@media (max-width: 1400px) {
    .hero-container {
        padding: 0 80px;
        gap: 60px;
    }

    .hero-text {
        min-width: 450px;
    }

    .hero-title {
        font-size: 56px;
    }
}

/* ============================================
   RESPONSIVE - MEDIUM DESKTOP
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        padding: 0 60px;
        gap: 50px;
    }

    .hero-text {
        min-width: 400px;
    }

    .hero-title {
        font-size: 52px;
    }

    .slide-screenshot {
        max-height: calc(100vh - 220px);
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        padding: 0 40px;
        gap: 40px;
    }

    .hero-text {
        min-width: 350px;
    }

    .hero-title {
        font-size: 48px;
    }

    .slide-screenshot {
        max-height: calc(100vh - 240px);
    }

    .emoji-1, .emoji-2, .emoji-3, .emoji-5 {
        width: 80px;
        height: 80px;
    }

    .emoji-4 {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        padding: 0 30px;
        gap: 30px;
    }

    .hero-text {
        min-width: 300px;
        max-width: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

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

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .hero-slider-section {
        height: auto;
        min-height: auto;
    }

    .main-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .header-container {
        padding: 10px 16px;
    }

    .header-logo {
        width: 30px;
        height: 30px;
    }

    .header-title {
        font-size: 15px;
    }

    .header-version {
        font-size: 10px;
        opacity: 0.4;
    }

    .header-download-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Stack layout on mobile */
    .hero-container {
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 40px;
        justify-content: center;
        height: auto;
    }

    .hero-text {
        max-width: 100%;
        min-width: unset;
        text-align: center;
        order: 2;
        flex: unset;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 16px 36px;
        font-size: 16px;
    }

    /* Visual slider on mobile */
    .hero-visual-wrapper {
        order: 1;
        height: 550px;
        width: 100%;
        max-width: 100%;
        flex: unset;
        padding-top: 60px;
        margin-top: 0;
        min-height: unset;
    }

    .slide-visual {
        height: 100%;
    }

    .slide-screenshot {
        max-height: 636px;
        height: auto;
        width: auto;
        max-width: 360px;
    }

    /* Background emojis - smaller and more subtle on mobile */
    .bg-emoji {
        opacity: 0.25;
        filter: blur(6px);
    }

    .bg-emoji-1 {
        top: 5%;
        left: -35%;
        width: 200px;
        height: 200px;
    }

    .bg-emoji-2 {
        bottom: 0%;
        right: -25%;
        width: 188px;
        height: 188px;
    }

    /* Mobile emoji positioning - much larger sizes (25% increase) */
    /* Slide 1 emojis */
    [data-swiper-slide-index="0"] .emoji-1 {
        top: -5%;
        left: -8%;
        width: 150px;
        height: 150px;
    }

    [data-swiper-slide-index="0"] .emoji-2 {
        top: 10%;
        right: -12%;
        width: 131px;
        height: 131px;
    }

    [data-swiper-slide-index="0"] .emoji-3 {
        bottom: 25%;
        left: -10%;
        width: 140px;
        height: 140px;
    }

    [data-swiper-slide-index="0"] .emoji-4 {
        bottom: -3%;
        right: -8%;
        width: 181px;
        height: 181px;
    }

    [data-swiper-slide-index="0"] .emoji-5 {
        display: none;
    }

    /* Slide 2 emojis */
    [data-swiper-slide-index="1"] .emoji-1 {
        top: -3%;
        right: -10%;
        width: 140px;
        height: 140px;
    }

    [data-swiper-slide-index="1"] .emoji-2 {
        top: 8%;
        left: -12%;
        width: 160px;
        height: 160px;
    }

    [data-swiper-slide-index="1"] .emoji-3 {
        bottom: 30%;
        left: -8%;
        width: 148px;
        height: 148px;
    }

    [data-swiper-slide-index="1"] .emoji-4 {
        bottom: -5%;
        left: -14%;
        width: 194px;
        height: 194px;
    }

    [data-swiper-slide-index="1"] .emoji-5 {
        display: none;
    }

    /* Slide 3 emojis */
    [data-swiper-slide-index="2"] .emoji-1 {
        top: 0%;
        left: -12%;
        width: 154px;
        height: 154px;
    }

    [data-swiper-slide-index="2"] .emoji-2 {
        top: 22%;
        right: -8%;
        width: 125px;
        height: 125px;
    }

    [data-swiper-slide-index="2"] .emoji-3 {
        bottom: -6%;
        right: -15%;
        width: 188px;
        height: 188px;
    }

    [data-swiper-slide-index="2"] .emoji-4 {
        bottom: 28%;
        left: -5%;
        width: 166px;
        height: 166px;
    }

    [data-swiper-slide-index="2"] .emoji-5 {
        display: none;
    }

    /* Slide 4 emojis */
    [data-swiper-slide-index="3"] .emoji-1 {
        bottom: 12%;
        left: -10%;
        width: 171px;
        height: 171px;
    }

    [data-swiper-slide-index="3"] .emoji-2 {
        top: 35%;
        right: -14%;
        width: 145px;
        height: 145px;
    }

    [data-swiper-slide-index="3"] .emoji-3 {
        top: 3%;
        right: -6%;
        width: 133px;
        height: 133px;
    }

    [data-swiper-slide-index="3"] .emoji-4 {
        top: -4%;
        left: -7%;
        width: 148px;
        height: 148px;
    }

    [data-swiper-slide-index="3"] .emoji-5 {
        display: none;
    }

    .hero-slider-section .swiper-button-prev,
    .hero-slider-section .swiper-button-next {
        width: 50px !important;
        height: 50px !important;
        position: absolute;
    }

    .hero-slider-section .swiper-button-prev {
        left: 15px;
    }

    .hero-slider-section .swiper-button-next {
        right: 15px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px !important;
    }

    .section-heading {
        font-size: 32px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 48px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 80px 20px 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-visual-wrapper {
        height: 576px;
    }

    .slide-screenshot {
        max-height: 552px;
        max-width: 312px;
    }

    /* Larger emojis on very small screens (25% increase) */
    [data-swiper-slide-index="0"] .emoji-1,
    [data-swiper-slide-index="1"] .emoji-1,
    [data-swiper-slide-index="2"] .emoji-1,
    [data-swiper-slide-index="3"] .emoji-1 {
        width: 88px;
        height: 88px;
    }

    [data-swiper-slide-index="0"] .emoji-2,
    [data-swiper-slide-index="1"] .emoji-2,
    [data-swiper-slide-index="2"] .emoji-2,
    [data-swiper-slide-index="3"] .emoji-2 {
        width: 78px;
        height: 78px;
    }

    [data-swiper-slide-index="0"] .emoji-3,
    [data-swiper-slide-index="1"] .emoji-3,
    [data-swiper-slide-index="2"] .emoji-3,
    [data-swiper-slide-index="3"] .emoji-3 {
        width: 83px;
        height: 83px;
    }

    [data-swiper-slide-index="0"] .emoji-4,
    [data-swiper-slide-index="1"] .emoji-4,
    [data-swiper-slide-index="2"] .emoji-4,
    [data-swiper-slide-index="3"] .emoji-4 {
        width: 106px;
        height: 106px;
    }

    .bg-emoji-1 {
        width: 175px;
        height: 175px;
    }

    .bg-emoji-2 {
        width: 163px;
        height: 163px;
    }
}

/* ============================================
   LOGO SHOWCASE SECTION - PRIDE & JOY
   ============================================ */

.logo-showcase-section {
    padding: 0 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 50%, var(--black) 100%);
    position: relative;
    overflow: visible;
}

.logo-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    gap: 60px;
}

/* Floating Particles Background */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 60%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 90%; animation-delay: 3.5s; }

@keyframes floatParticle {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

/* Orbiting Rings - Centered on Logo Position */
.orbit-rings {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--amber);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotateRing 20s linear infinite;
    transform-origin: center center;
}

.ring-1 {
    width: 350px;
    height: 350px;
    margin-left: -175px;
    margin-top: -175px;
    animation-duration: 15s;
}

.ring-2 {
    width: 450px;
    height: 450px;
    margin-left: -225px;
    margin-top: -225px;
    animation-duration: 20s;
    animation-direction: reverse;
    border-style: dashed;
}

.ring-3 {
    width: 550px;
    height: 550px;
    margin-left: -275px;
    margin-top: -275px;
    animation-duration: 25s;
    opacity: 0.1;
}

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

/* Logo Wrapper with Effects */
.logo-wrapper {
    position: relative;
    z-index: 10;
    animation: logoFloat 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Glowing Background Behind Logo */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(251, 191, 36, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    filter: blur(50px);
    z-index: 1;
}

.logo-glow-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlowOuter 3s ease-in-out infinite;
    filter: blur(60px);
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes pulseGlowOuter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Logo Rays Behind Logo */
.logo-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 0;
    opacity: 0;
    mix-blend-mode: soft-light;
    animation: rotateAndFadeRays 40s ease-in-out infinite;
}

@keyframes rotateAndFadeRays {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.08;
    }
    75% {
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0;
    }
}

/* Main Logo with Multiple Effects */
.main-logo {
    width: 250px;
    height: 250px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(251, 191, 36, 0.5));
    animation: logoRotateScale 6s ease-in-out infinite;
}

@keyframes logoRotateScale {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 20px 60px rgba(251, 191, 36, 0.5)) brightness(1);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 25px 80px rgba(251, 191, 36, 0.8)) brightness(1.2);
    }
    50% {
        transform: scale(1.05) rotate(0deg);
        filter: drop-shadow(0 20px 60px rgba(251, 191, 36, 0.5)) brightness(1);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
        filter: drop-shadow(0 25px 80px rgba(251, 191, 36, 0.8)) brightness(1.2);
    }
}

/* Animated Tagline - Matches Section Headings */
.tagline-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
}

.animated-tagline {
    font-size: 56px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.word {
    display: inline;
}

.word-2 {
    color: var(--amber);
}

/* Decorative Emojis Orbiting */
.decorative-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.deco-emoji {
    position: absolute;
    font-size: 48px;
    animation: orbitEmoji 12s ease-in-out infinite;
    opacity: 0.8;
}

.emoji-pos-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.emoji-pos-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.emoji-pos-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.emoji-pos-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
}

.emoji-pos-5 {
    top: 50%;
    left: 5%;
    animation-delay: 1.5s;
}

.emoji-pos-6 {
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes orbitEmoji {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(10deg) scale(1.2);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-20px) rotate(-10deg) scale(1.15);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-showcase-section {
        padding: 0 30px;
    }

    .logo-showcase-container {
        min-height: 550px;
    }

    .ring-1 { width: 300px; height: 300px; margin-left: -150px; margin-top: -150px; }
    .ring-2 { width: 380px; height: 380px; margin-left: -190px; margin-top: -190px; }
    .ring-3 { width: 460px; height: 460px; margin-left: -230px; margin-top: -230px; }

    .main-logo {
        width: 180px;
        height: 180px;
    }

    .logo-glow {
        width: 220px;
        height: 220px;
    }

    .logo-glow-outer {
        width: 320px;
        height: 320px;
    }

    .logo-rays {
        width: 380px;
        height: 380px;
        opacity: 0.25;
    }

    .animated-tagline {
        font-size: 38px;
    }

    .deco-emoji {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .logo-showcase-section {
        padding: 0 20px;
    }

    .logo-showcase-container {
        min-height: 450px;
    }

    .main-logo {
        width: 150px;
        height: 150px;
    }

    .logo-glow {
        width: 180px;
        height: 180px;
    }

    .logo-glow-outer {
        width: 260px;
        height: 260px;
    }

    .logo-rays {
        width: 300px;
        height: 300px;
        opacity: 0.2;
    }

    .animated-tagline {
        font-size: 32px;
    }

    .deco-emoji {
        font-size: 28px;
    }

    .ring-1 { width: 250px; height: 250px; margin-left: -125px; margin-top: -125px; }
    .ring-2 { width: 320px; height: 320px; margin-left: -160px; margin-top: -160px; }
    .ring-3 { width: 390px; height: 390px; margin-left: -195px; margin-top: -195px; }
}

/* ============================================
   INSTALLATION GUIDE SECTION
   ============================================ */

.install-section {
    padding: 0 40px;
    background: var(--black);
}

.install-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 60px;
    margin-top: -40px;
}

.install-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.install-step {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.install-step:hover {
    transform: translateX(10px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

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

.install-tip {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.05);
    border-left: 4px solid var(--amber);
    border-radius: 12px;
    margin-top: 8px;
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.install-tip p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.install-tip strong {
    color: var(--amber);
}

.install-video {
    position: sticky;
    top: 100px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    color: var(--text-dim);
    font-size: 14px;
    font-style: italic;
}

/* Installation Section Responsive */
@media (max-width: 1024px) {
    .install-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .install-section {
        padding: 0 30px;
    }

    .install-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .install-video {
        position: relative;
        top: 0;
    }

    .install-step {
        padding: 24px;
    }

    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .install-section {
        padding: 0 20px;
    }

    .install-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .install-tip {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}

/* ============================================
   EMOJI RAIN / CONFETTI EFFECT
   ============================================ */

.rain-emoji-container {
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-rain-emoji {
    width: 240px;
    height: 240px;
    position: absolute;
    top: -100px;
    left: 50%;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
}

.single-rain-emoji-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Wave wrapper to hold lateral motion separately from parent rise */
.emoji-wave-wrapper {
    width: 100%;
    height: 100%;
    will-change: transform;
}

/* Lateral wave for natural path without JS transform conflicts */
@keyframes emojiWave {
    0% { transform: translateX(calc(var(--wave-amp, 20px) * -1)); }
    100% { transform: translateX(var(--wave-amp, 20px)); }
}

.emoji-wave {
    animation: emojiWave var(--wave-duration, 1.8s) ease-in-out infinite alternate;
    will-change: transform;
}

/* Swaying animation for the child image */
@keyframes emojiSway {
    0% {
        transform: translateX(-15px) rotate(-10deg);
    }
    100% {
        transform: translateX(15px) rotate(10deg);
    }
}

/* Clickable emoji style */
.emoji-clickable {
    cursor: pointer;
    outline: none;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.22s ease-out;
    will-change: transform, filter;
}

.emoji-clickable:hover,
.emoji-clickable:focus-visible {
    filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.6));
}

.emoji-clickable:active {
    transform: translateY(0) scale(0.96);
}

/* Apply hover scale on inner image to avoid parent transform conflicts */
.emoji-clickable:hover .single-rain-emoji-image,
.emoji-clickable:focus-visible .single-rain-emoji-image {
    transform: rotate(var(--emoji-rotation, 0deg)) scale(1.08);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .single-rain-emoji {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .single-rain-emoji {
        width: 150px;
        height: 150px;
    }
}

/* Performance: stabilize transforms and use CSS sway */
.single-rain-emoji,
.single-rain-emoji-image {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.emoji-sway {
    animation: emojiSway 1.2s ease-in-out infinite alternate;
    will-change: transform;
}

/* ============================================
   DOWNLOAD POPUP MODAL
   ============================================ */

.download-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-popup {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px 40px;
    max-width: 550px;
    width: calc(100% - 40px);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.download-popup-overlay.active .download-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transform: rotate(90deg);
}

.popup-version {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.popup-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--text) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInOption 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.download-popup-overlay.active .download-option:nth-child(1) {
    animation-delay: 0.1s;
}

.download-popup-overlay.active .download-option:nth-child(2) {
    animation-delay: 0.2s;
}

.download-popup-overlay.active .download-option:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInOption {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.option-number {
    min-width: 36px;
    height: 36px;
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
}

.option-download-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
    border: none;
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.option-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.option-download-btn:hover::before {
    left: 100%;
}

.option-download-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
    filter: brightness(1.1);
}

.option-download-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.3px;
}

.speed-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.speed-normal {
    display: none;
}

.speed-faster {
    background: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.6);
}

.speed-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.option-icon {
    width: 22px;
    height: 22px;
    color: var(--black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.option-download-btn:hover .option-icon {
    transform: translateY(3px);
    animation: bounceDown 0.6s ease infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(3px);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Responsive for Download Popup */
@media (max-width: 768px) {
    .download-popup {
        padding: 45px 30px 35px;
        max-width: 500px;
    }

    .popup-version {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .popup-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .option-number {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .option-download-btn {
        padding: 18px 28px;
    }

    .option-label {
        font-size: 17px;
    }

    .speed-tag {
        font-size: 9px;
        padding: 2px 6px;
        gap: 2px;
    }

    .speed-icon {
        width: 9px;
        height: 9px;
    }

    .option-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .download-popup {
        padding: 40px 25px 30px;
        border-radius: 25px;
    }

    .popup-version {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .popup-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .download-options {
        gap: 14px;
    }

    .download-option {
        gap: 12px;
    }

    .option-number {
        min-width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .option-download-btn {
        padding: 16px 24px;
    }

    .option-label {
        font-size: 16px;
    }

    .speed-tag {
        font-size: 8px;
        padding: 2px 5px;
        gap: 2px;
    }

    .speed-icon {
        width: 8px;
        height: 8px;
    }

    .option-icon {
        width: 18px;
        height: 18px;
    }
}
