/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced visual effects */
.container {
    position: relative;
    z-index: 10;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it - but keep button pulse */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Keep button pulse animation even with reduced motion */
    .btn-robux {
        animation: buttonPulse 2.5s infinite !important;
    }
}

/* Glow effects for special elements */
.robux-highlight {
    position: relative;
}

.robux-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5bf44, #ffd700);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 10px;
}

/* Enhanced pulse animation for buttons */
@keyframes buttonPulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(240, 147, 251, 0.3),
            0 0 0 0 rgba(255, 107, 53, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(240, 147, 251, 0.5),
            0 0 0 8px rgba(255, 107, 53, 0.1);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(240, 147, 251, 0.3),
            0 0 0 0 rgba(255, 107, 53, 0);
        transform: scale(1);
    }
}



/* Floating elements for hero section */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 50%;
    animation: floatingAnimation 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 15s;
    animation-duration: 28s;
    width: 40px;
    height: 40px;
}

@keyframes floatingAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Alternative button pulse animation */
@keyframes robuxButtonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(240, 147, 251, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    }
}

.btn-primary:focus {
    animation: buttonPulse 1.5s infinite;
    outline: none;
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced shadows and depth */
.depth-shadow {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e8eaed;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Image loading and performance */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
    transform: translateY(20px);
}

img[loading="lazy"].loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for better UX - only for non-critical elements */
.features-character,
.features-steps {
    animation: fadeInUp 1s ease-out forwards;
}

.features-character {
    animation-delay: 0.2s;
}

.features-steps {
    animation-delay: 0.4s;
}

/* Hero content should be immediately visible */
.hero-content,
.hero-image {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
}

/* Ensure all hero text is visible */
.hero-content * {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit;
}

/* Fix for hero section text */
.hero-content h1,
.hero-content p,
.hero-content button,
.hero-content .btn {
    opacity: 1 !important;
    visibility: visible !important;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-download {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download::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.6s;
}

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

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
}

.btn-download .robux-icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-download:hover .robux-icon {
    transform: scale(1.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    min-height: 56px;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #4a5568;
    color: white;
}

.btn-secondary:hover {
    background: #2d3748;
}

.btn-robux {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    color: white !important;
    margin: 10px 0;
    min-width: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 16px;
    animation: buttonPulse 2.5s infinite !important;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-robux:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.5);
    background: linear-gradient(135deg, #ff8a65 0%, #f48fb1 100%);
}

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

.btn-robux::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.btn-robux:active::after {
    width: 300px;
    height: 300px;
}

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



/* Ensure button text is always visible */
.btn-robux,
.btn-robux * {
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 700;
    min-width: 250px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}

.robux-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.btn-robux:hover .robux-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(33, 38, 45, 0.95) 100%);
    color: white;
    padding: 15px 20px;
    z-index: 1001;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    animation: bounce 2s infinite;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 1rem;
    color: #e8eaed;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.cookie-notice.hidden {
    display: none !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cookie-buttons .btn {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .btn-decline {
        order: 3;
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.logo-link:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.logo {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #ff6b35;
    line-height: 1;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #e8eaed;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 18px;
    display: inline-block;
    line-height: 1;
    border-radius: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f093fb);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    }
}

/* Navbar sticky effect */
.navbar.scrolled {
    background: rgba(26, 26, 46, 0.99);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(229, 191, 68, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 70vh;
}

.hero-title {
    font-size: 3.8em;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    position: relative;
    color: #e8eaed;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 4px;
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #e5bf44, #f093fb);
    border-radius: 10px;
    opacity: 1;
}

.robux-highlight {
    color: #e5bf44;
    text-shadow: 0 0 10px rgba(229, 191, 68, 0.3);
}

.hero-title .robux-highlight {
    font-size: inherit;
    font-weight: inherit;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 45px;
    opacity: 0.9 !important;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #e8eaed;
    visibility: visible !important;
}

.hero-cta {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
}

.btn-medium {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: 0;
}

.hero-stat-item {
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 25, 0.4) 100%);
    padding: 40px 50px 45px 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid;
    border-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)) 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
    min-height: 160px;
    overflow: visible;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

/* Removed bottom line effect */

.hero-stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(240, 147, 251, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(20, 20, 35, 0.5) 100%);
}

