:root {
    --color-dark: #0a0a0f;
    --color-dark-accent: #1a1a2e;
    --color-light: #FFFFFF;
    --color-grey: #a0a0b8;
    --color-orange: #FF8C00;
    --color-orange-dark: #FF6B00;
    --color-orange-light: #FFA500;
    --color-orange-glow: #FF8C00;
    --color-orange-deep: #FF6B00;
    --color-purple: #FF8C00;
    --color-purple-dark: #FF6B00;
    --color-purple-light: #FFA500;
    --color-blue: #FF8C00;
    --color-blue-dark: #FF6B00;
    --color-accent: #FF8C00;
    --color-accent-hover: #FFA500;

    /* Typography */
    --font-family-base: 'Poppins', 'Inter', system-ui, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Container */
    --container-max-width: 1400px;
    --container-padding: 24px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
}

body {
    background: #0a0a0f;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--color-light);
    font-family: var(--font-family-base);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Effet étoiles en arrière-plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 33% 60%, white, transparent),
        radial-gradient(1px 1px at 55% 80%, white, transparent);
    background-repeat: repeat;
    background-size: 200% 200%;
    opacity: 0.3;
    animation: stars 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

a {
    color: var(--color-purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-purple);
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Full-width section utilities */
.full-width-section {
    width: 100%;
    padding: var(--spacing-xl) 0;
}

.full-width-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Grid utilities */
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 1200px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .grid-4-cols {
        grid-template-columns: 1fr;
    }
}

/* Modern card styles */
.card-modern {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modern:hover {
    transform: translateY(-6px);
    border-color: var(--color-orange);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
}

/* Orange modern button */
.btn-orange-modern {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.35);
}

.btn-orange-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
}

main {
    position: relative;
    z-index: 1;
}

/* Header */
.main-header {
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    left: 0;
    right: 0;
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.site-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.site-title .highlight {
    color: var(--color-purple);
    -webkit-text-fill-color: var(--color-purple);
}

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

.main-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-grey);
    position: relative;
    padding: 0.5rem 0.25rem;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--color-light);
}

.cart-badge {
    display: inline-block;
    background: var(--color-orange-light);
    color: #1E1E1E;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

.cart-link-header {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-link {
    display: inline-block;
    background: rgba(255, 140, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.4);
    color: var(--color-orange-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.cart-link:hover {
    background: rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
}

.header-cart {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 101;
}

.header-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: var(--color-orange-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.header-cart-link:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.header-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange-light);
    color: #1E1E1E;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1;
}

.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-blue));
}

/* Account Dropdown */
.discord-online-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.discord-online-counter:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

.discord-online-counter .radar-icon {
    width: 14px;
    height: 14px;
    color: #22C55E;
    animation: radarPulse 2s ease-in-out infinite;
}

.discord-online-counter .online-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #22C55E;
    letter-spacing: 0.5px;
}

@keyframes radarPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.account-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.account-btn {
    background: none;
    border: none;
    color: var(--color-grey);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-family-base);
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    border-radius: 8px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.account-btn:hover {
    background: rgba(255, 140, 0, 0.1);
}

.account-btn:hover {
    color: var(--color-light);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.account-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--color-dark-accent);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--color-grey);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-light);
}

/* Wallet Link in Dropdown */
.wallet-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.08)) !important;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2) !important;
    padding: 14px 20px !important;
}

.wallet-link:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(22, 163, 74, 0.18)) !important;
}

.wallet-label {
    color: var(--color-grey);
    font-size: 0.9rem;
    font-weight: 500;
}

.wallet-balance {
    color: #22c55e !important;
    font-weight: 700;
    font-size: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    color: var(--color-grey);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.language-btn:hover {
    color: var(--color-light);
    background: rgba(255, 255, 255, 0.08);
}

.language-btn .lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.language-btn .lang-code {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1001;
}

.language-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.15s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--color-grey);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-light);
}

.lang-option.active {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
}

