:root {
    --bg-dark: #080808;
    --bg-panel: #0d0d0d;
    --bg-panel-light: #121212;
    --accent: #FA1E4E;
    --text-main: #ffffff;
    --text-muted: #8a8a8a;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-tech);
    overflow-x: hidden;
    display: flex;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Premium Utilities */
.premium-btn {
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--text-main);
    text-align: center;
}

.premium-btn.primary {
    background: var(--accent);
    color: #fff;
    margin-right: 15px;
    box-shadow: 0 4px 20px rgba(250, 30, 78, 0.3);
}

.premium-btn.primary:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.premium-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-btn.ghost:hover {
    background: #fff;
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.premium-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    backdrop-filter: blur(5px);
}

.premium-card:hover {
    border-color: var(--accent);
    background: rgba(250, 30, 78, 0.03);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(250, 30, 78, 0.1);
}

.danger-text { color: var(--accent); }
.danger-bg { background-color: var(--accent) !important; color: #fff !important; }

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(250, 30, 78, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
    padding: 40px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 10px;
}

.logo img { 
    height: 100px; 
    filter: drop-shadow(0 0 15px rgba(250, 30, 78, 0.3));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.side-nav {
    display: flex;
    flex-direction: column;
}

.nav-link {
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link span {
    color: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 700;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    border-left: 2px solid var(--accent);
    background: linear-gradient(90deg, rgba(250, 30, 78, 0.08) 0%, transparent 100%);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-link:hover span, .nav-link.active span {
    color: var(--accent);
}

.sidebar-bottom {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-discord {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.btn-discord:hover { color: var(--accent); }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: #555; /* Default gray */
    border-radius: 50%;
}

.status-indicator.online .dot {
    background: #00ff88;
    animation: blink 2s infinite;
    box-shadow: 0 0 10px #00ff88;
}

.status-indicator.offline .dot {
    background: var(--accent);
    animation: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mobile-toggle {
    display: none;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

/* --- Mini Music Player --- */
.music-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    margin-top: 10px;
}

.music-player .music-info-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.music-player .music-info-toggle ion-icon {
    font-size: 1.6rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.music-player .music-info-toggle:hover ion-icon {
    color: #fff;
}

.music-player.playing .music-info-toggle ion-icon {
    color: var(--accent);
}

.music-track-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.music-artist {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.music-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ccc;
    text-transform: uppercase;
}

.music-player.playing .music-title {
    color: #fff;
}

.music-player.playing .music-artist {
    color: var(--accent);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vol-icon {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Custom range styling */
#volume-slider {
    -webkit-appearance: none;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    width: 15px;
    height: 15px;
}

.bar {
    width: 3px;
    background: var(--accent);
    height: 100%;
    transform-origin: bottom;
    transition: 0.3s;
    opacity: 0.3;
}

.music-control.playing .bar {
    opacity: 1;
    animation: bar-dance 1s ease-in-out infinite;
}

.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes bar-dance {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Main Content Wrapper */
.content-wrapper {
    flex: 1;
    margin-left: 250px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('bg.png') no-repeat center center/cover fixed;
}

.section {
    min-height: 100vh;
    padding: 100px 5%;
    position: relative;
    border-bottom: 1px solid #111;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dark-section {
    background: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #333;
    display: block;
    margin-bottom: -10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

/* Hero Section */
.hero-section {
    align-items: center;
}

.hero-bg {
    display: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Darker gradient on the left to anchor text */
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%),
                radial-gradient(circle at 20% 50%, rgba(250, 30, 78, 0.15) 0%, transparent 60%);
    z-index: 2;
}

.grid-overlay {
    display: none; /* Removed hacker effect */
}

.hero-container {
    z-index: 3;
}

.hero-widget.premium-discord-card {
    width: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.discord-body {
    text-align: center;
}

.discord-body .count {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.discord-body .label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #dfdfdf;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.discord-join-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.discord-join-btn:hover {
    background: #fff;
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Clean Hero Section Styles */
.hero-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Lore Intel Section */
.lore-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.lore-story {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.lore-story p {
    margin-bottom: 20px;
}

.lore-intro {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
}

.lore-highlight {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    margin: 30px 0;
    letter-spacing: 2px;
}

.lore-warning {
    border-left: 3px solid var(--accent);
    font-style: italic;
    color: #fff;
    background: rgba(250, 30, 78, 0.05);
    padding: 15px 20px;
}

.lore-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0 30px 15px;
    font-family: var(--font-tech);
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.lore-end {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    margin-top: 40px;
    text-transform: uppercase;
}

.stats-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-panel);
    border-left: 2px solid #333;
}

.stat-box ion-icon {
    font-size: 3rem;
    color: #555;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Core Systems / Features */
.sys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card-deco {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #222;
}

.sys-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.sys-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Rules Dashboard Styling */
.rules-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.rules-tabs {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-tab {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.rule-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.rule-tab.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 5px 15px rgba(250, 30, 78, 0.3);
}

.rules-content {
    position: relative;
    min-height: 400px;
}

.rules-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.rules-panel.active {
    display: block;
}

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

.rule-item {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.rule-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(250, 30, 78, 0.2);
    padding-bottom: 10px;
}

.rule-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #dfdfdf;
}

.rule-item b {
    color: #fff;
}

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

@media (max-width: 768px) {
    .rules-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        border-radius: 10px;
        padding: 10px;
    }
    .rule-tab {
        white-space: nowrap;
    }
}

/* Comms CTA */
.comms-panel {
    text-align: center;
    padding: 80px 40px;
    background: url('bg.png') no-repeat center center/cover;
    background-color: var(--bg-panel);
    background-blend-mode: overlay;
}

.comms-panel h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.comms-panel p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #000;
    padding: 30px 5%;
    text-align: center;
    font-size: 0.9rem;
    color: #444;
    border-top: 1px solid #111;
}

/* Animations */
.reveal-brutal {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0, 0.5, 0, 1);
}

.reveal-brutal.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .sidebar {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 20px;
        align-items: center;
        background: rgba(10, 10, 10, 0.95);
        border-right: none;
        border-bottom: 1px solid rgba(250, 30, 78, 0.2);
    }
    
    .logo {
        margin-bottom: 0;
        padding: 0;
        justify-content: flex-start;
    }
    
    .logo img {
        height: 50px;
    }

    .side-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 40px 0;
    }
    
    .side-nav.active { 
        left: 0; 
    }
    
    .nav-link {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .mobile-toggle { 
        display: block; 
        color: #fff;
        font-size: 2.5rem;
    }
    
    .sidebar-bottom { 
        display: none; 
    }
    
    .music-player {
        position: absolute;
        left: 80px;
        top: 50%;
        transform: translateY(-50%);
        border-top: none;
        margin-top: 0;
        padding: 8px 12px;
        gap: 10px;
    }

    .music-player .music-track-info,
    .music-player .volume-container {
        display: none;
    }
    .content-wrapper { margin-left: 0; }
    
    .section { 
        padding: 80px 5%;
        min-height: auto;
    }
    
    .section-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem !important;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .lore-grid { grid-template-columns: 1fr; }
    .sys-grid { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

/* --- Status Card & Pulse --- */
.status-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 30, 78, 0.3);
}

.status-pulse-container {
    position: relative;
    width: 20px;
    height: 20px;
}

.status-online .pulse-ring {
    border-color: #00ff88;
}

.status-online .pulse-dot {
    background-color: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status-offline .pulse-ring {
    border-color: var(--accent);
    animation: none;
}

.status-offline .pulse-dot {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

@keyframes status-pulse {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- FAQ Accordion --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-tech);
}

.faq-question ion-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(250, 30, 78, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
    opacity: 1;
}

.faq-item.active .faq-question ion-icon {
    transform: rotate(45deg);
}

/* --- Career Cards --- */
.careers-grid {
    padding: 20px 0;
}

.career-card {
    text-align: center;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.career-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}

.career-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Gallery Styles --- */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

/* --- Team Styles --- */
.team-grid {
    padding: 20px 0;
}

.team-card {
    text-align: center;
    padding: 50px 30px;
}

.team-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(250, 30, 78, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-avatar-wrapper {
    transform: scale(1.1);
    border-color: #fff;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.team-info .role {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- Social Hub --- */
.social-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon {
    font-size: 3rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

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

.social-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: #fff;
}

.social-card:hover .social-arrow {
    transform: translateX(5px);
    color: #fff;
}

/* Brand Specific Hovers */
.social-card.tiktok:hover {
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.2), 0 0 60px rgba(255, 0, 80, 0.1);
    border-color: #00f2ea;
}

.social-card.youtube:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.social-card.discord-social:hover {
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
}

/* --- Entreprises Styles --- */
.entreprise-category {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.category-title ion-icon {
    color: var(--accent);
    font-size: 1.8rem;
}

.entreprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.entreprise-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.entreprise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.entreprise-item ion-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.entreprise-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #dfdfdf;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .entreprise-grid {
        grid-template-columns: 1fr;
    }
    .entreprise-category {
        padding: 20px;
    }
    .category-title {
        font-size: 1.5rem;
    }
}