.hero-stat-item:nth-child(1):hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stat-item:nth-child(2):hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(229, 191, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stat-item:nth-child(3):hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    display: block;
    font-size: 2.0em;
    font-weight: 800;
    background: linear-gradient(145deg, #ff6b35 0%, #e5bf44 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    padding: 8px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    position: relative;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    font-family: 'SF Pro Display', 'Helvetica Neue', 'Arial', sans-serif;
    letter-spacing: 0;
    line-height: 1.2;
    min-height: 1.3em;
    overflow: visible;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Removed shimmer animation - replaced with gradientShift */

/* Enhanced hero content layout */
.hero-content {
    padding-right: 20px;
    text-align: left;
}

.hero-content h1 {
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.hero-content p {
    margin-bottom: 50px;
    font-size: 1.4em;
    line-height: 1.7;
    text-align: left;
}

.hero-image {
    position: relative;
    text-align: center;
    padding-left: 20px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Improved stat number individual colors with better gradients */
.hero-stat-item:nth-child(1) .hero-stat-number {
    background: linear-gradient(145deg, #ff6b35 0%, #ff8a65 30%, #ffa726 60%, #ffcc80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-stat-item:nth-child(2) .hero-stat-number {
    background: linear-gradient(145deg, #e5bf44 0%, #ffd54f 30%, #ffeb3b 60%, #fff176 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite 1.3s;
}

.hero-stat-item:nth-child(3) .hero-stat-number {
    background: linear-gradient(145deg, #f093fb 0%, #f48fb1 30%, #e1bee7 60%, #f8bbd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite 2.6s;
}

.hero-stat-item:hover .hero-stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.hero-stat-label {
    font-size: 0.95em;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding-top: 15px;
}

.hero-stat-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 1px;
}

.hero-stat-item:hover .hero-stat-label {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.hero-stat-item:hover .hero-stat-label::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    width: 60px;
}

.hero-image {
    text-align: center;
}

.character-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    min-width: 400px;
}

.character-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(240, 147, 251, 0.3));
}

.floating-robux {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: float-around 8s infinite linear;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-around {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(0px) rotate(180deg); opacity: 0.7; }
    75% { transform: translateY(-15px) rotate(270deg); opacity: 1; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.7; }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #0f1419 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(229, 191, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 70px;
    color: #e8eaed;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e5bf44, #f093fb);
    border-radius: 8px;
}

.features-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.features-character {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.features-character-img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    animation: float 3s ease-in-out infinite;
}

.character-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(229, 191, 68, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite alternate;
}

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

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

.features-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.features-steps .step-compact:nth-child(1) {
    align-self: flex-start;
    margin-left: 0;
    max-width: 400px;
}

.features-steps .step-compact:nth-child(2) {
    align-self: center;
    margin-top: 1rem;
    max-width: 400px;
}

.features-steps .step-compact:nth-child(3) {
    align-self: flex-end;
    margin-top: 2rem;
    max-width: 400px;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Enhanced Navigation */
.scroll-link {
    transition: color 0.2s ease;
}

.scroll-link:hover {
    color: #ff6b35 !important;
}

/* Loading states for buttons */
.loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}

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



.step-compact {
    position: relative;
    z-index: 1;
}

.step-compact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 15, 25, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #e5bf44;
    border-radius: 18px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

.step-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 15px;
    pointer-events: none;
}

.step-compact:nth-child(1) {
    border-left-color: #ff6b35;
    position: relative;
}

.step-compact:nth-child(2) {
    border-left-color: #e5bf44;
}

.step-compact:nth-child(3) {
    border-left-color: #f093fb;
}

.step-compact:hover {
    transform: translateY(-10px) translateX(15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-compact:nth-child(1):hover {
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
    border-left-color: #ff8a65;
    transform: translateY(-10px) translateX(-15px) scale(1.03);
}

.step-compact:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(229, 191, 68, 0.4);
    border-left-color: #ffd54f;
    transform: translateY(-10px) translateX(0px) scale(1.03);
}

.step-compact:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(240, 147, 251, 0.4);
    border-left-color: #f48fb1;
    transform: translateY(-10px) translateX(15px) scale(1.03);
}

.step-compact:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}



.step-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-compact:nth-child(1) .step-icon {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.step-compact:nth-child(2) .step-icon {
    background: rgba(229, 191, 68, 0.15);
    border-color: rgba(229, 191, 68, 0.3);
}

.step-compact:nth-child(3) .step-icon {
    background: rgba(240, 147, 251, 0.15);
    border-color: rgba(240, 147, 251, 0.3);
}

.step-compact h3 {
    color: #e8eaed;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.step-compact p {
    color: #a0aec0;
    margin: 0 0 0.8rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #0f172a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e5bf44, #f093fb);
    border-radius: 8px;
    opacity: 1;
}

.cta p {
    font-size: 1.3em;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    color: white;
    min-height: 100vh;
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-character {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form select option {
    background: #1a1a2e;
    color: white;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 2px;
}

.info-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    line-height: 1.3;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    margin-bottom: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c851, #00ff41);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 200, 81, 0);
    }
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.modal-footer {
    margin-top: 30px;
}

.modal-btn {
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}



/* Footer */
.footer {
    background: #0d1117;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

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

.footer-section a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #495057;
    color: #ced4da;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* General mobile layout fixes */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation fixes */
    .nav-container {
        height: 70px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .nav-logo {
        margin-bottom: 0;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .nav-menu {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-top: 0;
    }
    
    .nav-link {
        font-size: 11px;
        font-weight: 700;
        padding: 6px 8px;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }
    
    .nav-link:hover {
        transform: translateY(-1px);
    }
    
    .nav-link.active::after {
        width: 80%;
        height: 2px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-menu {
        gap: 4px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 5px 6px;
        letter-spacing: 0.1px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo {
        width: 24px;
        height: 24px;
    }
    
    /* Contact page mobile fixes */
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .support-character {
        max-width: 280px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Modal mobile styles */
    .modal-content {
        padding: 30px 25px;
        max-width: 350px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }

    /* Hero section mobile fixes */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        min-height: auto;
    }
    
    .hero-content,
    .hero-content h1,
    .hero-content p {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 6px;
        background: linear-gradient(90deg, #ff6b35, #e5bf44, #f093fb);
    }
    
    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    
    /* Character image mobile fixes */
    .character-img {
        min-width: 280px;
        max-width: 100%;
        width: auto;
        height: auto;
    }
    
    /* Stats mobile layout */
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 30px auto 0;
    }
    
    .hero-stat-item {
        padding: 25px 20px 30px 20px;
        min-height: 120px;
        max-width: 100%;
    }
    
    .hero-stat-number {
        font-size: 2.2em;
        padding: 4px 8px;
        line-height: 1.1;
        min-height: 1.2em;
        white-space: nowrap;
    }
    
    .hero-stat-label {
        font-size: 0.9em;
        letter-spacing: 2px;
        padding-top: 12px;
    }
    
    /* Features section mobile */
    .features {
        padding: 40px 0;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-character {
        order: 1;
        justify-self: center;
    }

    .features-character-img {
        width: 220px;
        max-width: 90%;
        height: auto;
    }

    .character-glow {
        width: 160px;
        height: 160px;
    }

    .features-steps {
        order: 2;
        gap: 1.5rem;
    }

    .features-steps .step-compact {
        align-self: center;
        margin: 0;
        max-width: 100%;
    }

    .step-compact {
        padding: 1.2rem;
        margin: 0 auto;
        max-width: 400px;
    }

    .step-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .step-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .step-compact h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .step-compact p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    /* Cookie notice mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    /* Button improvements for mobile */
    .btn-robux,
    .btn-large {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        font-size: 1rem;
        padding: 14px 20px;
        animation: buttonPulse 2.5s infinite !important;
    }
    
    /* Enhanced mobile button glow */
    .btn-robux:hover {
        box-shadow: 
            0 15px 40px rgba(240, 147, 251, 0.6),
            0 0 30px rgba(255, 107, 53, 0.4);
    }
    
    /* Floating elements mobile fixes */
    .floating-element {
        width: 40px;
        height: 40px;
    }
    
    .floating-element:nth-child(4) {
        width: 30px;
        height: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Browser compatibility fixes */
.btn-primary,
.btn-secondary,
.btn-robux {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Fix for iOS Safari bounce */
html {
    overscroll-behavior: none;
}

/* Improved text rendering */
.hero-title,
.section-title,
.hero-stat-number {
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
}

/* GPU acceleration for animations */
.floating-element,
.hero-stat-item,
.step-compact,
.game-card,
.feature-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}



/* Fix for Firefox gradient rendering */
@-moz-document url-prefix() {
    .btn-primary,
    .btn-robux {
        background-attachment: fixed;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    animation: fadeInUp 1s ease-out;
}

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

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

/* About Page Specific Styles (Legacy - replaced below) */

.about-content {
    background: white;
    padding: 80px 0;
}

.content-section {
    margin-bottom: 80px;
}

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

.content-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #393b3d;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #6c757d;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 1.1em;
    color: #393b3d;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #393b3d;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #6c757d;
}

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

/* Tasks Page Specific Styles */
.tasks-hero {
    text-align: center;
}







/* Policy Pages Specific Styles */
.policy-section {
    background: white;
    padding: 60px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 2.5em;
    color: #393b3d;
    margin-bottom: 10px;
}

.policy-date {
    color: #6c757d;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.policy-intro p {
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0;
    color: #393b3d;
}

.policy-toc {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.policy-toc h3 {
    color: #1976d2;
    margin-bottom: 20px;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
}

.policy-toc li {
    margin: 8px 0;
}

.policy-toc a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.policy-toc a:hover {
    text-decoration: underline;
}

.policy-item {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item h2 {
    color: #393b3d;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.policy-item h3 {
    color: #495057;
    font-size: 1.3em;
    margin: 25px 0 15px;
}

.policy-item p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #6c757d;
}

.policy-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-item li {
    margin: 8px 0;
    line-height: 1.6;
    color: #6c757d;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
    color: #393b3d;
}

.cookie-table {
    margin: 25px 0;
}

.cookie-table h4 {
    margin-bottom: 15px;
    color: #393b3d;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #393b3d;
}

.cookie-table td {
    color: #6c757d;
}

.cookie-table a {
    color: #00b2ff;
    text-decoration: none;
}

.cookie-table a:hover {
    text-decoration: underline;
}

/* Games Showcase */
.games-showcase {
    background: #161b22;
    padding: 80px 0;
}

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

.game-card {
    background: #21262d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e8eaed;
}

.game-info p {
    color: #a0aec0;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.players {
    color: #ff6b35;
    font-weight: 600;
}

.rating {
    color: #ffc107;
    font-weight: 600;
}

/* Simple Info Section */
.simple-info {
    background: linear-gradient(135deg, #0d1117 0%, #0f1419 50%, #0a0c10 100%);
    padding: 80px 0;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-left {
    text-align: center;
}

.info-image {
    margin-bottom: 30px;
}

.info-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    background: transparent;
}

.simple-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.simple-stats .simple-stat-item {
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 25, 0.4) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid;
    border-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)) 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 140px;
    min-height: 120px;
}

.simple-stats .simple-stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(20, 20, 35, 0.5) 100%);
}

.simple-stats .simple-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    line-height: 0.9;
}

.simple-stats .simple-stat-item:hover .simple-stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.simple-stats .simple-stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 8px;
}

.simple-stats .simple-stat-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.3s ease;
}

.simple-stats .simple-stat-item:hover .simple-stat-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.simple-stats .simple-stat-item:hover .simple-stat-text::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    width: 50px;
}

.info-right {
    padding-left: 20px;
}

.info-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-description {
    color: #a0aec0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-action {
    margin-top: 20px;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
        border-radius: 20px;
        background: rgba(255, 107, 53, 0.1);
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 107, 53, 0.2);
        transform: translateY(-2px);
    }
    
    /* Mobile Hero */
    .hero {
        padding: 60px 0 40px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-title .robux-highlight {
        font-size: inherit;
        font-weight: inherit;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    /* Mobile Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    /* Mobile Info Section */
    .info-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .info-left {
        order: 2;
    }
    
    .info-right {
        order: 1;
    }
    
    .simple-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .simple-stats .simple-stat-item {
        min-width: 120px;
        padding: 20px 25px;
        min-height: 100px;
    }
    
    /* Mobile Games */
    .games-grid {
        gap: 15px;
    }
    
    .game-card {
        padding: 15px;
    }
    
    /* Mobile CTA */
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Mobile Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Mobile Container */
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        max-width: 100%;
        font-size: 14px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        margin-top: 20px;
        font-size: 13px;
    }
    
    /* Mobile Buttons */
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-robux {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Back to top mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 60vh;
    justify-items: start;
}

.about-hero .hero-content {
    text-align: left;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-hero .hero-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: inherit;
    word-wrap: break-word;
}

.about-hero .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
    color: #a0aec0;
    text-align: inherit;
    word-wrap: break-word;
}

.about-hero .hero-image {
    position: relative;
    text-align: center;
    padding-left: 20px;
}

.about-hero .character-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.about-hero .character-img:hover {
    transform: scale(1.05);
}

.about-hero .hero-description {
    margin: 25px 0;
}

.about-hero .hero-description p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: inherit;
    word-wrap: break-word;
}

.about-hero .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 16px;
    margin: 30px 0;
    width: 416px;
    justify-content: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    width: 200px;
    height: 50px;
    justify-self: center;
    text-align: left;
    box-sizing: border-box;
}

