/* [Previous CSS Content mostly same, updating Pricing Section] */

/* ... (Keep existing styles until Pricing Section) ... */

:root {
    --bg-dark: #050507;
    --bg-card: #0e0e14;
    --primary: #8a2be2;
    /* BlueViolet / Neon Purple */
    --primary-glow: rgba(138, 43, 226, 0.5);
    --secondary: #00ff9d;
    /* Neon Green */
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(76, 201, 240, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--primary-glow);
    }

    50% {
        text-shadow: 0 0 20px var(--primary), 0 0 10px var(--secondary);
    }

    100% {
        text-shadow: 0 0 5px var(--primary-glow);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Animations Base */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 100px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 70%);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 0 30px var(--primary-glow);
    max-height: 300px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), #4cc9f0);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--primary-glow);
    filter: brightness(1.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #08080c;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Delivery Section */
.delivery {
    padding: 60px 0;
    background: linear-gradient(90deg, #0e0e14 0%, #1a1a2e 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.delivery-content {
    max-width: 800px;
    margin: 0 auto;
}

.icon-large {
    font-size: 3rem;
    color: #ffd700;
    /* Gold */
    margin-bottom: 20px;
}

.delivery h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.delivery p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* NEW Pricing Section Styles */
.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    /* Align cards vertically in the middle */
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.pricing-card.basic {
    border-top: 4px solid #aaa;
}

.pricing-card.deluxe {
    border: 1px solid var(--primary);
    background: radial-gradient(circle at top, rgba(138, 43, 226, 0.1), var(--bg-card));
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    transform: scale(1.05);
    /* Make Deluxe slightly bigger by default on desktop */
    z-index: 2;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.deluxe .price-tag {
    color: var(--secondary);
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.installments {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.basic .features-list li i {
    color: #aaa;
}

.ideal-for {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.ideal-for i {
    font-size: 1.2rem;
    color: var(--primary);
}

.secondary-cta {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    display: block;
    transition: var(--transition);
}

.secondary-cta:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.main-cta {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.guarantee-text {
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods-small {
    font-size: 1.5rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #111;
}

/* Mobile Responsiveness Updates */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    /* Reduce Section Padding */
    .hero {
        padding: 40px 0 30px;
    }

    .features,
    .gallery,
    .delivery,
    .pricing {
        padding: 30px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: column;
        gap: 40px;
        /* Reduced gap */
        align-items: center;
    }

    .pricing-card {
        padding: 30px 20px;
        /* Reduced card padding */
    }

    .pricing-card.deluxe {
        transform: scale(1);
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #08080c;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item[open] {
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.1);
}

summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    summary {
        font-size: 1rem;
        padding: 15px;
    }
}

/* Games and Platforms Carousel Sections */
.games-carousel,
.platforms-carousel {
    padding: 60px 0;
    overflow: hidden;
    background: #0a0a14;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a14, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a14, transparent);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-item {
    width: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 140px;
    }
}