/* ===== RESET & BASE - STYLE EPIC GAMES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ceketrum New Brand Identity - Orange & Fire */
    --primary-orange: #FF7700;
    --primary-orange-dark: #cc5f00;
    --primary-orange-light: #ff9233;
    --accent-cyan: #00D1FF;
    --accent-cyan-dark: #00a8cc;
    
    /* Dark Theme - Deep & Mysterious */
    --bg-dark: #050507;
    --bg-primary: #0A0A0B;
    --bg-secondary: #0F0F12;
    --bg-card: rgba(26, 26, 30, 0.4);
    --bg-elevated: rgba(32, 32, 40, 0.6);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B0;
    --text-muted: #626270;
    
    /* Glassmorphism Defaults */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(15px);
    
    /* Accent Colors */
    --accent-success: #10B981;
    --accent-warning: #F59E0B;
    --accent-error: #EF4444;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 10px 30px rgba(255, 119, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bg-dark);
}

/* Container */
.container-epic {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container-epic {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container-epic {
        padding: 0 15px;
    }
}

.main-content {
    padding: 6rem 0;
    min-height: 50vh;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 119, 0, 0.4));
}

.nav-logo h2 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.discord-link {
    color: var(--primary-orange);
}

.nav-link.discord-link:hover {
    color: var(--primary-orange-light);
}

/* Auth Container - Zone commune pour login et user menu */
.auth-container {
    position: relative;
    min-width: 200px; /* Taille minimale pour éviter le décalage */
    height: 48px; /* Hauteur fixe */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-login {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--bg-dark));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.btn-login.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* User Menu - Nouveau Design */
.user-menu-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.user-menu-wrapper.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.user-button:hover {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
}

.user-button .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.user-button .user-name {
    color: var(--text-primary);
}

.user-button .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 119, 0, 0.1);
    margin-bottom: 0.5rem;
}

.user-dropdown-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-dropdown-role {
    font-size: 0.875rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.user-dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item i,
.dropdown-item .icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    transform: translateX(4px);
}

/* Bouton Admin spécial */
.dropdown-item#adminButton {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(255, 119, 0, 0.2);
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dropdown-item#adminButton:hover {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.15) 0%, rgba(204, 95, 0, 0.15) 100%);
    border-color: var(--primary-orange);
    color: var(--primary-orange-light);
    transform: translateX(6px);
}

.dropdown-item#adminButton i {
    color: var(--primary-orange);
}

.dropdown-item.logout {
    margin-top: 0.5rem;
    color: var(--primary-orange);
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.dropdown-item.logout:hover {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange-light);
}

.dropdown-divider {
    border: none;
    height: 1px;
    background: rgba(255, 119, 0, 0.1);
    margin: 0.5rem 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION - EPIC STYLE ===== */
.hero-epic {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 119, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 209, 255, 0.05) 0%, transparent 40%),
        var(--bg-dark);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-content-epic {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    animation: fadeInDown 0.6s ease;
}

.hero-title-epic {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease;
}

.gradient-text-epic {
    background: linear-gradient(135deg, var(--primary-orange), #ff9e47, var(--accent-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle-epic {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.hero-buttons-epic {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn-epic {
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-epic-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-epic-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 119, 0, 0.4);
}

.btn-epic-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-epic-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.btn-epic-accent {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    border: none;
}

.btn-epic-accent:hover {
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVICES SHOWCASE ===== */
.services-showcase {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Services Carousel Container */
.services-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services-carousel-container {
        padding: 0 1rem;
    }
}

.services-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc((100% - 1.5rem) / 2.2);
    min-width: calc((100% - 1.5rem) / 2.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de flou sur la 4ème carte (partiellement visible) */
.carousel-item.blur-peek {
    filter: blur(4px);
    opacity: 0.3;
    transform: scale(0.9);
    pointer-events: none;
}

/* Boutons du carrousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 119, 0, 0.9);
    border: 1px solid rgba(255, 119, 0, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 119, 0, 0.5);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-item:nth-child(3) {
        filter: blur(3px);
        opacity: 0.4;
        transform: scale(0.95);
    }
    
    .carousel-item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-carousel-container {
        padding: 0 1.5rem;
    }
    
    .carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-item:nth-child(2),
    .carousel-item:nth-child(3),
    .carousel-item:nth-child(4) {
        filter: none;
        opacity: 1;
        transform: none;
        display: block;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.service-card-epic {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.service-card-epic:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-orange);
}

.service-card-epic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 119, 0, 0.1), transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card-epic:hover::before {
    opacity: 1;
}

.service-card-image {
    position: relative;
    width: 100%;
    height: clamp(180px, 30vw, 250px);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card-epic:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.6), rgba(0, 209, 255, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card-epic:hover .service-card-overlay {
    opacity: 1;
}

.service-card-icon {
    font-size: 4rem;
    color: white;
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-service:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

/* Service Card WIP (Work In Progress) */
.service-card-wip {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
}

.service-card-wip:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 119, 0, 0.1);
}