.about-hero .feature-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.about-hero .feature-icon {
    font-size: 1.1rem;
    min-width: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-weight: bold;
    line-height: 1;
}

.about-hero .feature-text {
    color: #e8eaed;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    text-align: left;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-hero .hero-stats {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero .stat-item-mini {
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 25, 0.4) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid;
    border-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)) 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
    min-height: 100px;
}

.about-hero .stat-item-mini:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(20, 20, 35, 0.5) 100%);
}

.about-hero .stat-number-mini {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    position: relative;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    line-height: 0.9;
}

.about-hero .stat-item-mini:hover .stat-number-mini {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.about-hero .stat-label-mini {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 6px;
}

.about-hero .stat-label-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.3s ease;
}

.about-hero .stat-item-mini:hover .stat-label-mini {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.about-hero .stat-item-mini:hover .stat-label-mini::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    width: 40px;
}

.about-hero .hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero .hero-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.about-hero .hero-actions .btn span {
    font-size: 1rem;
}

.about-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.content-section {
    margin-bottom: 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.content-text h2 {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-text p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #e8eaed;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-image {
    text-align: center;
}

.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: linear-gradient(135deg, #21262d 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #a0aec0;
    line-height: 1.6;
}



.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    border-radius: 30px;
    margin-top: 60px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.cta-buttons .btn {
    min-width: 180px;
}

/* Tasks Page Styles */
.tasks-hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    text-align: center;
    padding: 100px 0 60px;
}