.lang-option.active::after {
    content: '';
    margin-left: auto;
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
}

.lang-option .lang-flag {
    font-size: 1rem;
}

.account-link {
    color: var(--color-purple) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-orange-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Section */
.guides-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-dark-accent);
    padding-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
    color: var(--color-light);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-blue) 100%);
}

/* Guides List */
.guides-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-dark-accent);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.guide-item:hover {
    background: #2a2a2a;
    border-color: var(--color-purple);
}

.guide-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-grey);
}

.guide-title {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.guide-title a {
    color: var(--color-light);
    font-weight: 600;
}
.guide-title a:hover {
    color: var(--color-purple-light);
}

.guide-meta {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin: 0;
}

.guide-meta .author {
    font-weight: 600;
}

.guide-stats, .guide-last-post {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.guide-stats span {
    display: block;
}

.guide-last-post {
    text-align: left;
    min-width: 180px;
}

.guide-last-post p {
    margin: 0;
}


/* Footer */
.main-footer {
    padding: 2rem 4rem;
    margin-top: 0;
    color: var(--color-grey);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    min-height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
}

/* Auth Pages */
.auth-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-dark-accent);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-light);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: var(--color-dark-accent);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    color: var(--color-light);
    font-family: var(--font-family-base);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-grey);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-orange-light);
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--color-orange-light);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-orange);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-grey);
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--color-light);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-grey);
}

.auth-link a {
    color: var(--color-purple);
    font-weight: 600;
}

.auth-link a:hover {
    color: var(--color-purple-light);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-purple);
    color: var(--color-purple);
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--color-purple-light);
    color: var(--color-purple-light);
}

/* Page Headers */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

/* Homepage Hero */
.hero-section {
    padding: 3rem 0 2rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-purple-light) 60%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
}

.hero-title span {
    -webkit-text-fill-color: var(--color-purple);
    color: var(--color-purple);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-grey);
    margin: 0 0 1.75rem 0;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-ghost {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: var(--color-orange-light);
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 140, 0, 0.16);
    border-color: rgba(255, 140, 0, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.15);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-stat {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-3px);
    border-color: var(--color-purple);
    box-shadow: 0 8px 22px rgba(255, 140, 0, 0.18);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-purple-light);
    margin: 0 0 0.25rem 0;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--color-grey);
    font-weight: 600;
}

.hero-right .hero-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-card-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 0 1rem 0;
    filter: drop-shadow(0 6px 20px rgba(255, 140, 0, 0.2));
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.hero-card-list li {
    color: var(--color-grey);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
}

.hero-card-list li:last-child {
    border-bottom: none;
}

.hero-card-cta {
    display: inline-block;
    color: var(--color-purple);
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.hero-card-cta:hover {
    color: var(--color-purple-light);
    transform: translateX(2px);
}

/* Feature Pills Row */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 2rem 0 0 0;
}

.feature-pill {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 0.9rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    color: var(--color-light);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-2px);
    border-color: var(--color-purple);
    box-shadow: 0 10px 24px rgba(255, 140, 0, 0.18);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.feature-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
}

.feature-text small {
    color: var(--color-grey);
    font-size: 0.9rem;
}

.feature-arrow {
    color: var(--color-purple-light);
    font-weight: 800;
    font-size: 1.1rem;
}

.welcome-section {
    text-align: center;
    padding: 4rem 2rem;
}

.welcome-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-purple-light) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: var(--color-grey);
    margin-bottom: 3rem;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.welcome-user {
    margin-bottom: 4rem;
}

.welcome-user p {
    font-size: 1.2rem;
    color: var(--color-light);
}

.welcome-user strong {
    color: var(--color-purple-light);
    font-size: 1.3rem;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-purple);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-purple-light);
}

.feature-card p {
    color: var(--color-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--color-purple-light);
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-purple);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-purple-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-grey);
    font-weight: 600;
}

