/* Ruach LET Font */
@font-face {
    font-family: 'Ruach LET';
    src: url('../fonts/Ruach LET.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* SF Pro Display Font Family */
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
}

:root {
    --bg-body: #050505;
    --bg-panel: rgba(30, 30, 35, 0.95);
    --bg-input: rgba(20, 20, 25, 0.9);
    
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-gold: #ffc857;
    
    --gold: #d4af37;
    --gold-glow: #ffae00;
    --red-metin: #8a0a0a;
    --red-glow: #ff1a1a;
    
    --border-gold: linear-gradient(to bottom, #d4af37, #8a6e2f);
    --border-frame: 1px solid rgba(212, 175, 55, 0.3);
}

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

body {
    background-color: var(--bg-body);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('../images/metin2-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'SF Pro Display', sans-serif;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

/* Global Font Reset for Form Elements */
input, button, select, textarea {
    font-family: 'SF Pro Display', sans-serif;
}

h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

h1 {
    font-family: 'Ruach LET', sans-serif;
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

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

a:hover {
    color: var(--gold-glow);
    text-shadow: 0 0 8px rgba(255, 174, 0, 0.6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography Helpers --- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* --- Hero Header --- */
.hero-header {
    height: 400px;
    background: 
        /* Vignette Effect (Edges darker) */
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 90%),
        /* Dark Overlay for Text Readability */
        linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8)),
        /* The Image */
         url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax feel */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, transparent, var(--gold), transparent) 1;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* Vignette & Atmospheric Glow */
.hero-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    z-index: 1;
}

.header-content {
    text-align: center;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

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

@keyframes textGlow {
    from {
        filter: drop-shadow(0 5px 0 #000) drop-shadow(0 0 20px rgba(255, 255, 0, 0.8));
    }
    to {
        filter: drop-shadow(0 5px 0 #000) drop-shadow(0 0 60px rgba(255, 255, 0, 1));
    }
}

@keyframes neonPulse {
    0% {
        text-shadow:
            1px 1px 0 #2b1a0c,
           -1px 1px 0 #2b1a0c,
            1px -1px 0 #2b1a0c,
           -1px -1px 0 #2b1a0c,
            0 0 6px #ffe95c,
            0 0 14px #ffd700;
    }
    50% {
        text-shadow:
            1px 1px 0 #2b1a0c,
           -1px 1px 0 #2b1a0c,
            1px -1px 0 #2b1a0c,
           -1px -1px 0 #2b1a0c,
            0 0 14px #fff6a0,
            0 0 32px #ffe600;
    }
    100% {
        text-shadow:
            1px 1px 0 #2b1a0c,
           -1px 1px 0 #2b1a0c,
            1px -1px 0 #2b1a0c,
           -1px -1px 0 #2b1a0c,
            0 0 6px #ffe95c,
            0 0 14px #ffd700;
    }
}

.main-title {
    font-family: 'Ruach LET', sans-serif;
    font-size: 5.5rem;
    white-space: nowrap;

    /* DÜZ SARI */
    color: #ffd700;
    -webkit-text-fill-color: #ffd700;

    /* SADECE KONTUR + HAFİF PARLAMA */
    text-shadow:
        1px 1px 0 #2b1a0c,
       -1px 1px 0 #2b1a0c,
        1px -1px 0 #2b1a0c,
       -1px -1px 0 #2b1a0c,
        0 0 8px #ffd700,
        0 0 16px #ffd700;

    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.1;
    animation: neonPulse 2.2s ease-in-out infinite;
}



/* Removed .main-title.brand-text since h1 now uses Ruach LET globally */

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    letter-spacing: 3px;
    margin-top: -10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #8a0a0a, #4a0505);
    border: 1px solid #ff1a1a;
    color: #fff;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(138, 10, 10, 0.6);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    background: linear-gradient(180deg, #a30c0c, #6b0808);
    box-shadow: 0 0 40px rgba(255, 26, 26, 0.8);
    transform: scale(1.05);
    text-shadow: 0 0 10px #fff;
}

/* --- Layout --- */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- Sidebar & Panels --- */
.panel {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    position: relative;
}

/* Subtle Gold Corner Accents */
.panel::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 20px; height: 20px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.5;
}

.panel::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 20px; height: 20px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.5;
}

.panel-title {
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* --- Form Elements --- */
.input-field, .input-sidebar {
    display: block;
    width: 100%;
    background: var(--bg-input);
    border: 1px solid #333;
    padding: 12px;
    color: #eee;
    margin-bottom: 10px;
    font-family: 'SF Pro Display', sans-serif;
    transition: border 0.3s;
}

.input-field:focus, .input-sidebar:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn, .btn-sidebar {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #333, #111);
    border: 1px solid #555;
    color: #ccc;
    cursor: pointer;
    font-family: 'SF Pro Display', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn:hover, .btn-sidebar:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: linear-gradient(180deg, #444, #222);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-red {
    border-color: var(--red-metin);
    color: #ffaaaa;
}

.btn-red:hover {
    border-color: #ff5555;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* --- Navigation --- */
.vertical-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-btn {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(40,40,45,0.95), rgba(20,20,25,0.98));
    border-left: 3px solid #444;
    border-bottom: 1px solid #333;
    color: #bbb;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: linear-gradient(90deg, rgba(50,10,10,0.6), rgba(10,10,10,0.9));
    border-left-color: var(--red-metin);
    color: #fff;
    padding-left: 25px;
    box-shadow: inset 0 0 20px rgba(138, 10, 10, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.nav-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.server-status {
    margin-top: 20px;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.status-online {
    color: #4ade80;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; text-shadow: 0 0 5px rgba(74, 222, 128, 0.4); }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(74, 222, 128, 0.8); }
    100% { opacity: 0.8; text-shadow: 0 0 5px rgba(74, 222, 128, 0.4); }
}

/* --- Content Area --- */
.announcement-card {
    background: linear-gradient(180deg, rgba(35, 35, 40, 0.95), rgba(25, 25, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.announcement-card h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'SF Pro Display', sans-serif;
}

.announcement-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.announcement-card small {
    display: block;
    margin-top: 15px;
    color: var(--gold-dim);
    font-size: 0.85rem;
    text-align: right;
    font-style: italic;
}

/* Event List */
.event-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}

.event-list li:hover {
    background: rgba(255,255,255,0.02);
}

/* --- Chat & Messages --- */
#chat-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    overflow-y: auto;
    margin-bottom: 10px;
    height: 250px;
}

.chat-msg {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.chat-time {
    color: #888;
    font-size: 0.75rem;
    margin-right: 5px;
}

.chat-user {
    color: var(--gold);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    margin-right: 5px;
}

.chat-user.admin {
    color: #ef4444;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.4);
}

.chat-text {
    color: #eee;
}

/* --- Mobile Navigation & Layout Fixes --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .main-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar-login-panel {
        display: none !important;
    }

    .sidebar-left {
        /* Handled by mobile-menu.css, but ensure it doesn't affect flow */
        width: 0;
        height: 0;
        overflow: hidden;
        position: fixed; /* Double check */
    }
    
    /* When active, mobile-menu.css handles it */

    .content-area {
        width: 100%;
        order: 1;
    }

    .sidebar-right {
        width: 100%;
        order: 2;
    }

    .hero-header { 
        height: auto;
        min-height: 250px;
        padding: 40px 0;
    }
    
    .main-title { 
        font-size: 2.8rem;
        white-space: normal;
        line-height: 1.1;
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Utility */
.mobile-only {
    display: none !important;
}
@media (max-width: 1024px) {
    .mobile-only {
        display: block !important;
    }
}
.text-muted { color: #666; }
.btn-small {
    padding: 5px 10px;
    border: 1px solid #444;
    font-size: 0.8rem;
    color: #aaa;
    background: transparent;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}
.btn-small:hover { border-color: var(--gold); color: var(--gold); }
.link-small {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.link-small:hover { color: var(--gold); }
label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Grid System --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-submit-btn, .span-2-col {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .form-submit-btn, .span-2-col {
        grid-column: 1 / -1;
    }
}

/* --- Item Card (Market) --- */
.item-card {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid #333;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.item-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.item-price {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
}

/* --- Status Messages --- */
.status-approved {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

/* --- Admin Tabs --- */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    opacity: 0.6;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--gold);
    opacity: 1;
}

.tab-btn.active {
    color: var(--gold);
    opacity: 1;
    border-bottom: 2px solid var(--gold);
}

/* Scrollbar Styling for Chat Box */
#chat-box::-webkit-scrollbar {
    width: 6px;
}

#chat-box::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

#chat-box::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

#chat-box::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --- Enhanced Chat Interface --- */
.chat-panel {
    display: flex;
    flex-direction: column;
    height: 80vh;
    padding: 0;
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.chat-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.conversations-list {
    width: 300px;
    border-right: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
    background: rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.conversation-item {
    display: block;
    padding: 15px;
    border-left: 3px solid transparent;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: background 0.2s;
}

.conversation-item:hover {
    background: rgba(255,255,255,0.02);
}

.conversation-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
}

.conversation-preview {
    font-size: 0.9rem;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: rgba(0, 0, 0, 0.2);
}

.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.chat-bubble-wrapper.me {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-bubble-wrapper.them {
    align-self: flex-start;
    align-items: flex-start;
}

.chat-bubble {
    padding: 12px 18px;
    border-radius: 12px;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.5;
    color: #e0e0e0;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.chat-bubble.me {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom-right-radius: 2px;
}

.chat-bubble.them {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
}

.chat-time {
    font-size: 0.7rem;
    color: #666;
    margin-top: 5px;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}


/* --- Chat Mobile Enhancements --- */
.chat-user-select {
    padding: 5px;
    width: 200px;
    margin: 0;
}

.mobile-back-btn {
    display: none;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--gold);
    text-decoration: none;
}

/* Responsive fix */
@media (max-width: 768px) {
    .chat-panel {
        height: 80vh;
    }

    .chat-body {
        flex-direction: row;
    }
    
    .conversations-list {
        width: 100%;
        height: 100%;
        border-right: none;
        border-bottom: none;
        display: flex;
    }
    
    .chat-main {
        display: none;
        width: 100%;
    }

    /* When Chat Active */
    .mobile-chat-active .conversations-list {
        display: none;
    }
    
    .mobile-chat-active .chat-main {
        display: flex;
    }
    
    .mobile-back-btn {
        display: inline-block;
    }

    .chat-user-select {
        width: 130px;
    }
    
    .chat-header h2 {
        font-size: 1.1rem;
    }
}

/* --- New Homepage Elements --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.2); /* Lighter background */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    padding: 25px;
    text-align: center;
    position: relative;
    border-radius: 8px; /* Softer corners */
    transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-value {
    font-size: 2rem; /* Slightly smaller for elegance */
    font-weight: 700;
    color: #fff;
    font-family: 'SF Pro Display', sans-serif;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.features-clean {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    flex: 1;
    padding: 0 20px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    opacity: 1;
}

.feature-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'SF Pro Display', sans-serif;
}

.feature-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr !important; /* Stack columns */
        gap: 30px;
    }
    
    .features-clean {
        flex-direction: column;
        gap: 30px;
    }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.feature-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 10px;
}

.feature-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