.tasks-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.tasks-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-top: 10px;
}

.task-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.coming-soon {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #21262d 0%, #2d3748 100%);
    border-radius: 30px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.coming-soon h3 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.coming-soon p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.coming-soon-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.coming-soon-list li {
    color: #e8eaed;
    font-size: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
}

.coming-soon-note {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.notification-signup {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 250px;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.task-preview h3 {
    color: #e8eaed;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.task-card {
    background: linear-gradient(135deg, #21262d 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.task-card.preview {
    opacity: 0.7;
}

.task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.task-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.task-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.task-info h4 {
    color: #e8eaed;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.task-info p {
    color: #a0aec0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.task-reward {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 600;
}

.robux-icon-small {
    width: 20px;
    height: 20px;
}

.faq-section {
    padding: 80px 0;
    background: #161616;
}

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

.faq-item {
    background: linear-gradient(135deg, #21262d 0%, #2d3748 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-item h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Policy Pages Styles */
.policy-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 70vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-date {
    color: #a0aec0;
    font-style: italic;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-intro {
    background: linear-gradient(135deg, #21262d 0%, #2d3748 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #ff6b35;
}

.policy-intro p {
    color: #e8eaed;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.policy-toc {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.policy-toc h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 8px;
}

.policy-toc a {
    color: #e8eaed;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-toc a:hover {
    color: #ff6b35;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.policy-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-item h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-item h3 {
    color: #f093fb;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.policy-item h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.policy-item p {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-item ul,
.policy-item ol {
    color: #a0aec0;
    margin: 15px 0;
    padding-left: 25px;
}

.policy-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-item strong {
    color: #e8eaed;
}

.policy-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-item a:hover {
    color: #f093fb;
    text-decoration: underline;
}

.contact-info {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #ff6b35;
}

.contact-info p {
    margin-bottom: 8px;
    color: #e8eaed;
}

.cookie-table {
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(255, 107, 53, 0.2);
    color: #e8eaed;
    font-weight: 600;
}

.cookie-table td {
    color: #a0aec0;
}

.cookie-table a {
    color: #ff6b35;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    

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

@media (max-width: 768px) {
    /* About Page Mobile */
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: 50vh;
        padding: 0 20px;
        justify-items: center;
    }
    
    .about-hero .hero-content {
        order: 1;
        text-align: center;
        padding: 0 10px;
        max-width: 100%;
        align-items: center;
    }
    
    .about-hero .hero-image {
        order: 2;
        padding-left: 0;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero .hero-description p {
        font-size: 1rem;
    }
    
    .about-hero .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
        justify-items: center;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-hero .feature-item {
        padding: 12px 15px;
        width: 100%;
        max-width: 280px;
        height: 48px;
        min-width: auto;
        justify-self: center;
    }
    
    .about-hero .feature-text {
        font-size: 0.85rem;
        text-align: left;
        line-height: 1.3;
    }
    
    .about-hero .hero-stats {
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .about-hero .stat-item-mini {
        min-width: 100px;
        padding: 15px 20px;
        min-height: 80px;
    }
    
    .about-hero .stat-number-mini {
        font-size: 1.5rem;
    }
    
    .about-hero .stat-label-mini {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .about-hero .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    

    
    .cta-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    

    
    /* Policy Pages Mobile */
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-toc {
        padding: 20px;
    }
    
    .policy-item {
        padding: 20px;
    }
    
    .policy-item h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-large {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .feature-card,
    .game-card,
    .task-card,
    .faq-item,
    .policy-item {
        padding: 15px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    /* Mobile Simple Stats */
    .simple-stats .simple-stat-item {
        min-width: 100px;
        padding: 18px 20px;
        min-height: 90px;
    }
    
    .simple-stats .simple-stat-number {
        font-size: 2rem;
    }
    
    .simple-stats .simple-stat-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Tasks Page - Hero Section */
.tasks-hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 100px 0 60px;
}

.tasks-hero .hero-content {
    max-width: none;
    text-align: left;
}

.tasks-hero .hero-description p {
    margin-bottom: 16px;
}

.tasks-hero .hero-description p:last-child {
    margin-bottom: 0;
}

.tasks-hero .hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.tasks-hero .hero-actions .btn {
    min-width: 180px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.tasks-hero .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tasks-hero .character-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.tasks-hero .character-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(255, 107, 53, 0.4));
}

@media (max-width: 768px) {
    .tasks-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 80px 0 40px;
    }
    
    .tasks-hero .hero-content {
        order: 1;
    }
    
    .tasks-hero .hero-image {
        order: 2;
    }
    
    .tasks-hero .character-img {
        max-width: 350px;
    }
    
    .tasks-hero .hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .tasks-hero .hero-actions .btn {
        min-width: auto;
        width: 100%;
        min-height: 52px;
        justify-content: center;
        align-items: center;
    }
}

/* Tasks Page - Preview Section */
.preview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.preview-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.preview-card:hover::before {
    transform: scaleX(1);
}

.preview-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.preview-header {
    margin-bottom: 20px;
}

.preview-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: grayscale(0.3);
}

.preview-card:hover .preview-icon {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.preview-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    margin-bottom: 10px;
}

.preview-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.preview-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.preview-card:hover .feature-tag {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.preview-note {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(240, 147, 251, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-top: 60px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.note-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.preview-note p {
    color: white;
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.preview-note strong {
    color: #f093fb;
}

/* Newsletter Subscription */
.newsletter-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.newsletter-section h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0 0 30px 0;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 15px 25px;
    white-space: nowrap;
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .newsletter-section h3 {
        font-size: 20px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form button {
        padding: 15px;
    }
}

/* Subscription Modal */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.subscription-modal.show {
    opacity: 1;
    visibility: visible;
}

.subscription-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.subscription-modal.show .subscription-modal-content {
    transform: scale(1);
}

.subscription-modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
}

.subscription-modal-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.subscription-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.subscription-modal-content button {
    min-width: 120px;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .subscription-modal-content {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .subscription-modal-icon {
        font-size: 40px;
    }
    
    .subscription-modal-content h3 {
        font-size: 20px;
    }
    
    .subscription-modal-content p {
        font-size: 14px;
    }
}

/* FAQ Section - Interactive */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f1419 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.03);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question span:first-child {
    color: white;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #f093fb, #ff6b35);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    margin-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .preview-card {
        padding: 25px 20px;
    }
    
    .preview-icon {
        font-size: 40px;
    }
    
    .preview-header h3 {
        font-size: 20px;
    }
    
    .preview-note {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .preview-note p {
        font-size: 16px;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span:first-child {
        font-size: 16px;
        margin-right: 15px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Download Section - Premium Beautiful Style */
.app-download-section {
    margin: 50px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15), transparent 50%),
        linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 25%, #16213e 50%, #0f172a 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="0.3" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.4" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

/* Clean Hero Banner */
.download-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5a9f 100%);
    padding: 16px 0;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-text {
    font-weight: 600;
    font-size: 15px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.download-main {
    display: flex;
    align-items: center;
    padding: 60px;
    gap: 60px;
    min-height: 300px;
    position: relative;
    z-index: 2;
}

.download-left {
    flex: 1;
    color: white;
}

.download-left h3 {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 24px 0;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.download-left h3 .highlight-text {
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a56 50%, #d4a5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.download-left h3 .highlight-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a56 50%, #d4a5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(6px);
    opacity: 0.4;
    z-index: -1;
}

.download-left p {
    font-size: 20px;
    margin: 0 0 36px 0;
    opacity: 0.95;
    line-height: 1.6;
    color: #e1e8f0;
    font-weight: 400;
}

.robux-highlight {
    background: linear-gradient(135deg, #ffd89b, #ffed8a, #fff4a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 22px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 16px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.download-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.download-app-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #a855f7 50%, #c084fc 75%, #667eea 100%);
    background-size: 300% 100%;
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.download-app-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(168, 85, 247, 0.3);
}

.download-app-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.download-right {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character-full {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.character-full::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: 
        radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.2) 50%, transparent 70%),
        radial-gradient(circle, rgba(196, 113, 237, 0.2) 20%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(1px);
    animation: pulse 4s ease-in-out infinite;
}

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

.character-full .character-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.download-bonus-center {
    padding: 30px 60px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.mega-bonus-container {
    position: relative;
    display: inline-block;
}

.mega-bonus-content {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #c471ed 100%);
    background-size: 300% 100%;
    color: white;
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 
        0 12px 32px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: megaBonusGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes megaBonusGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mega-bonus-amount {
    color: white;
    font-size: 22px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Download Section */
@media (max-width: 768px) {
    .app-download-section {
        margin: 40px 0;
        border-radius: 24px;
    }
    
    .download-main {
        flex-direction: column;
        padding: 40px 30px;
        gap: 35px;
        text-align: center;
        min-height: auto;
    }
    
    .download-left h3 {
        font-size: 32px;
        margin: 0 0 18px 0;
        line-height: 1.1;
    }
    
    .download-left p {
        font-size: 18px;
        margin: 0 0 30px 0;
    }
    
    .download-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 35px;
    }
    
    .feature-item {
        padding: 18px 16px;
        font-size: 14px;
        border-radius: 16px;
        min-height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .download-app-btn {
        padding: 18px 40px;
        font-size: 16px;
        border-radius: 50px;
    }
    
    .download-right {
        flex: none;
        order: -1;
    }
    
    .character-full::before {
        width: 180px;
        height: 180px;
    }
    
    .character-full .character-img {
        max-width: 160px;
    }
    
    .download-bonus-center {
        padding: 25px 30px;
    }
    
    .mega-bonus-content {
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 50px;
    }
    
    .mega-bonus-amount {
        font-size: 20px;
    }
    
    /* Mobile Banner */
    .app-download-section {
        margin: 30px 0;
        border-radius: 20px;
    }
    
    .download-hero-banner {
        padding: 14px 0;
        border-radius: 20px 20px 0 0;
    }
    
    .banner-text {
        font-size: 14px;
        padding: 0 15px;
        font-weight: 600;
    }
    
    /* Mobile Button Styles */
    .btn-download {
        padding: 12px 24px;
        font-size: 15px;
        gap: 6px;
        min-height: 48px;
    }
    
    .btn-download .robux-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
        min-height: 48px;
    }
}