/* Fonts */
@font-face {
    font-family: 'TitleFont';
    src: url('../fonts/title.otf') format('opentype');
}

@font-face {
    font-family: 'IntegralCF';
    src: url('../fonts/Fontspring-DEMO-integralcf-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'TitleFont', sans-serif;
}

body {
    background-color: #0B0B0B;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    padding-top: 80px;
}

/* NAVBAR - Identique à l'index */
.navbar {
    background-color: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid #494949;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin: 0 auto;
    max-width: 1100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-links li a:hover {
    color: #4A9EFF;
}

.login-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.discord-icon {
    text-decoration: none;
    line-height: 1;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5865F2;
    border: 1px solid #8892fa;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: white;
    box-shadow: 0 0 8px rgba(136, 146, 250, 0.5);
    transition: all 0.2s ease;
}

.discord-icon i {
    text-decoration: none;
    display: block;
    line-height: 1;
}

.discord-login {
    background: linear-gradient(145deg, #003e8c, #007bff);
    border: 1px solid #3399ff;
    color: white;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    box-shadow: 0 0 8px rgba(51, 153, 255, 0.5);
    transition: all 0.2s ease;
}

.discord-login:hover {
    box-shadow: 0 0 12px rgba(51, 153, 255, 0.8);
    transform: scale(1.02);
}

.discord-icon:hover {
    box-shadow: 0 0 12px rgba(136, 146, 250, 0.8);
    transform: scale(1.02);
}

/* Menu burger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    margin-left: 16px;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 4px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar {
    background-color: transparent;
}

.mobile-only {
    display: none;
}

.close-menu {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.2s ease;
}

.close-menu:hover {
    transform: scale(1.1);
}

.center-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* MAIN CONTENT */
.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: start;
}

/* IMAGE SECTION */
.image-section {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.product-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumbnail, .video-thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail:hover, .video-thumbnail:hover {
    transform: scale(1.05);
    border-color: #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* PRODUCT INFO SECTION */
.product-info {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(150, 150, 150, 0.2);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* NOUVEAU: Container pour les badges */
.product-badge-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-badge {
    background: linear-gradient(135deg, #CC1E1E, #B71C1C);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(204, 30, 30, 0.4);
}

/* NOUVEAU: Badge "Updated for last patch" */
.updated-badge {
    background: rgba(74, 158, 255, 0.15);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: #4A9EFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.updated-badge:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: rgba(74, 158, 255, 0.4);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-title {
    font-family: 'IntegralCF', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.discount-info {
    background: linear-gradient(135deg, rgba(204, 30, 30, 0.15), rgba(183, 28, 28, 0.1));
    border: 1px solid rgba(204, 30, 30, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.discount-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.discount-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #FF6B6B;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-header i {
    font-size: 14px;
}

.discount-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.discount-percentage {
    background: linear-gradient(135deg, #CC1E1E, #B71C1C);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(204, 30, 30, 0.4);
    min-width: 80px;
    text-align: center;
}

.discount-details {
    flex: 1;
}

.discount-label {
    display: block;
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.discount-code-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #FF6B6B;
    font-weight: bold;
    letter-spacing: 1px;
    flex: 1;
}

.copy-code-btn {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.copy-code-btn:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.05);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-container i {
    color: #FF6B6B;
    font-size: 14px;
}

.countdown {
    color: #FF6B6B;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
    letter-spacing: 1px;
}

.product-description {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-details {
    margin-bottom: 30px;
}

.product-details p {
    color: #AAAAAA;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* FORM SECTION */
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-select {
    background: rgba(40, 40, 45, 0.9);
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-family: 'TitleFont', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-select:hover, .price-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.price-select option {
    background: #2a2a2a;
    color: white;
    padding: 10px;
}

.buy-now-button {
    background: linear-gradient(145deg, #003e8c, #007bff);
    border: 1px solid #3399ff;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(51, 153, 255, 0.4);
    font-family: 'TitleFont', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(51, 153, 255, 0.6);
}

.buy-now-button i {
    font-size: 16px;
}

/* FEATURES SECTION */
.features-section {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(150, 150, 150, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    color: white;
    grid-column: 1 / -1;
}

.features-header {
    background: linear-gradient(145deg, #003e8c, #007bff);
    border: 1px solid #3399ff;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
}

.features-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'IntegralCF', sans-serif;
}

.features-content p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.features-content p:empty {
    margin-bottom: 15px;
}

/* AUTRES PRODUITS SECTION */
.other-products-section {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(150, 150, 150, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    color: white;
    grid-column: 1 / -1;
}

.other-products-header {
    text-align: center;
    margin-bottom: 40px;
}

.other-products-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'IntegralCF', sans-serif;
}

.other-products-description {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
}

.other-products-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4A9EFF;
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    backdrop-filter: blur(10px);
    max-width: fit-content;
    margin: 0 auto 40px;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.2);
}

.other-products-info i {
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* LIEN PRODUIT - Toute la carte cliquable */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s ease;
}

.product-card-link:hover {
    transform: translateY(-10px);
}

.product-card-link:hover .product-card {
    box-shadow: 0 20px 40px rgba(150, 150, 150, 0.1);
    border-color: rgba(150, 150, 150, 0.5);
    transform: none; /* Évite le double effet */
}

.product-card {
    background: #1a1a1a;
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.product-card:hover {
    /* Effet géré par .product-card-link:hover maintenant */
}

/* SECTION IMAGE */
.product-image-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* BADGE DE RÉDUCTION - ROUGE SOMBRE AVEC GLOW */
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #CC1E1E, #B71C1C);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(204, 30, 30, 0.5),
        0 0 20px rgba(204, 30, 30, 0.3);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 
            0 4px 12px rgba(204, 30, 30, 0.5),
            0 0 20px rgba(204, 30, 30, 0.3);
    }
    100% {
        box-shadow: 
            0 4px 16px rgba(204, 30, 30, 0.7),
            0 0 30px rgba(204, 30, 30, 0.5),
            0 0 40px rgba(204, 30, 30, 0.2);
    }
}

/* SECTION DÉTAILS */
.product-details {
    background: #1a1a1a;
    padding: 25px;
    color: white;
}

/* TITRE DE CATÉGORIE */
.product-category-title {
    font-family: 'TitleFont', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* BADGES FEATURES */
.product-features-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d2818, #1a3d2e);
    border: 1px solid #2d5a47;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #00D474;
    box-shadow: 0 2px 8px rgba(0, 212, 116, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge.instant {
    color: #00D474;
}

.feature-badge.setup {
    color: #00D474;
}

.feature-badge i {
    font-size: 12px;
}

/* BOTTOM SECTION */
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #CC1E1E;
}

.product-old-price {
    font-size: 1.1rem;
    color: #666;
    text-decoration: line-through;
}

/* NOUVEAU STYLE POUR LE BOUTON BUY NOW - Plus gros */
.product-buy-btn {
    background: rgba(40, 40, 45, 0.9);
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-buy-btn:hover {
    background: rgba(50, 50, 55, 0.95);
    border-color: rgba(150, 150, 150, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-buy-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.product-buy-btn span {
    font-size: 14px;
    font-weight: 500;
}

.product-buy-btn:hover i {
    transform: translateX(2px);
}

/* FOOTER - Identique à l'index */
.footer {
    background-color: #0B0B0B;
    color: white;
    padding: 60px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'TitleFont', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.footer-description {
    color: #AAAAAA;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAA;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3a3a3a;
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-family: 'TitleFont', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #888888;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright i {
    font-size: 14px;
    color: #666666;
}

.back-to-top {
    position: absolute;
    top: -25px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #003e8c, #007bff);
    border: 2px solid #3399ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
    text-decoration: none;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(51, 153, 255, 0.5);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info {
        position: static;
        top: auto;
    }
    
    .features-section, .other-products-section {
        grid-column: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .navbar {
        padding: 0.6rem 1rem;
        max-width: calc(100% - 40px);
        top: 10px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }
    
    .close-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1001;
        transition: all 0.4s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar.menu-open {
        background-color: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        top: 0 !important;
    }

    .nav-links li a {
        font-size: 1.5rem;
        padding: 0.8rem 0;
    }

    .mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .discord-icon.mobile-only {
        width: 72px;
        height: 72px;
        font-size: 32px;
        background-color: #5865F2;
        border-radius: 50%;
        border: 1px solid #8892fa;
        box-shadow: 0 0 8px rgba(136, 146, 250, 0.5);
    }

    .discord-login.mobile-only {
        background: linear-gradient(145deg, #003e8c, #007bff);
        border: 1px solid #3399ff;
        color: white;
        font-size: 20px;
        padding: 10px 32px;
        border-radius: 999px;
        box-shadow: 0 0 8px rgba(51, 153, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
    }

    .login-buttons {
        display: none;
    }

    .center-nav {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .product-container {
        padding: 20px 15px;
    }
    
    .product-info {
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-badge-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .discount-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .discount-percentage {
        font-size: 1.8rem;
        padding: 12px 18px;
    }
    
    .features-section, .other-products-section {
        padding: 30px 20px;
    }
    
    .other-products-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thumbnails {
        justify-content: flex-start;
    }
    
    .thumbnail, .video-thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .footer {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .back-to-top {
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .product-info {
        padding: 25px 15px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .discount-info {
        padding: 15px;
    }
    
    .features-section, .other-products-section {
        padding: 25px 15px;
    }
    
    .other-products-title {
        font-size: 1.8rem;
    }
    
    .product-card-content {
        padding: 20px;
    }
    
    .product-card-title {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 30px 15px 15px 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 14px;
        right: 15px;
    }
    
    .thumbnails {
        gap: 10px;
    }
    
    .thumbnail, .video-thumbnail {
        width: 80px;
        height: 60px;
    }
}