/* Members Page */
.members-upgrade {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    margin-bottom: 3rem;
}

.members-upgrade h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.members-upgrade > p {
    color: var(--color-grey);
    margin-bottom: 2rem;
}

.roles-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.role-card {
    background: var(--color-dark-accent);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--color-dark-accent);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.role-card.featured {
    border-color: var(--color-purple);
    position: relative;
}

.role-card.premium {
    border-color: #FFD700;
}

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

.role-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.role-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-purple-light);
    margin-bottom: 1.5rem;
}

.role-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.role-features li {
    padding: 0.5rem 0;
    color: var(--color-grey);
    position: relative;
    padding-left: 1.5rem;
}

.role-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
}

.members-list-section {
    margin-top: 3rem;
}

.members-list-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.members-table {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    overflow-x: auto;
}

.members-table table {
    width: 100%;
    border-collapse: collapse;
}

.members-table thead {
    background: var(--color-dark-accent);
}

.members-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 800;
    color: var(--color-light);
    border-bottom: 2px solid var(--color-purple);
}

.members-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    color: var(--color-grey);
}

.members-table tbody tr:hover {
    background: rgba(255, 140, 0, 0.05);
}

.member-avatar-cell {
    width: 80px;
}

.member-avatar-small {
    width: 50px;
    height: 50px;
}

.avatar-with-background-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-purple);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-with-background-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.avatar-initial-small {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.avatar-placeholder-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    border: 2px solid #FF8C00;
}

.role-badge {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Styles pour les boutons admin */
.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-warning {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: #FFFFFF;
    border: none;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    transform: translateY(-2px);
}

.admin-badge {
    color: #FFA500;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Styles footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-left p a {
    color: var(--color-grey);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    white-space: nowrap;
}

.footer-left p a:hover {
    color: var(--color-orange-light);
}

.footer-right {
    display: flex;
    align-items: center;
}

.discord-online-counter-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.discord-online-counter-footer:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

.discord-online-counter-footer .radar-icon {
    width: 14px;
    height: 14px;
    color: #22C55E;
    animation: radarPulse 2s ease-in-out infinite;
}

.discord-online-counter-footer .online-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #22C55E;
    letter-spacing: 0.5px;
}

.discord-online-counter-footer .discord-logo {
    width: 16px;
    height: 16px;
    color: #5865F2;
    flex-shrink: 0;
}

.discord-online-counter-footer .discord-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #A2B4D6;
    margin-left: 0.25rem;
    letter-spacing: 0.3px;
}

/* Styles pour les alertes */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #EF4444;
    color: #EF4444;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22C55E;
    color: #22C55E;
}

/* Support Page */
.support-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.support-discord {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--color-dark-accent);
    text-align: center;
}

.support-discord h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-purple-light);
}

.support-discord p {
    color: var(--color-grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
}

.discord-btn:hover {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    transform: translateY(-2px);
}

.support-chat {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.support-chat h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.support-chat p {
    color: var(--color-grey);
    margin-bottom: 1.5rem;
}

#tawkchat-widget-container {
    margin-top: 1rem;
    flex: 1;
    min-height: 400px;
    position: relative;
}

#tawkchat-widget {
    width: 100%;
    height: 100%;
}

/* Style pour le widget Tawk.to intégré */
#tawkchat-widget iframe {
    width: 100% !important;
    height: 400px !important;
    border: none;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
    .support-container {
        grid-template-columns: 1fr;
    }
}

/* Profile Page */
.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.profile-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    width: 100%;
    max-width: 100%;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-purple);
}

.avatar-with-background {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--color-purple);
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.avatar-initial {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-light);
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-light);
    margin: 0 auto;
    border: 3px solid #FF8C00;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Purchases Page */
.purchases-container {
    max-width: 1000px;
    margin: 0 auto;
}

.purchases-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.purchase-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 0, 0.4);
}

.purchase-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.5);
    flex-shrink: 0;
}

.purchase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purchase-info {
    flex: 1;
}

