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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #d1d5db;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #8B5CF6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: #8B5CF6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: #7C3AED;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.floating-bats {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23A78BFA" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="%2364B5F6" opacity="0.1"/><circle cx="40" cy="80" r="4" fill="%2381C784" opacity="0.1"/><rect x="60" y="60" width="8" height="8" fill="%23F48FB1" opacity="0.1" transform="rotate(45 64 64)"/><polygon points="30,30 35,40 25,40" fill="%23A78BFA" opacity="0.1"/></svg>');
    background-size: 60px 60px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

.falling-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="10" cy="10" r="2" fill="%23A78BFA" opacity="0.1"/><rect x="8" y="8" width="4" height="4" fill="%2364B5F6" opacity="0.1" transform="rotate(45 10 10)"/></svg>');
    background-size: 40px 40px;
    animation: fall 15s linear infinite;
    opacity: 0.2;
}

@keyframes float {
    0% { transform: translateX(-100px) translateY(0); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-100px); }
}

@keyframes fall {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(calc(100vh + 100px)) rotate(360deg); }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1400px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.1;
    text-align: center;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.cta-button.primary {
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Hero Countdown Timer */
.hero-countdown {
    margin: 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.hero-countdown h3 {
    color: #8B5CF6;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-countdown .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0;
}

.hero-countdown .time-unit {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    text-align: center;
    min-width: 90px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.hero-countdown .time-unit:hover {
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.15);
}

.hero-countdown .time-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #8B5CF6;
    font-family: 'Inter', sans-serif;
}

.hero-countdown .time-label {
    display: block;
    font-size: 0.75rem;
    color: #666666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-countdown .urgency-text {
    font-size: 1rem;
    color: #8B5CF6;
    margin: 1.5rem 0 0 0;
    font-weight: 600;
    text-align: center;
}

.games-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
    max-width: 400px;
    margin: 0 auto;
}

.game-preview {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8B5CF6, #A78BFA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    animation: float-game 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-preview img.preview-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.game-preview:hover {
    transform: scale(1.1) rotateY(10deg);
}

.game-preview:nth-child(odd) {
    animation-delay: -1s;
}

.game-preview:nth-child(even) {
    animation-delay: -2s;
}

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

/* Bundle Preview Section */
.bundle-preview {
    padding: 6rem 0;
    background: #f8fafc;
}

.bundle-preview h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.game-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-screenshot {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #8B5CF6, #A78BFA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 10px;
    overflow: hidden;
}

.game-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-demo {
    background: #8B5CF6;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-demo:hover {
    background: #7C3AED;
    transform: scale(1.05);
}

.game-card h3 {
    color: #8B5CF6;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.game-card p {
    color: #666666;
    font-size: 0.9rem;
}

/* License & Pricing Section */
.license-pricing {
    padding: 6rem 0;
    background: #ffffff;
}

.license-pricing h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.featured {
    border-color: #8B5CF6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B5CF6;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: #8B5CF6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    color: #666666;
    border-bottom: 1px solid #e5e7eb;
}

.features li:last-child {
    border-bottom: none;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: #f8fafc;
}

.why-choose h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-item p {
    color: #666666;
    line-height: 1.6;
}

/* Limited Offer Section */
.limited-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #8B5CF6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.offer-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.offer-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.offer-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.offer-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.limited-offer::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"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23fff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23fff" opacity="0.1"/></svg>');
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.limited-offer h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.urgency-text {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 2rem 0;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 20px 40px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #1f2937;
    padding: 3rem 0 1rem;
    border-top: 2px solid #8B5CF6;
}

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

.footer-section h3,
.footer-section h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8B5CF6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #7C3AED;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-icon {
    color: #8B5CF6;
    font-weight: 800;
}

.faq-answer {
    padding: 1rem 1.25rem 1rem;
    color: #4b5563;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero .container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-countdown {
        margin: 0;
        padding: 1.5rem;
    }
    
    .hero-countdown .countdown-timer {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .hero-countdown .time-unit {
        min-width: 70px;
        padding: 1rem 1.2rem;
    }
    
    .hero-countdown .time-value {
        font-size: 1.8rem;
    }
    
    .games-collage {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 300px;
    }
    
    .game-preview {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .bundle-preview h2,
    .license-pricing h2,
    .why-choose h2,
    .limited-offer h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
