/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* ===== VARIABLES CSS ===== */
:root {
    --primary-red: #e74c3c;
    --primary-black: #0a0a0a;
    --primary-yellow: #f39c12;
    --primary-violet: #8e44ad;
    --secondary-red: #c0392b;
    --secondary-yellow: #e67e22;
    --secondary-violet: #7d3c98;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo .logo-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
    overflow: hidden;
}

.nav-logo .logo-part {
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.nav-logo .logo-part.highlight {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nav-logo .logo-part.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    z-index: 1;
}

.nav-logo:hover .logo-part.highlight::before {
    left: 0;
}

.nav-logo .logo-part:not(.highlight) {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-logo:hover .logo-part:not(.highlight) {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-yellow);
}

.nav-logo:hover .logo-text {
    transform: scale(1.05);
}

/* Animation d'apparition du logo */
@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-logo .logo-text {
    animation: logoSlideIn 0.8s ease-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    transition: var(--transition);
    z-index: 1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    transition: var(--transition);
    z-index: 1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary > * {
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== HERO SECTIONS ===== */
.hero, .bonus-hero, .guides-hero, .contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before, .bonus-hero::before, .guides-hero::before, .contact-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container, .bonus-hero-content, .guides-hero-content, .contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title, .bonus-hero-title, .guides-hero-title, .contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description, .bonus-hero-description, .guides-hero-description, .contact-hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* Particules flottantes */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

.card-1 {
    top: -50px;
    left: -100px;
    animation-delay: 0s;
}

.card-2 {
    top: 50px;
    right: -50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: -50px;
    left: 50px;
    animation-delay: 4s;
}



/* ===== SECTIONS GÉNÉRALES ===== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--primary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    transition: var(--transition);
    z-index: 1;
    opacity: 0.8;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* ===== POPULAR GAMES SECTION ===== */
.popular-games {
    background: var(--dark-gray);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-yellow));
    transition: var(--transition);
    z-index: 1;
    opacity: 0.8;
}

.game-card:hover::before {
    left: 0;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.game-card > * {
    position: relative;
    z-index: 2;
}

.game-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-card:hover .game-image {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-image::before {
    opacity: 1;
}

.game-image i {
    position: relative;
    z-index: 2;
}

.game-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.game-card p {
    color: #ccc;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
    background: var(--primary-black);
    padding: 4rem 0;
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.05), rgba(142, 68, 173, 0.05));
    pointer-events: none;
}

.social-content {
    position: relative;
    z-index: 2;
}

.social-description {
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-heavy);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.follower-count {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Social card colors */
.social-card.youtube .social-icon {
    background: #ff0000;
}

.social-card.dlive .social-icon {
    background: #ff6b35;
}

.social-card.tiktok .social-icon {
    background: #000000;
}

.social-card.telegram .social-icon {
    background: #0088cc;
}

.social-card.discord .social-icon {
    background: #5865f2;
}

/* Social Icon Images */
.social-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: none;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
}

/* ===== CTA SECTIONS ===== */
.cta-section, .guides-cta, .contact-cta {
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BONUS PAGE STYLES ===== */
.featured-bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.bonus-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.bonus-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 1rem 0;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.up-to {
    font-size: 1.2rem;
    color: #ccc;
}

.bonus-features {
    list-style: none;
    margin: 1.5rem 0;
}

.bonus-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-features i {
    color: var(--primary-yellow);
}

.bonus-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-violet);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-violet);
    color: var(--white);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    transition: var(--transition);
    z-index: 1;
    opacity: 0.8;
}