.purchase-info h3 {
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.purchase-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.purchase-subscription {
    color: var(--color-orange-light);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.purchase-date {
    color: var(--color-grey);
    font-size: 0.9rem;
    margin: 0;
}

.purchase-expiry {
    color: var(--color-grey);
    font-size: 0.9rem;
    margin: 0;
}

.purchase-expiry .expired {
    color: #EF4444;
    font-weight: 600;
}

.license-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.license-section strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.license-key-display {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--color-orange-light);
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--color-orange-light);
    font-weight: 700;
    word-break: break-all;
}

.purchase-amount-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.purchase-amount {
    color: var(--color-orange-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.purchase-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.purchase-status.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.purchase-status.status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.purchase-status.status-failed {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.purchase-status.status-expired {
    background: rgba(156, 163, 175, 0.2);
    color: #9CA3AF;
    border: 1px solid rgba(156, 163, 175, 0.4);
}

/* Ancien style pour compatibilité - à supprimer si plus utilisé */
.purchase-amount-old {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-purple-light);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-dark-accent);
}

/* Settings Page */
.settings-container {
    max-width: 900px;
    margin: 0 auto;
}

.settings-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    margin-bottom: 2rem;
}

.settings-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-dark-accent);
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-display {
    color: var(--color-light);
}

.info-display p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.info-display strong {
    color: var(--color-purple-light);
}

.info-note {
    margin-top: 1rem;
    color: var(--color-grey);
    font-size: 0.9rem;
}

.discord-status {
    margin-top: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.discord-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 8px;
    border-left: 4px solid #5865F2;
}

.discord-info p {
    margin: 0.5rem 0;
}

.discord-info code {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Forum, Shop, Members, Support Pages */
.forum-container,
.shop-container,
.members-container,
.support-container {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-dark-accent);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shop Listing */
.shop-filters {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    margin-bottom: 2rem;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-bar {
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-family-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-orange-light);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
    border: none;
    border-radius: 8px;
    color: #1E1E1E;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--color-grey);
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-input,
.filter-select {
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-family-base);
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--color-orange-light);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: end;
}

.product-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--color-orange-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    direction: rtl;
}

.products-grid > * {
    direction: ltr;
}

.product-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.45);
    box-shadow: 0 10px 28px rgba(255, 140, 0, 0.18);
}

.product-card.vip-product {
    border: 2px solid rgba(255, 165, 0, 0.3);
    background: rgba(26, 26, 46, 0.8);
}

.product-card.vip-product:hover {
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.25);
}

.product-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.5);
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content h3 {
    color: #FFFFFF;
    font-size: 1.35rem;
    margin: 0 0 0.25rem 0;
    font-weight: 800;
}

.product-game {
    color: var(--color-orange-light);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.product-description {
    color: var(--color-grey);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    min-height: 56px;
}

.product-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 140, 0, 0.25);
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
}

.price-option.featured {
    border-color: var(--color-orange-light);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.1) inset;
}

.price-label {
    color: var(--color-grey);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-amount {
    color: var(--color-orange-light);
    font-size: 0.95rem;
    font-weight: 800;
}

.product-actions {
    margin-top: 1rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-grey);
}
.auth-prompt {
    text-align: center;
}

.auth-prompt h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.auth-prompt p {
    color: var(--color-grey);
    margin-bottom: 2rem;
}

/* Protection contre la sélection et l'inspection */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* La sélection de texte est maintenant autorisée */
::selection {
    background: rgba(88, 101, 242, 0.3);
    color: #FFFFFF;
}

::-moz-selection {
    background: rgba(88, 101, 242, 0.3);
    color: #FFFFFF;
}

/* ============================================
   VIP Pages
   ============================================ */
.vip-hero {
    padding: 3rem 0 2rem 0;
    text-align: center;
}

.vip-badge-large {
    display: inline-block;
    color: #000000;
    padding: 14px 28px;
    border-radius: 28px;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.35);
    margin-bottom: 1rem;
}