.service-card-wip .service-card-overlay {
    opacity: 0.3;
}

.service-card-wip:hover .service-card-overlay {
    opacity: 0.3;
}

.wip-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
    animation: pulse-wip 2s ease-in-out infinite;
}

@keyframes pulse-wip {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
    }
}

.wip-badge i {
    font-size: 1rem;
    animation: rotate-tools 3s linear infinite;
}

@keyframes rotate-tools {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-service-disabled {
    background: rgba(255, 119, 0, 0.2);
    color: var(--text-secondary);
    cursor: not-allowed;
    pointer-events: none;
}

.btn-service-disabled:hover {
    transform: none;
}

/* WIP Progress Bar */
.wip-progress {
    background: rgba(255, 119, 0, 0.05);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1.5rem 0;
}

.wip-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wip-progress-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.wip-progress-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wip-progress-date::before {
    content: '📅';
    font-size: 1rem;
}

.wip-progress-bar {
    height: 8px;
    background: rgba(255, 119, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.wip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #ff9e47, var(--accent-cyan));
    border-radius: 50px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.wip-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.wip-progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.wip-progress-percent {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1rem;
}

.wip-progress-remaining {
    color: var(--text-secondary);
}

/* ===== SECTION EPIC ===== */
.section-epic {
    padding: 6rem 0;
}

.modpacks-section {
    background: var(--bg-dark);
}

.logiciels-section {
    background: var(--bg-secondary);
}

.hebergement-section {
    background: var(--bg-dark);
}

.section-header-epic {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-epic {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-epic i {
    color: var(--primary-orange);
    filter: drop-shadow(0 0 8px rgba(255, 119, 0, 0.4));
}

.section-subtitle-epic {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== PAGE HEADER EPIC ===== */
.page-header-epic {
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-dark);
}

.page-header-epic .hero-background {
    opacity: 0.6;
}

.page-header-epic .hero-content-epic {
    max-width: 1000px;
}

.page-header-epic .page-title {
    font-size: 4.5rem;
    font-weight: 950;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-header-epic .page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Glass Card Epic */
.glass-card-epic {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.glass-card-epic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 0, 0.3), transparent);
}

.legal-content-epic {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content-epic h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 2.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-content-epic h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.legal-content-epic p {
    margin-bottom: 1.5rem;
}

.legal-content-epic ul {
    margin-bottom: 2rem;
    list-style: none;
    padding-left: 1rem;
}

.legal-content-epic ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content-epic ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 900;
}

.highlight-box-epic {
    background: rgba(255, 119, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

/* ===== MARKET SECTION ===== */
.market-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

@media (max-width: 480px) {
    .market-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.market-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
    display: block;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: var(--primary-orange);
}

.market-card.coming-soon {
    opacity: 0.85;
    cursor: default;
    position: relative;
}

.market-card.coming-soon:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.2);
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.95), rgba(204, 95, 0, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.market-card.coming-soon:hover .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-content {
    text-align: center;
    color: white;
}

.coming-soon-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coming-soon-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.coming-soon-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 119, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 1rem;
}

.coming-soon-status i {
    font-size: 1.2rem;
}

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

.market-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.market-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.market-card:hover .market-card-image img {
    transform: scale(1.05);
}

.market-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.market-card-badge.special {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
}

.market-card-badge.dev {
    background: #F59E0B;
}

.market-card-badge-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #10B981;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.market-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.9), rgba(99, 102, 241, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.market-card:hover .market-card-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.market-card-content {
    padding: 2rem;
}

.market-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.market-card-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.market-card-version {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.market-card-version.special {
    background: rgba(0, 209, 255, 0.1);
    color: var(--accent-cyan);
}

.market-card-version.dev {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.market-card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.market-card-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.info-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 119, 0, 0.1);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.market-card-platforms {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 119, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.platform-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-hero {
    padding: 10rem 0 4rem;
    background: var(--bg-primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-orange);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.special-badge, .dev-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.dev-badge {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.product-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-epic {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-epic.special {
    background: rgba(0, 209, 255, 0.1);
    color: var(--accent-cyan);
}

.badge-epic.dev {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.badge-epic.new {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.product-title.special {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-subtitle.special {
    color: var(--accent-cyan);
}

.product-version {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.product-version.special {
    color: var(--accent-cyan);
}

.product-version.dev {
    color: #F59E0B;
}

.product-description-long {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.product-features ul li i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.beta-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.beta-warning i {
    color: #F59E0B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stable-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.stable-badge i {
    color: #10B981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dev-status-box {
    background: rgba(255, 119, 0, 0.05);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-header i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.status-header h3 {
    font-size: 1.5rem;
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: rgba(255, 119, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease;
}

.progress-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.dev-milestones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.milestone.completed {
    color: var(--text-primary);
}

.milestone.completed i {
    color: #10B981;
}

.milestone.in-progress {
    color: var(--text-primary);
}

.milestone.in-progress i {
    color: #F59E0B;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.notify-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.notify-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notify-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-downloads {
    margin-bottom: 2rem;
}

.product-downloads h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.download-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-elevated);
    border: 2px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.download-btn-large:hover {
    border-color: var(--primary-orange);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.download-btn-large.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.download-btn-large.disabled:hover {
    transform: none;
    border-color: rgba(255, 119, 0, 0.2);
}

.download-btn-large.curseforge {
    border-color: rgba(242, 122, 57, 0.3);
}

.download-btn-large.curseforge:hover {
    border-color: #F27A39;
}

.download-btn-large.modrinth {
    border-color: rgba(0, 201, 137, 0.3);
}

.download-btn-large.modrinth:hover {
    border-color: #00C989;
}

.download-btn-large.prism {
    border-color: var(--glass-border);
}

.download-btn-large.prism:hover {
    border-color: var(--accent-cyan);
}

.download-btn-large.github {
    border-color: rgba(255, 255, 255, 0.1);
}

.download-btn-large.github:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 119, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.download-btn-large.curseforge .download-icon {
    background: rgba(242, 122, 57, 0.1);
    color: #F27A39;
}

.download-btn-large.modrinth .download-icon {
    background: rgba(0, 201, 137, 0.1);
    color: #00C989;
}

.download-btn-large.prism .download-icon {
    background: rgba(0, 209, 255, 0.1);
    color: var(--accent-cyan);
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.download-platform {
    font-size: 1.2rem;
    font-weight: 700;
}

.download-size {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-manifest {
    text-align: center;
}

.manifest-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.manifest-btn:hover {
    background: rgba(255, 119, 0, 0.2);
}

/* ===== PRODUCT TABS ===== */
.product-info-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.product-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 119, 0, 0.1);
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.requirement-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.requirement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-top: 2rem;
}

.warning-box i {
    color: #F59E0B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.changelog {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.changelog-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-orange);
}

.changelog-item.stable {
    border-left: 4px solid #10B981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}

.changelog-item.stable .changelog-version {
    color: #10B981;
}

.changelog-version {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.changelog-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.changelog-item ul {
    list-style: none;
}

.changelog-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.changelog-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.support-content {
    text-align: center;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.support-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Detailed */
.features-detailed h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-detailed-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: var(--transition-normal);
}

.feature-detailed-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.feature-detailed-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-detailed-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-detailed-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Roadmap */
.roadmap h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 119, 0, 0.2);
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
}

.roadmap-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 3px solid rgba(255, 119, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: #10B981;
    border-color: #10B981;
}

.roadmap-item.in-progress .roadmap-marker {
    background: #F59E0B;
    border-color: #F59E0B;
    animation: pulse 2s infinite;
}

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

.roadmap-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.roadmap-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.roadmap-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.roadmap-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.info-card {
    background: var(--bg-card);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 119, 0, 0.1);
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== HOSTING SECTIONS ===== */
.hosting-features-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.hosting-feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: var(--transition-normal);
    text-align: center;
}

.hosting-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.hosting-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hosting-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.feature-list li i {
    color: #10B981;
}

.hosting-process-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
}

.hosting-specs-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.hosting-plan-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 2px solid rgba(255, 119, 0, 0.1);
    transition: var(--transition-normal);
    position: relative;
}

.hosting-plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.hosting-plan-card.featured {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 119, 0, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.plan-feature i {
    color: #10B981;
    font-size: 1.2rem;
}

.hosting-requirements-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.requirements-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.requirements-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.requirements-box h3 i {
    color: var(--primary-orange);
}

.requirements-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.requirements-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.requirements-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.requirements-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

.requirements-box .note {
    background: rgba(255, 119, 0, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-orange);
    margin-top: 1.5rem;
}

.hosting-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.hosting-cta {
    text-align: center;
    padding: 3rem;
}

.hosting-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hosting-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons-hosting {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hosting-faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4 i {
    color: var(--primary-orange);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== DISCORD WIDGET ===== */
.discord-widget-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.discord-widget-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.discord-widget-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.discord-widget-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.discord-widget-embed iframe {
    border-radius: var(--radius-lg);
}

/* Discord CTA Card */
.discord-cta-card {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    padding: 4rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.discord-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: rotate-bg 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.discord-cta-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    flex-shrink: 0;
}

.discord-cta-content {
    flex: 1;
}

.discord-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.discord-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
}

.discord-feature i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Discord CTA Responsive */
@media (max-width: 768px) {
    .discord-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .discord-cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .discord-cta-content h3 {
        font-size: 1.8rem;
    }

    .discord-cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .discord-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .discord-feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .discord-cta-card {
        padding: 2rem 1rem;
    }

    .discord-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .discord-cta-content h3 {
        font-size: 1.5rem;
    }

    .discord-cta-content p {
        font-size: 0.9rem;
    }

    .discord-feature {
        font-size: 0.9rem;
    }

    .discord-feature i {
        font-size: 1rem;
    }
}

/* ===== FOOTER EPIC ===== */
.footer-epic {
    background: var(--bg-dark);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content-epic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section-epic h3,
.footer-section-epic h4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-section-epic p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-section-epic ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section-epic ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
    display: inline-block;
}

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

.social-links-epic a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.social-links-epic a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.4);
}

.footer-bottom-epic {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 119, 0, 0.1);
    color: var(--text-muted);
}

/* ===== SOFTWARE FEATURED ===== */
.software-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 119, 0, 0.1);
}

.software-image {
    position: relative;
    overflow: hidden;
}

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

.software-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.software-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 184, 16, 0.1);
    color: #EFB810;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.software-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.software-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.software-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-success);
    font-size: 1.2rem;
}

.software-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.software-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 119, 0, 0.1);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title-epic {
        font-size: 4rem;
    }
    
    .software-featured {
        grid-template-columns: 1fr;
    }
    
    .discord-widget-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .discord-widget-embed {
        margin: 0 auto;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content-epic {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Aligned with adjusted nav-container height */
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title-epic {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .page-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        flex-direction: column;
    }
    
    .product-tabs {
        overflow-x: auto;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .container-epic {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .btn-epic {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons-epic {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .software-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content-epic {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
}

/* Attack Types Grid */
.attack-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.attack-type-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 119, 0, 0.1);
    text-align: center;
    transition: var(--transition-normal);
}

.attack-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
    border-color: var(--primary-orange);
}

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

.attack-type-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.attack-type-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Install Command Block */
.install-command {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 119, 0, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 119, 0, 0.2);
}

.install-command h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-block {
    position: relative;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
}

.code-block code {
    color: #10B981;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 119, 0, 0.2);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--primary-orange);
    color: white;
}

/* Usage Guide */
.usage-guide {
    max-width: 900px;
}

.usage-section {
    margin-bottom: 2rem;
}

.usage-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Changelog */
.changelog {
    max-width: 800px;
}

.changelog-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-orange);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.version-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
}

.changelog-header .date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.changelog-item ul {
    list-style: none;
    padding: 0;
}

.changelog-item li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.community-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-orange);
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.community-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.community-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Download buttons for GitHub */
.download-btn-large.github {
    background: linear-gradient(135deg, #24292e, #1a1e22);
}

.download-btn-large.github:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(36, 41, 46, 0.3);
}

.download-btn-large.source {
    background: linear-gradient(135deg, #0969DA, #0550ae);
}

.download-btn-large.source:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(9, 105, 218, 0.3);
}

/* Badge styles */
.product-badge.opensource {
    background: linear-gradient(135deg, #10B981, #059669);
}

.market-card-badge.stable {
    background: #10B981;
}

/* ===== FAQ & LEGAL PAGES ===== */
.faq-section, .legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 119, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform var(--transition-normal);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer-content code {
    background: rgba(255, 119, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--accent-cyan);
}

.faq-search {
    margin-bottom: 2rem;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
}

.legal-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-section a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.highlight-box {
    background: rgba(255, 119, 0, 0.1);
    border-left: 4px solid var(--primary-orange);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    overflow-x: auto;
    display: block;
}

.data-table th, .data-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid rgba(255, 119, 0, 0.2);
    min-width: 150px;
}

.data-table th {
    background: rgba(255, 119, 0, 0.1);
    color: var(--primary-orange);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
}
/* ===== TICKET SYSTEM STYLES (User & Admin) ===== */
.badge-open { background: rgba(59, 130, 246, 0.2); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-in_progress { background: rgba(245, 158, 11, 0.2); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-resolved { background: rgba(16, 185, 129, 0.2); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-closed { background: rgba(107, 114, 128, 0.2); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.3); }

/* Chat-specific styles if needed outside tickets.html */
.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    position: relative;
    font-size: 0.95rem;
}

.message-user {
    align-self: flex-end;
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.2);
}

.message-admin {
    align-self: flex-start;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.2);
}

/* Modals Admin override for tickets */
#adminTicketModal .modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-orange);
    box-shadow: 0 0 50px rgba(255, 119, 0, 0.1);
}