.bonus-card:hover::before {
    left: 0;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bonus-card > * {
    position: relative;
    z-index: 2;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-logo-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.bonus-rating {
    text-align: right;
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.rating-text {
    color: #ccc;
    font-size: 0.9rem;
    display: block;
}

.bonus-body h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.bonus-amount-small {
    margin: 1rem 0;
}

.bonus-amount-small .amount {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.bonus-amount-small .up-to {
    font-size: 1rem;
    color: #ccc;
}

.bonus-requirements {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #999;
}

.bonus-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-yellow));
    transition: var(--transition);
    z-index: 1;
    opacity: 0.8;
}

.step-card:hover::before {
    left: 0;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-card > * {
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-violet);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.step-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.step-card p {
    color: #ccc;
}

/* ===== GUIDES PAGE STYLES ===== */
.quick-nav {
    background: var(--dark-gray);
    padding: 3rem 0;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-nav-item:hover {
    background: var(--primary-violet);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quick-nav-item i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.guide-section {
    background: var(--primary-black);
    padding: 4rem 0;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.guide-title-content h2 {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.guide-title-content p {
    color: #ccc;
    font-size: 1.1rem;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.guide-main h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.guide-main p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-card h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.strategy-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.strategy-rating {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.difficulty {
    color: var(--primary-yellow);
}

.risk {
    color: var(--primary-red);
}

.betting-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.bet-type h4 {
    color: var(--primary-violet);
    margin-bottom: 1rem;
}

.bet-type ul {
    list-style: none;
}

.bet-type li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.bet-type li::before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
}

.pro-tips {
    background: rgba(142, 68, 173, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-violet);
    margin: 2rem 0;
}

.pro-tips h3 {
    color: var(--primary-violet);
    margin-bottom: 1rem;
}

.pro-tips ul {
    list-style: none;
}

.pro-tips li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.pro-tips li::before {
    content: '✓';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: #ccc;
}

.stat-value {
    color: var(--primary-yellow);
    font-weight: 600;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 0.5rem;
}

.sidebar-card a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card a:hover {
    color: var(--primary-yellow);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.rule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.rule-item h4 {
    color: var(--primary-violet);
    margin-bottom: 1rem;
}

.rule-item p {
    color: #ccc;
}

.slots-types, .poker-variants, .baccarat-strategies, .etiquette-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.slot-type, .variant-card, .baccarat-strategies .strategy-card, .etiquette-rule {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-type h4, .variant-card h4, .etiquette-rule h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.slot-type p, .variant-card p, .etiquette-rule p {
    color: #ccc;
}

.rtp-factors ul, .poker-concepts ul, .baccarat-rules ul, .table-etiquette ul, .slots-etiquette ul {
    list-style: none;
}

.rtp-factors li, .poker-concepts li, .baccarat-rules li, .table-etiquette li, .slots-etiquette li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.rtp-factors li::before, .poker-concepts li::before, .baccarat-rules li::before, .table-etiquette li::before, .slots-etiquette li::before {
    content: '→';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
}

.rtp-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rtp-item {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-violet);
    box-shadow: var(--shadow-medium);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-method-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.response-time {
    color: var(--primary-violet);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.form-info p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.feature-item i {
    color: var(--primary-yellow);
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-violet);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: var(--primary-yellow);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    color: var(--primary-yellow);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-violet);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.team-member h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-violet);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #ccc;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: var(--transition);
    z-index: 1;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.social-links a:nth-child(1):hover { /* YouTube */
    background: #ff0000;
}

.social-links a:nth-child(2):hover { /* DLive */
    background: #ff6b35;
}

.social-links a:nth-child(3):hover { /* TikTok */
    background: #000000;
}

.social-links a:nth-child(4):hover { /* Telegram */
    background: #0088cc;
}

.social-links a:nth-child(5):hover { /* Discord */
    background: #5865f2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out forwards;
}

[data-aos="fade-left"] {
    animation: fadeInLeft 0.8s ease-out forwards;
}

[data-aos="fade-right"] {
    animation: fadeInRight 0.8s ease-out forwards;
}

[data-aos="zoom-in"] {
    animation: zoomIn 0.8s ease-out forwards;
}

/* ===== MODERN EFFECTS & ANIMATIONS ===== */
/* Effet de parallaxe pour les sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.1), 
        rgba(142, 68, 173, 0.1), 
        rgba(243, 156, 18, 0.1));
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Animations d'apparition améliorées */
@keyframes fadeInUpModern {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideInLeftModern {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-5deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes slideInRightModern {
    0% {
        opacity: 0;
        transform: translateX(100px) rotate(5deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes zoomInModern {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(180deg);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Effets de survol avancés */
.hover-glow {
    position: relative;
    overflow: hidden;
}

.hover-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.hover-glow:hover::after {
    width: 300px;
    height: 300px;
}

/* Effet de néon pour les éléments importants */
.neon-glow {
    text-shadow: 
        0 0 2px currentColor,
        0 0 4px currentColor,
        0 0 6px currentColor;
}

/* Animation de pulsation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Modern glassmorphism effects */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Enhanced hover effects */
.modern-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Gradient borders */
.gradient-border {
    position: relative;
    background: var(--primary-black);
    border-radius: 20px;
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow), var(--primary-violet));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Modern text effects */
.text-gradient-modern {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-heavy);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title, .bonus-hero-title, .guides-hero-title, .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-logo {
        margin: 0 auto 2rem;
    }
    

    
    .features-grid,
    .games-grid,
    .bonuses-grid,
    .steps-grid,
    .contact-methods-grid,
    .team-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title, .bonus-hero-title, .guides-hero-title, .contact-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLLBAR CUSTOMIZATION ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ===== SELECTION STYLES ===== */
::selection {
    background: var(--primary-violet);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-violet);
    color: var(--white);
}

/* ===== LOGO STYLES ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
}

/* Hero Section */
.fatpirat-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fatpirat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-red) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--primary-violet) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--primary-yellow) 0%, transparent 50%);
    opacity: 0.1;
    animation: gradientShift 8s ease-in-out infinite;
}

.fatpirat-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.fatpirat-badge {
    margin-bottom: 2rem;
}

.badge-text {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    animation: pulse-animation 2s ease-in-out infinite;
}

.fatpirat-title {
    margin-bottom: 1.5rem;
}

.fatpirat-text {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red), var(--primary-violet));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
    letter-spacing: 3px;
}

.fatpirat-subtitle {
    margin-bottom: 3rem;
}

.subtitle-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
    opacity: 0.9;
}

.fatpirat-cta {
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.6);
}

.cta-button .cta-text {
    margin-right: 1rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Floating Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-coin,
.floating-diamond,
.floating-star {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-coin {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-diamond {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Bonus Details Section */
.bonus-details {
    padding: 5rem 0;
    background: var(--primary-black);
}

.bonus-details-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-main-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-amount-display {
    margin-bottom: 1rem;
}

.amount-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-plus {
    margin-bottom: 2rem;
}

.plus-text {
    font-size: 1.5rem;
    color: var(--primary-violet);
    font-weight: 600;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Claim Steps Section */
.claim-steps {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
}

.claim-steps .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Main CTA Section */
.main-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-violet) 100%);
    position: relative;
    overflow: hidden;
}

.main-cta-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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.main-cta-button {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.main-cta-button .button-text {
    margin-right: 1rem;
}

.main-cta-button i {
    transition: transform 0.3s ease;
}

.main-cta-button:hover i {
    transform: scale(1.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for FATPIRAT Page */
@media (max-width: 768px) {
    .fatpirat-text {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .bonus-main-title {
        font-size: 2rem;
    }
    
    .amount-text {
        font-size: 2.5rem;
    }
    
    .bonus-features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-button,
    .main-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fatpirat-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .bonus-main-title {
        font-size: 1.8rem;
    }
    
    .amount-text {
        font-size: 2rem;
    }
    
    .bonus-details-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button,
    .main-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== FATPIRAT BONUS PAGE STYLES ===== */

/* Hero Section */
.fatpirat-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fatpirat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-red) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--primary-violet) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--primary-yellow) 0%, transparent 50%);
    opacity: 0.1;
    animation: gradientShift 8s ease-in-out infinite;
}

.fatpirat-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.fatpirat-badge {
    margin-bottom: 2rem;
}

.badge-text {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    animation: pulse-animation 2s ease-in-out infinite;
}

.fatpirat-title {
    margin-bottom: 1.5rem;
}

.fatpirat-text {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red), var(--primary-violet));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
    letter-spacing: 3px;
}

.fatpirat-subtitle {
    margin-bottom: 3rem;
}

.subtitle-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
    opacity: 0.9;
}

.fatpirat-cta {
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.6);
}

.cta-button .cta-text {
    margin-right: 1rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Floating Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-coin,
.floating-diamond,
.floating-star {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-coin {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-diamond {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Bonus Details Section */
.bonus-details {
    padding: 5rem 0;
    background: var(--primary-black);
}

.bonus-details-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-main-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-amount-display {
    margin-bottom: 1rem;
}

.amount-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-plus {
    margin-bottom: 2rem;
}

.plus-text {
    font-size: 1.5rem;
    color: var(--primary-violet);
    font-weight: 600;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Claim Steps Section */
.claim-steps {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
}

.claim-steps .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Main CTA Section */
.main-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-violet) 100%);
    position: relative;
    overflow: hidden;
}

.main-cta-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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.main-cta-button {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.main-cta-button .button-text {
    margin-right: 1rem;
}

.main-cta-button i {
    transition: transform 0.3s ease;
}

.main-cta-button:hover i {
    transform: scale(1.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for FATPIRAT Page */
@media (max-width: 768px) {
    .fatpirat-text {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .bonus-main-title {
        font-size: 2rem;
    }
    
    .amount-text {
        font-size: 2.5rem;
    }
    
    .bonus-features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-button,
    .main-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fatpirat-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .bonus-main-title {
        font-size: 1.8rem;
    }
    
    .amount-text {
        font-size: 2rem;
    }
    
    .bonus-details-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button,
    .main-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== DISCORD CTA SECTION STYLES ===== */
.discord-cta-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-violet) 50%, var(--primary-red) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.discord-cta-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="discord-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23discord-grain)"/></svg>');
    opacity: 0.3;
}

.discord-cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.discord-cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discord-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    animation: pulse-discord 2s infinite;
}

@keyframes pulse-discord {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
    }
}

.discord-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-cta-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.discord-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    width: 40px;
    text-align: center;
}

.benefit-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.btn-discord {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-discord::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-discord:hover::before {
    left: 100%;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
    background: linear-gradient(45deg, #7289DA, #5865F2);
}

.btn-discord i {
    font-size: 1.3rem;
}

/* Responsive Design for Discord CTA */
@media (max-width: 768px) {
    .discord-cta-section {
        padding: 4rem 0;
    }
    
    .discord-cta-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .discord-cta-title {
        font-size: 2rem;
    }
    
    .discord-cta-description {
        font-size: 1.1rem;
    }
    
    .discord-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .discord-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .discord-cta-content {
        padding: 2rem 1.5rem;
    }
    
    .discord-cta-title {
        font-size: 1.8rem;
    }
    
    .discord-cta-description {
        font-size: 1rem;
    }
    
    .btn-discord {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .discord-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ===== AD BANNER SECTION STYLES ===== */
.ad-banner-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-violet) 100%);
    position: relative;
    overflow: hidden;
}

.ad-banner-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="banner-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23banner-grain)"/></svg>');
    opacity: 0.3;
}

.ad-banner-section .container {
    position: relative;
    z-index: 2;
}

.ad-banner-section a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ad-banner-section a:hover {
    transform: scale(1.02);
}

.ad-banner-section img {
    width: 100%;
    height: auto;
    max-width: 1045px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Responsive Design for Ad Banner */
@media (max-width: 768px) {
    .ad-banner-section {
        padding: 2rem 1rem;
    }
    
    .ad-banner-section img {
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .ad-banner-section {
        padding: 1.5rem 0.8rem;
    }
    
    .ad-banner-section img {
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
}

/* ===== VEGAZ CASINO BONUS PAGE STYLES ===== */

/* Hero Section VEGAZ CASINO */
.vegaz-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #001a2e 50%, #003d5c 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.vegaz-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="vegaz-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,212,170,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(0,168,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23vegaz-grain)"/></svg>');
    opacity: 0.4;
    animation: vegaz-float 20s ease-in-out infinite;
}

@keyframes vegaz-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.vegaz-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vegaz-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    animation: vegaz-pulse 2s ease-in-out infinite;
}

@keyframes vegaz-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vegaz-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.vegaz-text {
    background: linear-gradient(135deg, #00d4aa, #00a8cc, #0099cc, #00b4db);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vegaz-gradient 3s ease-in-out infinite;
}

@keyframes vegaz-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vegaz-subtitle {
    font-size: 1.5rem;
    color: #b0e0e6;
    margin-bottom: 3rem;
    font-weight: 500;
}

.vegaz-cta {
    margin-top: 2rem;
}

.vegaz-cta .cta-button {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.vegaz-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.6);
    background: linear-gradient(135deg, #00b894, #0097e6);
}

.vegaz-cta .cta-button:active {
    transform: translateY(-1px);
}

/* Responsive Design for VEGAZ CASINO Page */
@media (max-width: 768px) {
    .vegaz-hero {
        padding: 1rem 0;
    }
    
    .vegaz-hero-content {
        padding: 0 1rem;
    }
    
    .vegaz-title {
        font-size: 2.5rem;
    }
    
    .vegaz-text {
        font-size: 2.5rem;
    }
    
    .vegaz-subtitle {
        font-size: 1.2rem;
    }
    
    .vegaz-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .vegaz-title {
        font-size: 2rem;
    }
    
    .vegaz-text {
        font-size: 2rem;
    }
    
    .vegaz-subtitle {
        font-size: 1rem;
    }
    
    .vegaz-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== BONUS SECTION STYLES ===== */
.bonus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a2e 50%, var(--primary-violet) 100%);
    position: relative;
    overflow: hidden;
}

.bonus-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="bonus-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23bonus-grain)"/></svg>');
    opacity: 0.3;
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

.bonus-section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-logo-container {
    margin-bottom: 1.5rem;
}

.bonus-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fatpirat-logo-small {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff, #5f27cd, #00d2d3, #ff9f43);
    background-size: 400% 400%;
    animation: gradient-border 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.vegaz-logo-small {
    background: linear-gradient(45deg, #00d4aa, #00a8cc, #0099cc, #00b4db, #00d4aa, #00a8cc, #0099cc);
    background-size: 400% 400%;
    animation: gradient-border-vegaz 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.bonus-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.bonus-logo-text {
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.fatpirat-bonus-card .bonus-title {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff, #5f27cd, #00d2d3, #ff9f43);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-border 3s ease-in-out infinite;
}

.vegaz-bonus-card .bonus-title {
    background: linear-gradient(135deg, #00d4aa, #00a8cc, #0099cc, #00b4db, #00d4aa, #00a8cc, #0099cc);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-border-vegaz 3s ease-in-out infinite;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.bonus-max {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
}

.bonus-description {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bonus-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.fatpirat-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.vegaz-btn {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.fatpirat-btn:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.vegaz-btn:hover {
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

.bonus-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Bonus Section */
@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 1.3rem;
    }
    
    .bonus-max {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .bonus-logo {
        width: 60px;
        height: 60px;
    }
    
    .bonus-logo-text {
        font-size: 10px;
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .bonus-max {
        font-size: 1rem;
    }
    
    .bonus-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== BONUS PAGE STYLES ===== */

/* Hero Section for Bonus Page */
.bonus-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a2e 50%, var(--primary-violet) 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.bonus-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="bonus-hero-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23bonus-hero-grain)"/></svg>');
    opacity: 0.3;
}

.bonus-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bonus-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.bonus-hero-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* FATPIRAT Bonus Section */
.fatpirat-bonus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #2d1b1b 50%, #4a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.fatpirat-bonus-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="fatpirat-bonus-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,107,107,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(238,90,36,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23fatpirat-bonus-grain)"/></svg>');
    opacity: 0.4;
}

/* VEGAZ CASINO Bonus Section */
.vegaz-bonus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #001a2e 50%, #003d5c 100%);
    position: relative;
    overflow: hidden;
}

.vegaz-bonus-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="vegaz-bonus-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,212,170,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(0,168,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23vegaz-bonus-grain)"/></svg>');
    opacity: 0.4;
}

.bonus-section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.bonus-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fatpirat-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff, #5f27cd, #00d2d3, #ff9f43);
    background-size: 400% 400%;
    animation: gradient-border 3s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.4),
        0 0 60px rgba(255, 107, 107, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vegaz-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00d4aa, #00a8cc, #0099cc, #00b4db, #00d4aa, #00a8cc, #0099cc);
    background-size: 400% 400%;
    animation: gradient-border-vegaz 3s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(0, 212, 170, 0.4),
        0 0 60px rgba(0, 212, 170, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fatpirat-logo-large:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 40px rgba(255, 107, 107, 0.6),
        0 0 80px rgba(255, 107, 107, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.vegaz-logo-large:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 0 40px rgba(0, 212, 170, 0.6),
        0 0 80px rgba(0, 212, 170, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.fatpirat-logo-text, .vegaz-logo-text {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bonus-header-content {
    flex: 1;
}

.bonus-badges-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
    flex-shrink: 0;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    min-height: 44px;
    width: auto;
}

.bonus-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fatpirat-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
}

.fatpirat-badge:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.vegaz-badge {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.25);
}

.vegaz-badge:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.bonus-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1.5rem 0 0.5rem 0;
}

.fatpirat-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff, #5f27cd, #00d2d3, #ff9f43);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-border 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.vegaz-text {
    background: linear-gradient(135deg, #00d4aa, #00a8cc, #0099cc, #00b4db, #00d4aa, #00a8cc, #0099cc);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-border-vegaz 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.bonus-section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 500;
    margin-top: 0.5rem;
}

.bonus-details-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.bonus-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.bonus-amount-display {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.amount-text {
    background: linear-gradient(135deg, var(--primary-yellow), #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-plus {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff88;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.fatpirat-bonus-section .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.vegaz-bonus-section .feature-icon {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bonus-cta-section {
    text-align: center;
}

.main-cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    margin-bottom: 1rem;
}

.fatpirat-cta-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.vegaz-cta-btn {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.fatpirat-cta-btn:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.vegaz-cta-btn:hover {
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

.main-cta-button:active {
    transform: translateY(-1px);
}

.cta-note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for Bonus Page */
@media (max-width: 768px) {
    .bonus-hero-title {
        font-size: 2.5rem;
    }
    
    .bonus-hero-description {
        font-size: 1.1rem;
    }
    
    .bonus-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bonus-logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .fatpirat-logo-large, .vegaz-logo-large {
        width: 120px;
        height: 120px;
    }
    
    .bonus-section-title {
        font-size: 2.2rem;
    }
    
    .bonus-main-title {
        font-size: 2rem;
    }
    
    .bonus-details-card {
        padding: 2rem;
    }
    
    .bonus-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Optimisation des badges pour mobile */
    .bonus-badges-container {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .bonus-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .bonus-hero {
        padding: 1rem 0;
    }
    
    .bonus-hero-title {
        font-size: 2rem;
    }
    
    .bonus-hero-description {
        font-size: 1rem;
    }
    
    .fatpirat-bonus-section, .vegaz-bonus-section {
        padding: 3rem 0;
    }
    
    .fatpirat-logo-large, .vegaz-logo-large {
        width: 100px;
        height: 100px;
    }
    
    .fatpirat-logo-text, .vegaz-logo-text {
        font-size: 14px;
    }
    
    .bonus-section-title {
        font-size: 1.8rem;
    }
    
    .bonus-main-title {
        font-size: 1.6rem;
    }
    
    .bonus-details-card {
        padding: 1.5rem;
    }
    
    .main-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Optimisation avancée des badges pour petits écrans */
    .bonus-badges-container {
        gap: 0.4rem;
        margin-bottom: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 20px;
        width: fit-content;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* ===== OPTIMISATION RESPONSIVE DES BADGES ===== */

/* Optimisation pour tablettes */
@media (max-width: 1024px) {
    .bonus-badges-container {
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }
    
    .bonus-badge {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.8rem;
    }
}

/* Optimisation pour mobile */
@media (max-width: 768px) {
    .bonus-badges-container {
        gap: 0.6rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .bonus-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

/* Optimisation pour petits écrans */
@media (max-width: 480px) {
    .bonus-badges-container {
        gap: 0.4rem;
        margin-bottom: 0.8rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .bonus-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 20px;
        width: auto;
        min-width: 120px;
        flex: 0 0 auto;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.65rem;
        line-height: 1.1;
        text-align: center;
    }
}

/* Optimisation pour très petits écrans */
@media (max-width: 320px) {
    .bonus-badges-container {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .bonus-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
        border-radius: 18px;
        min-width: 100px;
        flex: 0 0 auto;
    }
    
    .bonus-badge .badge-text {
        font-size: 0.6rem;
        line-height: 1.05;
        text-align: center;
    }
}