.vip-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0.5rem 0 0.5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-purple-light) 60%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 24px rgba(255, 140, 0, 0.18);
}

.vip-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.vip-section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Timeline advantages */
.vip-why {
    padding: 2rem 0;
}

.vip-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.vip-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-purple-light), var(--color-blue));
    border-radius: 2px;
    opacity: 0.9;
}

.vip-timeline-item {
    position: relative;
    margin-bottom: 1.75rem;
}

.vip-timeline-dot {
    position: absolute;
    left: -0.25rem;
    top: 0.25rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple), var(--color-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0F;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.vip-timeline-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-light);
}

.vip-timeline-text {
    color: var(--color-grey);
    line-height: 1.7;
    margin: 0;
}

/* Pricing */
.vip-pricing {
    padding: 2rem 0 3rem 0;
}

.vip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: center;
}

@media (max-width: 1100px) {
    .vip-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vip-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.subscription-option {
    background: rgba(9, 15, 33, 0.9);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 140, 0, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    position: relative;
}

.subscription-option.is-saving {
    border-color: rgba(159, 235, 243, 0.4);
    box-shadow: 0 0 24px rgba(159, 235, 243, 0.18);
}

.subscription-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(159, 235, 243, 0.25);
    border-color: rgba(159, 235, 243, 0.6);
}

.subscription-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.subscription-option:has(input[type="radio"]:checked) {
    border-color: rgba(159, 235, 243, 0.8);
    background: rgba(159, 235, 243, 0.08);
    box-shadow: 0 0 36px rgba(159, 235, 243, 0.35);
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #9FEBF3, #7867E6);
    color: #000;
    padding: 6px 12px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(159, 235, 243, 0.45);
    z-index: 1;
}

.option-eyebrow {
    color: #9FEBF3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.option-title {
    color: #F9FBFF;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.option-price {
    color: #9FEBF3;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.option-per {
    color: #8198B0;
    font-size: 14px;
    margin-bottom: 0.75rem;
}

.option-savings {
    color: #9FEBF3;
    font-size: 12px;
    background: rgba(159, 235, 243, 0.12);
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.option-meta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    color: #A2B4D6;
    font-size: 12px;
}

.vip-cta {
    text-align: center;
    margin-top: 0.5rem;
}

.vip-notice {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vip-notice.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #FCA5A5;
}

.vip-notice.info {
    background: rgba(159, 235, 243, 0.1);
    border: 1px solid rgba(159, 235, 243, 0.3);
    color: #9FEBF3;
}

/* VIP+ glow animation */
@keyframes vipPlusGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(255, 215, 0, 0.7); }
}

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
    
    .header-content {
        padding: 0 2rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .welcome-section h1 {
        font-size: 3rem;
    }
    
    .welcome-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .welcome-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .roles-selection {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .members-table {
        overflow-x: auto;
    }
    
    .support-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile et Tablette (jusqu'à 768px) */
@media (max-width: 768px) {
    /* Container et espacement général */
    .container {
        padding: 1rem;
    }
    
    /* Header */
    .main-header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        min-height: 60px;
        position: relative;
        width: 100%;
    }
    
    .logo-container {
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
        position: relative;
        z-index: 103;
    }
    
    .logo {
        height: 40px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .site-title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 103;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .discord-online-counter {
        margin: 0.5rem 1.5rem;
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 101;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav .nav-link {
        text-align: left;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
        font-size: 1.1rem;
        display: block;
    }
    
    .main-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .account-dropdown {
        width: 100%;
        margin-top: 1rem;
    }
    
    .account-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        right: auto;
        left: auto;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 140, 0, 0.1);
        border-radius: 0;
        background: rgba(26, 26, 46, 0.5);
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 140, 0, 0.05);
    }
    
    /* Language Selector Mobile */
    .language-selector {
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .language-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 0;
    }
    
    .language-dropdown {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 140, 0, 0.1);
        border-radius: 0;
        background: rgba(26, 26, 46, 0.5);
    }
    
    .lang-option {
        padding: 1rem 1.5rem 1rem 2.5rem;
        border-bottom: 1px solid rgba(255, 140, 0, 0.05);
    }
    
    /* Empêcher le scroll du body quand le menu mobile est ouvert */
    body.menu-open {
        overflow: hidden;
    }
    
    .header-cart {
        position: static;
        margin: 0;
        order: -1;
    }
    
    .header-cart-link {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
    
    .cart-link-header {
        width: 100%;
    }
    
    /* Page Headers */
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Welcome Section */
    .welcome-section {
        padding: 2rem 1rem;
    }
    
    .welcome-section h1 {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .welcome-actions .btn {
        width: 100%;
        max-width: 250px;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .welcome-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Stat Cards */
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .guides-section,
    .members-upgrade,
    .settings-section {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Guide Items */
    .guide-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .guide-stats,
    .guide-last-post {
        text-align: left;
        min-width: auto;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Auth Pages */
    .auth-container {
        margin: 2rem auto;
        padding: 1.5rem;
    }
    
    .auth-container h2 {
        font-size: 1.5rem;
    }
    
    .auth-buttons {
        flex-direction: column;
    }
    
    .auth-buttons .btn {
        width: 100%;
    }
    
    /* Members Page */
    .roles-selection {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .role-card {
        padding: 1.5rem;
    }
    
    .role-card h3 {
        font-size: 1.5rem;
    }
    
    .role-price {
        font-size: 1.5rem;
    }
    
    .members-table {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .members-table table {
        min-width: 600px;
    }
    
    .members-table th,
    .members-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .main-footer {
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
        max-height: none;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left p {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-left p a {
        margin-left: 0;
    }
    
    .discord-online-counter-footer {
        margin: 0 auto;
    }
    
    /* Support Page */
    .support-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-discord,
    .support-chat {
        padding: 1.5rem;
    }
    
    .support-chat h2 {
        font-size: 1.5rem;
    }
    
    /* Profile Page */
    .profile-container {
        padding: 0;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-avatar img,
    .avatar-with-background,
    .avatar-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .avatar-initial {
        font-size: 3rem;
    }
    
    /* Purchases Page */
    .purchases-container {
        padding: 0;
    }
    
    .purchase-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .purchase-image {
        width: 100%;
        height: 200px;
    }
    
    .purchase-amount-status {
        align-items: flex-start;
        width: 100%;
    }
    
    /* Settings Page */
    .settings-container {
        padding: 0;
    }
    
    .settings-section {
        padding: 1.5rem;
    }
    
    .settings-section h2 {
        font-size: 1.3rem;
    }
    
    /* Forum */
    .forum-search {
        margin: 1.5rem 0;
    }
    
    .search-form {
        flex-direction: column;
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .search-input {
        width: 100%;
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .search-form .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .category-item {
        padding: 1rem;
    }
    
    .category-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .category-footer .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Shop/Boutique */
    .shop-filters {
        padding: 1.5rem;
    }
    
    .filters-form {
        gap: 1rem;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar .search-input {
        width: 100%;
    }
    
    .search-bar .search-btn {
        width: 100%;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-actions .btn {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    /* Product Detail Page */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-content h1 {
        font-size: 2rem;
    }
    
    .product-description-full {
        padding: 1.5rem;
    }
    
    .product-pricing-options {
        padding: 1.5rem;
    }
    
    .pricing-option-content {
        padding: 1rem;
    }
    
    .pricing-label {
        font-size: 1rem;
    }
    
    .pricing-price {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Mobile Small (jusqu'à 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
    }
    
    .header-content {
        padding: 0 0.75rem;
    }
    
    .logo {
        height: 40px;
        margin-right: 10px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .auth-container {
        margin: 1rem auto;
        padding: 1rem;
    }
    
    .feature-card,
    .stat-card,
    .role-card,
    .profile-card,
    .settings-section {
        padding: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .shop-filters {
        padding: 1rem;
    }
    
    .members-table table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    .members-table th,
    .members-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .purchase-item {
        padding: 1rem;
    }
    
    .purchase-image {
        height: 150px;
    }
    
    .profile-avatar img,
    .avatar-with-background,
    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .avatar-initial {
        font-size: 2.5rem;
    }
    
    .avatar-initial-small {
        font-size: 1.2rem;
    }
    
    .avatar-placeholder-small,
    .avatar-with-background-small {
        width: 40px;
        height: 40px;
    }
}

/* Large Desktop (plus de 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .header-content {
        max-width: 1400px;
    }
}

/* Orientation Landscape pour tablettes */
@media (max-width: 1024px) and (orientation: landscape) {
    .welcome-section {
        padding: 2rem;
    }
    
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive additions for new homepage hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .features-row {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .main-nav,
    .account-dropdown,
    .header-cart {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
/* ============================================
   VIP Pages - Black/Orange Theme (Matching Mockup)
   ============================================ */

/* Hero Section */
.vip-hero {
    text-align: center;
    padding: 3rem 0 4rem;
    position: relative;
}

.vip-badge-large {
    display: inline-block;
    border: 1px solid rgba(255, 165, 0, 0.4);
    color: #FFA500;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 165, 0, 0.05);
}

.vip-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.vip-subtitle {
    font-size: 1rem;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Title */
.vip-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
}

.vip-section-title span {
    color: #FFA500;
}

/* Pricing Section */
.vip-pricing {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-pricing .vip-section-title {
    margin-bottom: 1rem;
}

.vip-pricing .vip-subtitle {
    margin-bottom: 3rem;
}

.vip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: center;
}

.subscription-option {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.subscription-option input[type="radio"] {
    display: none;
}

.subscription-option:hover {
    border-color: #555;
    transform: translateY(-4px);
}

.subscription-option.is-saving {
    border-color: #3B82F6;
}

.subscription-option.is-saving:nth-child(2) {
    border-color: #3B82F6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.subscription-option.is-saving:nth-child(2):hover {
    transform: scale(1.05) translateY(-4px);
}

.subscription-option.is-saving:nth-child(3) {
    border-color: #8B5CF6;
}

.discount-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

.subscription-option.is-saving:nth-child(2) .discount-badge {
    background: #3B82F6;
}

.subscription-option.is-saving:nth-child(3) .discount-badge {
    background: #8B5CF6;
}

.option-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6B7280;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.option-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.option-per {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.option-savings {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.subscription-option.is-saving:nth-child(2) .option-savings {
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.subscription-option.is-saving:nth-child(3) .option-savings {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.option-meta {
    color: #6B7280;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: auto;
    padding-top: 1rem;
}

/* VIP CTA */
.vip-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.vip-cta .btn-primary {
    background: #FFA500;
    color: #000000;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-cta .btn-primary:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.vip-cta .btn-secondary {
    background: #374151;
    color: #9CA3AF;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: not-allowed;
}

/* VIP Notice */
.vip-notice {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.vip-notice.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.vip-notice.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

.vip-notice.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

/* Stats Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vip-stat-animate {
    animation: countUp 0.6s ease-out forwards;
}

.vip-stat-animate:nth-child(1) {
    animation-delay: 0.1s;
    opacity: 0;
}

.vip-stat-animate:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0;
}

.vip-stat-animate:nth-child(3) {
    animation-delay: 0.5s;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .vip-pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .subscription-option.is-saving:nth-child(2) {
        transform: none;
    }
    .subscription-option.is-saving:nth-child(2):hover {
        transform: translateY(-4px);
    }
    .vip-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .vip-title {
        font-size: 2.5rem;
    }
    .option-price {
        font-size: 2rem;
    }
    
    /* Stats responsive */
    section[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

