/* ============================================
   ZOMBIE WZ - PREMIUM DESIGN
   No Bootstrap - Pure Custom CSS
   Modern, Balanced, Professional
   ============================================ */

/* FONT FACE - Trajan Pro */
@font-face {
    font-family: 'Trajan Pro';
    src: url('../font/TrajanPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('../font/TrajanPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Colors */
    --red-primary: #ff0000;
    --red-dark: #8b0000;
    --red-light: #ff3333;
    --orange-accent: #ff6b00;
    --bg-black: #0a0a0a;
    --bg-dark: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    --text-white: #e8e8e8;
    --text-gray: #aaaaaa;
    --border-red: rgba(255, 0, 0, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trajan Pro', serif;
    background: var(--bg-black) url('../images/0023X0C012.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
    padding-top: 70px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: -1;
}

/* Sadece inputlar - Poppins */
input,
textarea,
select {
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   LAYOUT SYSTEM - GRID
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--spacing-sm));
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    padding: 0 var(--spacing-sm);
}

/* Base columns */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

a {
    color: var(--red-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-light);
}

/* ============================================
   NAVBAR - FIXED TOP
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 5, 5, 0.98) 0%, rgba(20, 5, 5, 0.98) 50%, rgba(30, 10, 10, 0.98) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    height: 80px;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 10%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.1) 100%,
        rgba(255, 255, 255, 0.1) 10%

    );
 
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.navbar-left {
    flex: 1;
    justify-content: flex-start;
}

.navbar-right {
    flex: 1;
    justify-content: flex-end;
}

.navbar-brand {
    padding: 0;
    display: block;
    position: relative;
}

.navbar-logo-container {
    font-family: 'Google-spies'!important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.navbar-brand-text {
    letter-spacing: 2px;
    display: inline-block;
    transition: transform var(--transition);
}

.navbar-brand-text:hover {
    transform: scale(1.05);
}

.ega-text {
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 40%, #c7c7c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgb(255, 255, 255),
                 0 -1px 2px rgba(0, 0, 0, 0.2),
                 1px 1px 3px rgba(0, 0, 0, 0.2);
   
}

.z-text {
    background: linear-gradient(180deg, #ff3636 0%, #ff6666 50%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 128, 128, 0.6),
                 0 -1px 2px rgba(0, 0, 0, 0.4),
                 0 0 15px rgba(255, 0, 0, 0.8);

}

.navbar-brand:hover {
    transform: none;
}

.navbar-brand:hover .navbar-brand-text {
    transform: scale(1.05);
}

.navbar-beta {
    position: absolute;
    top: -8px;
    right: -40px;
    background: #ff0000;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.navbar-link {
    font-weight: 700;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 1px;
    -webkit-mask: none !important;
    mask: none !important;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 50%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2),
                 0 -1px 1px rgba(0, 0, 0, 0.5),
                 1px 1px 1px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
    
}

.navbar-link:hover {
    background: linear-gradient(180deg, #ffcccc 0%, #ff8888 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
                 0 -1px 1px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(255, 0, 0, 0.5);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
}

.navbar-link.active {
    background: linear-gradient(180deg, #ffcccc 0%, #ff6666 50%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4),
                 0 -1px 1px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(255, 0, 0, 0.6);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.navbar-link.active:hover {
    background: linear-gradient(180deg, #ffdddd 0%, #ff9999 50%, #ff3333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4),
                 0 -1px 1px rgba(0, 0, 0, 0.5),
                 0 0 15px rgba(255, 0, 0, 0.7);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
}

/* Dropdown Styles */
.navbar-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-dropdown:hover .dropdown-toggle i:last-child,
.navbar-dropdown.active .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    background-clip: unset;
    text-shadow: none;
    filter: none;
}

.dropdown-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--red-primary);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 2rem;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.dropdown-link.active {
    background: rgba(255, 0, 0, 0.1);
    border-left: 3px solid var(--red-primary);
    color: #ffcccc;
}

.dropdown-link.active:hover {
    background: rgba(255, 0, 0, 0.15);
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(6px);
    display: none;
    z-index: 2000;
}
.mobile-nav.open { display: block; }
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-brand { font-weight: 800; font-size: 1.25rem; color: #fff; }
.mobile-close { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 1.5rem; border-radius: 6px; padding: .25rem .5rem; }
.mobile-menu { list-style: none; margin: 0; padding: .5rem 0; }
.mobile-link, .mobile-drop-toggle { width: 100%; display: flex; align-items: center; gap: .75rem; padding: .9rem 1.25rem; color: rgba(255,255,255,0.9); text-decoration: none; background: transparent; border: 0; font: inherit; text-align: left; }
.mobile-link i, .mobile-drop-toggle i { color: var(--red-primary); }
.mobile-link:hover, .mobile-drop-toggle:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-dropdown .caret { margin-left: auto; transition: transform .2s ease; }
.mobile-dropdown.open .caret { transform: rotate(90deg); }
.mobile-submenu { list-style: none; margin: 0; padding: 0; display: none; }
.mobile-dropdown.open .mobile-submenu { display: block; }
.mobile-sublink { display: flex; align-items: center; gap: .75rem; padding: .7rem 2.75rem; color: rgba(255,255,255,0.85); text-decoration: none; }
.mobile-sublink:hover { background: rgba(255,255,255,0.06); color: #fff; }

html.no-scroll, body.no-scroll { overflow: hidden; }

/* PROFILE - MOBILE IMPROVEMENTS */
@media (max-width: 768px) {
    .responsive-cols .col-6, .responsive-cols .col-4, .responsive-cols .col-8, .responsive-cols .col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .card .card-header .card-title { font-size: 1rem; }
    .btn.btn-outline-primary.btn-sm, .btn.btn-outline-secondary.btn-sm {
        width: 100%;
        margin: 0.35rem 0 !important;
    }
    .table { font-size: 0.9rem; }
    .modal .modal-content { width: 95% !important; }
}

/* HOME FEATURE CARDS */
.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}
.feature-card {
    background: rgba(30,30,30,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.feature-card i { font-size: 2rem; color: var(--red-primary); }
.feature-card h3 { margin: .75rem 0 .5rem; }
.feature-card p { color: var(--text-gray); margin-bottom: .9rem; }

@media (max-width: 992px) {
    .home-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .home-feature-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 1.25rem; }
}

.navbar-btn-login {
    background: linear-gradient(180deg, #ff3d3d 0%, #cc0000 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4) !important;
    -webkit-mask: none !important;
    mask: none !important;
    border-radius: 8px !important;
    position: relative !important;
}

.navbar-btn-login::after {
    display: none !important;
}

.navbar-btn-login:hover {
    background: linear-gradient(180deg, #ff4d4d 0%, #ff0000 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6) !important;
    transform: translateY(-2px) !important;
}

.navbar-btn-download {
    background: linear-gradient(180deg, #94ff3d 0%, #22cc00 100%) !important;
    color: #459206 !important;
    background-color: transparent !important;
    -webkit-mask: none !important;
    mask: none !important;
    border-radius: 8px !important;
    position: relative !important;
}

.navbar-btn-download::after {
    display: none !important;
}

.navbar-btn-download:hover {
    background: rgb(31, 235, 4) !important;
    color: #459206 !important;
  
}

/* ============================================
   CARDS - BALANCED & MODERN
   ============================================ */

.card {
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition);
}

/* ============================================
   RESPONSIVE FILTER BARS (Shop & Leaderboard)
   ============================================ */
.search-filter-section .filter-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-filter-section .filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-filter-section .radio-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-filter-section .radio-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .search-filter-section .filter-row {
        gap: 0.5rem;
    }
    .search-filter-section .filter-group {
        width: 100%;
    }
    .search-filter-section .radio-group {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 0.25rem;
    }
    .search-filter-section .radio-item {
        flex: 0 0 auto;
    }
    .search-filter-section .search-input-group {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .search-filter-section .search-input-decorative {
        width: 100%;
    }
}

/* Leaderboard generic filters (if present) */
.leaderboard-filters, .filters, .tabs, .category-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .leaderboard-filters, .filters, .tabs, .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 0.25rem;
    }
    .leaderboard-filters > *, .filters > *, .tabs > *, .category-tabs > * {
        flex: 0 0 auto;
    }
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card-header {
    background: linear-gradient(90deg, 
        rgba(35, 25, 25, 0.9) 0%,
        rgba(30, 20, 20, 0.95) 40%,
        rgba(25, 15, 15, 0.98) 100%
    );
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: -2rem -2rem 1.5rem -2rem;
    width: calc(100% + 4rem);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        linear-gradient(45deg, transparent 60%, rgba(50, 50, 60, 0.3) 100%);
    pointer-events: none;
}

.card-header .card-title,
.card-header h4,
.card-header h5 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(220, 220, 220, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
    flex: 1;
}

.card-header-logo {
    width: 120px;
    height: 40px;
    background: url('../images/LOGO.png') no-repeat right center;
    background-size: contain;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-white);
}

.card-body {
    color: var(--text-white);
}

/* ============================================
   BUTTONS - MODERN & POLISHED
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
}

/* btn-primary kaldırıldı - Her butonun kendi sınıfı var */

.btn-outline-primary {
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-outline-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-warning {
    border: 2px solid #ff8c00;
    color: #ff8c00;
    background: transparent;
}

.btn-outline-warning:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-info {
    border: 2px solid #00bcd4;
    color: #00bcd4;
    background: transparent;
}

.btn-outline-info:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* Hexagonal Arrow Button Style */
.btn-hexagonal {
    position: relative;
    background: #1a1a1a !important;
    border: 2px solid rgba(200, 200, 200, 0.4) !important;
    padding: 1rem 3rem !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%, 5% 0%);
    -webkit-clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%, 5% 0%);
    transition: all 0.3s ease !important;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5),
                 0 -1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.6),
                inset 0 -1px 1px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, 
        rgba(60, 60, 60, 1) 0%,
        rgba(30, 30, 30, 1) 40%,
        rgba(20, 20, 20, 1) 60%,
        rgba(30, 30, 30, 1) 100%
    ) !important;
}

.btn-hexagonal:hover {
    background: linear-gradient(180deg, 
        rgba(80, 80, 80, 1) 0%,
        rgba(50, 50, 50, 1) 40%,
        rgba(40, 40, 40, 1) 60%,
        rgba(50, 50, 50, 1) 100%
    ) !important;
    border-color: rgba(220, 220, 220, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.8),
                inset 0 -1px 2px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 255, 255, 0.1) !important;
}

.btn-hexagonal:active {
    transform: translateY(0) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5),
                inset 0 -1px 1px rgba(255, 255, 255, 0.1) !important;
}

.btn-hexagonal i {
    margin-right: 0.5rem;
}

/* ============================================
   FORMS - CLEAN & MODERN
   ============================================ */

.form-control, .form-select, select.form-control, textarea.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid var(--border-red);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all var(--transition);
    font-family: 'Trajan Pro', serif;
}

.form-control:focus, .form-select:focus, select.form-control:focus, textarea.form-control:focus {
    outline: none;
    background: rgba(30, 30, 30, 0.9);
    border-color: var(--red-primary);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.form-select, select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

.admin-section textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.form-label {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ============================================
   TABLES - MODERN DESIGN
   ============================================ */

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: rgba(42, 0, 0, 0.8);
}

.table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--red-primary);
}

.table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-white);
    border-bottom: 1px solid var(--text-white);
}

.table tbody tr {
    transition: all var(--transition);
}

.table tbody tr:hover {
    background: rgba(42, 0, 0, 0.3);
    transform: translateX(5px);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #4caf50;
    color: white;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.badge-danger {
    background: var(--red-primary);
    color: white;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.badge-warning {
    background: #ff8c00;
    color: white;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.badge-info {
    background: #00bcd4;
    color: white;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.badge-secondary {
    background: rgba(100, 100, 100, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-primary {
    background: var(--red-primary);
    color: white;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

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

.alert-info {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
    color: #00bcd4;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
    color: #4caf50;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-red { color: var(--red-primary) !important; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

.py-5 { padding: 4rem 0; }
.h-100 { height: 100%; }

.clickable-row {
    cursor: pointer;
    transition: all var(--transition);
}

.clickable-row:hover {
    background: rgba(42, 0, 0, 0.4) !important;
    transform: translateX(5px);
}

/* ============================================
   LOGIN PAGE - PREMIUM DESIGN
   ============================================ */

.login-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.login-card {
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--border-red);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-header h1 {
    color: var(--red-primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.login-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .navbar-menu { gap: 0; }
    .navbar-toggle { display: block; z-index: 1001; }
    .navbar-content { justify-content: flex-start; }
    .navbar-logo-container { position: static; left: auto; transform: none; }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar-logo {
        height: 44px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-header {
        padding: 1rem 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }

    /* Mobile navbar: single column, no left/right split */
    .navbar-toggle { display: block; }
    .navbar-content {align-items: stretch; }
    .navbar-logo-container { position: static; transform: none; margin: 0.5rem auto; }
    .navbar-menu { display: none; width: 100%; padding: 0; margin: 0; }
    .navbar.open .navbar-menu { display: block; }
    .navbar-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .navbar-menu li:last-child { border-bottom: none; }

    /* Dropdowns open inline (not overlay) when menu is open */
    .navbar-dropdown { width: 100%; }
    .navbar.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.25); border: 0; border-radius: 0; margin: 0; padding: 0; min-width: 100%; }
    .navbar.open .dropdown-link { padding-left: 2rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--red-primary);
    animation: spin 1s linear infinite;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0 0;
}

.page-item {
    list-style: none;
}

.page-link {
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--border-red);
    color: var(--text-white);
    border-radius: 8px;
    transition: all var(--transition);
    text-decoration: none;
}

.page-link:hover, .page-item.active .page-link {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: white;
    transform: translateY(-2px);
}

.table-responsive {
    overflow-x: auto;
}


.progress {
    background: rgba(20, 20, 20, 0.8);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    background: linear-gradient(90deg, var(--red-primary) 0%, #ff3333 100%);
    height: 100%;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.text-success {
    color: #4caf50 !important;
}

.text-danger {
    color: var(--red-primary) !important;
}

.text-muted {
    color: var(--text-gray) !important;
}

/* Card hover effects */
.card > div > a:hover {
    background: rgba(255, 0, 0, 0.1);
    padding-left: 1.5rem;
}

/* Zombie background animation */
@keyframes zombie-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
/* Modern Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 0, 0.5) transparent;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.6) 0%, rgba(139, 0, 0, 0.6) 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.8) 100%);
    background-clip: padding-box;
}

/* Search & Filter Section */
.search-filter-section {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;


    border-radius: 8px;

}

.search-filter-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.search-filter-header::before,
.search-filter-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
}

.search-filter-header::before {
    top: -1.5rem;
}

.search-filter-header::after {
    bottom: -1.5rem;
}

.search-filter-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.filter-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.radio-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-item input[type="radio"]:checked {
    border-color: var(--red-primary);
    background: var(--red-primary);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.radio-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-item label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.radio-item input[type="radio"]:checked + label {
    color: var(--red-primary);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input-decorative {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.search-input-decorative:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.search-input-decorative::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-decoration {
    position: absolute;
    color: white;
    font-size: 0.7rem;
    opacity: 0.6;
}

.search-icon-decoration.left {
    left: -15px;
}

.search-icon-decoration.right {
    right: -15px;
}

.search-icon {
    color: white;
    font-size: 1.2rem;
}

.price-filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.price-icon {
    color: #ffd700;
    font-size: 1.2rem;
    position: absolute;
    left: -25px;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    position: relative;
    min-height: 300px;
    margin-top: 4rem;
    padding: 3rem 2rem;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    margin-bottom: 2.5rem;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-primary);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-text {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}

/* ============================================
   SPONSOR LOGOS SECTION
   ============================================ */

.sponsor-logos-section {
    position: relative;
    padding: 3rem 0;
    margin-top: 3rem;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 10, 10, 0.5) 50%, 
        transparent 100%
    );
}

.sponsor-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.sponsor-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%) brightness(1.1);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sponsor-logos-section {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .sponsor-logos-wrapper {
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .sponsor-logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .sponsor-logos-wrapper {
        gap: 1.5rem;
    }
    
    .sponsor-logo {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .game-slider {
        height: 320px;
    }
    .game-slider::before,
    .game-slider::after {
        width: 18%;
        min-width: 70px;
        max-width: 120px;
    }
}

.game-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-red);
}

/* Sol ve sağ kenarlarda yumuşak geçiş – görsel keskin bitmesin, arka plana geçişli kaybolsun */
.game-slider::before,
.game-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 22%;
    min-width: 140px;
    max-width: 280px;
    z-index: 5;
    pointer-events: none;
}

.game-slider::before {
    left: 0;
    background: linear-gradient(to right,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.95) 15%,
        rgba(10, 10, 10, 0.7) 35%,
        rgba(10, 10, 10, 0.3) 55%,
        transparent 100%);
}

.game-slider::after {
    right: 0;
    background: linear-gradient(to left,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.95) 15%,
        rgba(10, 10, 10, 0.7) 35%,
        rgba(10, 10, 10, 0.3) 55%,
        transparent 100%);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.6) contrast(1.1);
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--red-primary);
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.survival-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.survival-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-red);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.survival-item:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.survival-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--red-primary);
}

.survival-item h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.survival-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Game Cards - All Cards Same Style */
.index-card {
    height: 100%;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%), url('../images/sitebackground.png');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-red);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2), inset 0 0 50px rgba(255, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.index-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.index-card-content {
    position: relative;
    z-index: 1;
}

.index-card-content i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.index-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: var(--red-primary);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.index-card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Profile Cards - All Cards Same Style */
.profile-card {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%), url('../images/navbackground.png');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-red);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3), inset 0 0 30px rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.profile-card-content {
    position: relative;
    z-index: 1;
}

.profile-card-content i {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.profile-card-content .card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.profile-card-content .card-label {
    text-transform: uppercase;
    color: var(--text-gray);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.profile-card.green .card-value {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.profile-card.green {
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3), inset 0 0 30px rgba(76, 175, 80, 0.1);
}

.profile-card.blue .card-value {
    color: #2196f3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.6);
}

.profile-card.blue {
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3), inset 0 0 30px rgba(33, 150, 243, 0.1);
}

/* ============================================
   DOWNLOAD & SERVER STATUS SECTION
   ============================================ */

.download-server-section {
    background: rgba(10, 10, 10, 0.6);
    padding: 2.5rem 0;
    border-top: 2px solid var(--border-red);
    border-bottom: 2px solid var(--border-red);
    margin-bottom: 3rem;
}

.download-server-section .col-4 {
    display: flex;
}

.download-card {
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.9) 0%, rgba(15, 10, 5, 0.95) 100%);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: #f4d03f;
}

.download-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.download-icon {
    font-size: 2.5rem;
    color: #d4af37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
    position: relative;
    z-index: 1;
}

.download-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.btn-download-main {
    background: linear-gradient(180deg, #d4af37 0%, #b8860b 100%);
    color: #1a1a1a !important;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.btn-download-main:hover {
    background: linear-gradient(180deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-download-main i {
    margin-right: 0.5rem;
}

/* Server Status Cards */
.server-status-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.server-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.server-status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.server-status-card.online {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2), inset 0 0 20px rgba(76, 175, 80, 0.05);
}

.server-status-card.offline {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2), inset 0 0 20px rgba(255, 0, 0, 0.05);
}

.server-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(200, 200, 200, 0.3);
    border-radius: 8px;
    position: relative;
}

.server-status-card.online .server-icon {
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.server-status-card.offline .server-icon {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.server-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.server-info {
    flex: 1;
}

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

.server-name h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
}

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

.status-badge.online {
    background: #4caf50;
    color: white;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}

.status-badge.offline {
    background: #ff0000;
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.progress-container {
    background: rgba(0, 0, 0, 0.5);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar-server {
    height: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #81c784 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
    transition: width 0.3s ease;
}

.server-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-desc span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.player-count {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .download-server-section .col-3,
    .download-server-section .col-4 {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .download-server-section {
        padding: 1.5rem 0;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .download-icon {
        font-size: 2rem;
    }
    
    .download-card h3 {
        font-size: 1.1rem;
    }
    
    .server-status-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .server-icon {
        min-width: 50px;
        min-height: 50px;
    }
    
    .server-icon i {
        font-size: 1.5rem;
    }
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.main-news-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    position: relative;
    transition: all 0.3s ease;
}

.main-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.main-news-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.news-content {
    flex: 0 0 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.news-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.news-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-more {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.btn-more:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.news-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.5s ease;
}

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

/* News List */
.news-list-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.news-list-header {
    background: linear-gradient(90deg, 
        rgba(35, 25, 25, 0.9) 0%,
        rgba(30, 20, 20, 0.95) 40%,
        rgba(25, 15, 15, 0.98) 100%
    );
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--red-primary);
}

.news-list-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.news-list-header i {
    font-size: 1.5rem;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-list-header i:hover {
    color: #f4d03f;
    transform: scale(1.1);
}

.news-list {
    padding: 1rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.news-item {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(255, 0, 0, 0.05);
    padding-left: 2.5rem;
}

.news-tag {
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    min-width: 70px;
}

.news-title {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.news-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* News List Scrollbar */
.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.news-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.6) 0%, rgba(139, 0, 0, 0.6) 100%);
    border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.8) 100%);
}

/* Responsive News */
@media (max-width: 991px) {
    .news-section .col-7,
    .news-section .col-5 {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0;
    }
    
    .news-content {
        padding: 2rem;
    }
    
    .news-content h2 {
        font-size: 1.8rem;
    }
    
    .news-content p {
        font-size: 1rem;
    }
    
    .news-image {
        display: none;
    }
    
    .news-list-header {
        padding: 1rem 1.5rem;
    }
    
    .news-list-header h3 {
        font-size: 1.2rem;
    }
    
    .news-item {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .news-date {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */

.leaderboard-section {
    margin-bottom: 3rem;
}

.leaderboard-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leaderboard-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.leaderboard-header {
    background: linear-gradient(90deg, 
        rgba(35, 25, 25, 0.9) 0%,
        rgba(30, 20, 20, 0.95) 40%,
        rgba(25, 15, 15, 0.98) 100%
    );
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--red-primary);
}

.leaderboard-header i {
    font-size: 2rem;
    color: #d4af37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.leaderboard-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.leaderboard-list {
    padding: 1rem 0;
}

.leaderboard-item {
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-item:hover {
    background: rgba(255, 0, 0, 0.05);
    padding-left: 2.5rem;
}

.leaderboard-item .rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    min-width: 35px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.leaderboard-item:first-child .rank {
    color: gold;
    filter: drop-shadow(0 0 15px gold);
}

.leaderboard-item:nth-child(2) .rank {
    color: silver;
    filter: drop-shadow(0 0 10px silver);
}

.leaderboard-item:nth-child(3) .rank {
    color: #cd7f32;
    filter: drop-shadow(0 0 10px #cd7f32);
}

.leaderboard-item .player-name {
    flex: 1;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.leaderboard-item .score {
    color: var(--red-primary);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive Leaderboard */
@media (max-width: 768px) {
    .leaderboard-section .col-6 {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .leaderboard-header {
        padding: 1rem 1.5rem;
    }
    
    .leaderboard-header i {
        font-size: 1.5rem;
    }
    
    .leaderboard-header h3 {
        font-size: 1.1rem;
    }
    
    .leaderboard-item {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .leaderboard-item .rank {
        font-size: 1.2rem;
        min-width: 30px;
    }
    
    .leaderboard-item .player-name {
        font-size: 0.9rem;
    }
    
    .leaderboard-item .score {
        font-size: 1rem;
    }
}

/* ============================================
   SHOP SECTION
   ============================================ */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.shop-item-card {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.shop-item-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
}

.shop-item-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--red-primary);
    margin-bottom: 1rem;
    overflow: hidden;
}

.shop-item-icon .item-icon {
    height: 150px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.login-btn {
    font-family: 'Trajan Pro', serif !important;
}

.shop-item-icon i {
    font-size: 3rem;
    color: var(--text-gray);
}

.shop-item-header {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 1rem;
}

.shop-item-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-align: center;
}

.shop-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
}

.shop-item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 80px;
    flex: 1;
}

.shop-price-wrapper {
    margin-top: auto;
    margin-bottom: 1rem;
}

.shop-item-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    margin: 0;
}

.shop-item-price i {
    font-size: 1.3rem;
    color: #4caf50;
}

.shop-item-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.shop-item-quantity-wrapper {
    margin: 1rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    height: 40px;
}

.btn-shop-buy {
    flex: 1;
    height: 40px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    font-family: 'Trajan Pro', serif !important;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    height: 40px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn.quantity-decrease:hover {
    background: rgba(220, 53, 69, 0.3);
}

.quantity-btn.quantity-increase:hover {
    background: rgba(40, 167, 69, 0.3);
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.shop-item-quantity {
    padding: 0;
    height: 40px;
    width: 60px;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.shop-item-quantity::-webkit-inner-spin-button,
.shop-item-quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-item-quantity:focus {
    background: rgba(255, 255, 255, 0.05);
}

.shop-item-quantity-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-shop-buy:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.btn-shop-buy i {
    font-size: 1.2rem;
}

/* Responsive Shop */
@media (max-width: 991px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shop-item-card {
        padding: 1.25rem;
    }
    
    .shop-item-header h4 {
        font-size: 1.1rem;
    }
    
    .shop-item-desc {
        font-size: 0.85rem;
        min-height: 50px;
    }
    
    .shop-item-price span {
        font-size: 1.1rem;
    }
    
    .shop-item-icon .item-icon {
        height: 150px;
        margin-bottom: 0.75rem;
    }
    
    .shop-item-header h4 {
        font-size: 1rem;
    }
}

/* ============================================
   SUPPORT SYSTEM STYLES
   ============================================ */

/* Additional Button Styles */
.btn-outline-success {
    border: 2px solid #4caf50;
    color: #4caf50;
    background: transparent;
}

.btn-outline-success:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-outline-danger {
    border: 2px solid #f44336;
    color: #f44336;
    background: transparent;
}

.btn-outline-danger:hover {
    background: #f44336;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Alert warning */
.alert-warning {
    background: rgba(255, 152, 0, 0.1);
    border-color: #ff9800;
    color: #ff9800;
}

/* Text utilities */
.text-light {
    color: var(--text-white) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

/* Main content wrapper */
.main-content {
    min-height: calc(100vh - 400px);
    padding-bottom: 2rem;
}

/* ============================================
   ADMIN DASHBOARD DESIGN
   ============================================ */

/* Dashboard Container */
.admin-dashboard {
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Admin Header */
.admin-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #8b0000 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.admin-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.03) 2px,
            rgba(255, 0, 0, 0.03) 4px
        );
    animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.admin-header h1 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.admin-header h1 i {
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
}

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

.admin-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* Stats Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 30, 30, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon.primary { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.stat-icon.success { 
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); 
}

.stat-icon.warning { 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
}

.stat-icon.info { 
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); 
}

.stat-icon i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.stat-details {
    flex: 1;
}

.stat-details h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-details p {
    margin: 0.5rem 0 0 0;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    background: rgba(255,255,255,0.02);
    padding: 0.5rem;
    border-radius: 12px 12px 0 0;
}

.admin-tab {
    padding: 1rem 1.75rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.admin-tab i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.admin-tab::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.admin-tab:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.admin-tab.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.admin-tab.active::before {
    width: 100%;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease-in-out;
}

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

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

/* Admin Sections */
.admin-section {
    background: linear-gradient(135deg, rgba(20, 10, 10, 0.95), rgba(30, 15, 15, 0.95));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.05), transparent 70%);
    pointer-events: none;
}

.admin-section:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.admin-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
}

.admin-section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.6), transparent);
}

.admin-section-header i {
    font-size: 1.5rem;
    color: rgba(220, 38, 38, 0.8);
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.admin-section-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Form Grids */
.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grid-2 { 
    grid-template-columns: repeat(2, 1fr); 
}

.form-grid-3 { 
    grid-template-columns: repeat(3, 1fr); 
}

.form-grid-4 { 
    grid-template-columns: repeat(4, 1fr); 
}

.form-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-grid-2,
    .form-grid-3,
    .form-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* E-Pin Form Wrapper */
.epin-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 1.25rem;
    align-items: end;
}

/* Quick Access Grid */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.quick-access-btn {
    padding: 1.75rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-access-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.quick-access-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quick-access-btn i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.quick-access-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.quick-access-btn strong {
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.quick-access-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary) !important;
}

/* Enhanced Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.alert i {
    font-size: 1.5rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
    color: #66bb6a;
}

.alert-success i {
    color: #4caf50;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #ff5252;
}

.alert-danger i {
    color: #f44336;
}

.alert code {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 1px;
}

/* Enhanced Form Controls in Admin */
.admin-section .form-control {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
}

.admin-section .form-control:focus {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
    outline: none;
    transform: translateY(-1px);
}

.admin-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.admin-section .form-control:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

#downloadsList .download-row {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}
#sliderList .slider-row {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}
#sliderList .slider-preview[src=""] {
    display: none;
}

.admin-section label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Enhanced Buttons in Admin */
.admin-section .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.admin-section .btn i {
    margin-right: 0.5rem;
}

.admin-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Loading State */
#adminGuard {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-gray);
    animation: fadeIn 0.5s ease;
}

#adminGuard i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: spin 2s linear infinite;
    color: var(--gold-primary);
}

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

#adminGuard p {
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid-3, .form-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-header {
        padding: 1.5rem;
    }
    
    .admin-header h1 {
        font-size: 1.75rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-section {
        padding: 1.5rem;
    }
    
    .form-grid-2, .form-grid-3, .form-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .epin-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .admin-tab {
        white-space: nowrap;
        padding: 0.875rem 1.25rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-section-header h3 {
        font-size: 1.25rem;
    }
    
    .quick-access-btn {
        padding: 1.25rem !important;
    }
}

/* Utility Classes for Admin */
.invisible-label {
    opacity: 0;
    pointer-events: none;
}

.col-span-2 {
    grid-column: span 2;
}

/* form-actions moved to form-grids section */

.btn-block {
    width: 100%;
}

.epin-code-input {
    text-transform: uppercase;
}

.admin-section label small {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
}

#saveRewardsBtn {
    margin-top: 1.5rem;
}

#rewardsTable {
    overflow-x: auto;
}

#adminContent {
    display: none;
}

#adminContent.loaded {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Data Tables */
.data-table-wrapper {
    margin-top: 1.5rem;
}

.data-table-scroll {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
}

.data-table thead {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(139, 0, 0, 0.15) 100%);
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.data-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    color: var(--gold-primary);
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 0, 0, 0.08);
    transform: translateX(2px);
}

.data-table td {
    padding: 1rem 1.25rem;
    color: var(--text-white);
    font-size: 0.9375rem;
}

.data-table .epin-code {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
}

.data-table .amount {
    color: #4caf50;
    font-weight: 600;
}

.data-table .badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.data-table .status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #66bb6a;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.data-table .status-used {
    background: rgba(158, 158, 158, 0.2);
    color: #bdbdbd;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

.data-table .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* Table Actions */
.table-actions {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Loading/Empty/Error States */
.loading-state,
.empty-state,
.error-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-gray);
}

.loading-state i,
.empty-state i,
.error-state i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.loading-state i {
    animation: spin 2s linear infinite;
    color: var(--gold-primary);
}

.empty-state i {
    color: var(--text-gray);
}

.error-state i {
    color: var(--red-primary);
}

.loading-state p,
.empty-state p,
.error-state p {
    font-size: 1rem;
    margin: 0;
}

.error-state small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    opacity: 0.8;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.98), rgba(5, 0, 10, 0.98));
    border: 2px solid rgba(220, 38, 38, 0.6);
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3),
                0 0 20px rgba(220, 38, 38, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.7);
}

.autocomplete-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: linear-gradient(90deg, 
        rgba(220, 38, 38, 0.15), 
        rgba(220, 38, 38, 0.05));
    border-left: 4px solid var(--primary-red);
    padding-left: calc(1.25rem - 4px);
    transform: translateX(2px);
}

.autocomplete-item:active {
    background: rgba(220, 38, 38, 0.2);
}

.autocomplete-item > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.autocomplete-item strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.autocomplete-item small {
    display: block;
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.autocomplete-item .badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.status-banned {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
    animation: bannedPulse 1.5s ease-in-out infinite;
}

@keyframes bannedPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
    }
    50% { 
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    }
}

.form-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Form Grid Variations */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Select Dropdown Styling */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23dc2626' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3.5rem;
    cursor: pointer;
    background-color: rgba(15, 0, 0, 0.6);
    border: 2px solid rgba(220, 38, 38, 0.3);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

select.form-control:hover {
    border-color: rgba(220, 38, 38, 0.6);
    background-color: rgba(15, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

select.form-control:focus {
    border-color: var(--primary-red);
    background-color: rgba(15, 0, 0, 0.9);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    outline: none;
}

select.form-control option {
    background-color: rgba(15, 0, 0, 0.98);
    color: #ffffff;
    padding: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    font-weight: 500;
}

select.form-control option:hover {
    background-color: rgba(220, 38, 38, 0.2);
}

select.form-control option:checked {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.1));
    color: #ffffff;
    font-weight: 600;
}

/* Custom Checkbox Styling */
.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem 1rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.checkbox-label:hover {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 4px;
    background: rgba(20, 20, 20, 0.8);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.custom-checkbox:checked {
    background: rgba(220, 38, 38, 0.9);
    border-color: rgba(220, 38, 38, 0.9);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.custom-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.checkbox-label:hover .checkbox-text {
    color: rgba(255, 255, 255, 0.95);
}

.custom-checkbox:checked ~ .checkbox-text {
    color: rgba(220, 38, 38, 1);
    font-weight: 600;
}

/* Item Autocomplete Dropdown */
.item-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.item-autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.item-autocomplete-dropdown::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
}

.item-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 4px;
}

.item-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.7);
}

.item-autocomplete-dropdown .autocomplete-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    background: transparent;
}

.item-autocomplete-dropdown .autocomplete-item:last-child {
    border-bottom: none;
}

.item-autocomplete-dropdown .autocomplete-item:hover {
    background: rgba(220, 38, 38, 0.15);
}

.autocomplete-item.no-results {
    cursor: default;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1.5rem;
}

.autocomplete-item.no-results:hover {
    background: transparent;
}

.autocomplete-item-image {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.autocomplete-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.autocomplete-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.autocomplete-item-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item-id {
    color: rgba(220, 38, 38, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Create Case Button */
.btn-create-case {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    border: 2px solid rgba(220, 38, 38, 0.5);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    color: white;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.btn-create-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-create-case:hover::before {
    left: 100%;
}

.btn-create-case:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 1), rgba(200, 40, 40, 1));
    border-color: rgba(220, 38, 38, 0.8);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.btn-create-case:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
}

.btn-create-case i {
    font-size: 1.1rem;
}

/* Dropdown Fix - Better Option Styling */
select.form-control {
    position: relative;
    z-index: 10;
    cursor: pointer;
}

select.form-control::-ms-expand {
    display: none;
}

select.form-control option {
    background-color: rgba(30, 30, 30, 0.98) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    cursor: pointer;
}

select.form-control option:hover,
select.form-control option:focus {
    background-color: rgba(220, 38, 38, 0.3) !important;
    color: #ffffff !important;
}

select.form-control option:checked,
select.form-control option[selected] {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), rgba(220, 38, 38, 0.3)) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Select wrapper for better control */
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(220, 38, 38, 0.8);
    pointer-events: none;
    z-index: 11;
    transition: all 0.3s ease;
}

.select-wrapper:hover::after {
    border-top-color: var(--primary-red);
}

select.form-control:focus + .select-wrapper::after {
    border-top-color: var(--primary-red);
}

/* Form Grid 4 Columns */
.form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

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

@media (max-width: 480px) {
    .form-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* News Detail Page */
.news-detail-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, 
        rgba(10, 0, 0, 0.95), 
        rgba(30, 0, 0, 0.95)), 
        url('../assets/img/news-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0 2rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(220, 38, 38, 0.1) 0%, 
        rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
    transform: translateX(-5px);
}

.news-detail-header {
    position: relative;
    z-index: 1;
}

.news-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 6px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.news-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-detail-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* News Content */
.news-detail-content {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.news-article {
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.6), rgba(5, 0, 10, 0.6));
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.article-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-tags i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.875rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.6), rgba(5, 0, 10, 0.6));
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.widget-title i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-news-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-news-item:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.related-category {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.related-title {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.related-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Stats Widget */
.stats-widget {
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.1), 
        rgba(220, 38, 38, 0.05));
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Index.php news-item link style */
a.news-item {
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

a.news-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

/* Responsive Tables */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .news-detail-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .data-table th {
        font-size: 0.75rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .autocomplete-dropdown {
        max-height: 200px;
    }
    
    .news-detail-hero {
        min-height: 300px;
        padding: 3rem 0 1.5rem;
    }
    
    .news-detail-title {
        font-size: 2rem;
    }
    
    .news-article {
        padding: 2rem 1.5rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   CASE OPENING SYSTEM STYLES
   ========================================== */

/* Cases Hero */
.cases-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(10, 0, 0, 0.95), rgba(30, 0, 0, 0.95));
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.cases-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    margin: 0 0 1rem 0;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-title i {
    color: var(--primary-red);
    animation: rotate 4s linear infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.05));
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 12px;
    min-width: 200px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.7);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cases Section */
.cases-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.cases-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-red), rgba(220, 38, 38, 0.7));
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.case-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.8), rgba(5, 0, 10, 0.8));
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.case-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.case-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.case-card:hover::before {
    opacity: 1;
}

.case-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    pointer-events: none;
}

.badge-hot, .badge-new, .badge-featured {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.case-image {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 1;
    pointer-events: none;
}

.case-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1) rotateY(10deg);
}

.case-info {
    flex: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.case-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
}

.case-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.case-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    z-index: 1;
}

.case-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
}

.case-price i {
    font-size: 1.5rem;
}

.btn-open-case {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), rgba(220, 38, 38, 0.7));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-open-case:hover {
    background: linear-gradient(135deg, #b91c1c, var(--primary-red));
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
}

/* Case Detail Page */
.case-opening-page {
    min-height: 100vh;
    background: var(--bg-dark);
}

.case-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a0a0a, #2d0f0f, #1a0a0a);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.case-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.08), transparent 70%);
    pointer-events: none;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 6px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-button:hover {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateX(-3px);
}

.case-header-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.case-image-large {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 1.5rem;
    /*background: radial-gradient(circle at center, rgba(220, 38, 38, 0.08), transparent);*/
}

.case-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent 70%);
    filter: blur(30px);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.case-3d-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(220, 38, 38, 0.4));
    animation: float-3d 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float-3d {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.case-image-large .badge-hot,
.case-image-large .badge-new {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    padding: 0.4rem 0.8rem;
    background: rgba(220, 38, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.case-info-large {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.case-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.case-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.case-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(180, 30, 30, 0.12));
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.info-box:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(180, 30, 30, 0.18));
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateX(3px);
}

.info-box-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.info-box-value {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.info-box-value i {
    font-size: 1rem;
    color: #fbbf24;
}

.btn-open-case-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-open-case-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-open-case-modern:hover:not(.disabled)::before {
    left: 100%;
}

.btn-open-case-modern:hover:not(.disabled) {
    background: linear-gradient(135deg, rgba(220, 38, 38, 1), rgba(200, 40, 40, 1));
    border-color: rgba(220, 38, 38, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.btn-open-case-modern:active:not(.disabled) {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
}

.btn-open-case-modern.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.5), rgba(80, 80, 80, 0.5));
    border-color: rgba(100, 100, 100, 0.3);
}

.btn-open-case-modern i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-open-case-modern:hover:not(.disabled) i {
    transform: rotate(-8deg);
}

/* Roulette Animation */
.case-animation-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.roulette-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.9), rgba(5, 0, 10, 0.9));
    border: 3px solid rgba(220, 38, 38, 0.5);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.roulette-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    z-index: 10;
}

.roulette-track {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 50%;
}

.roulette-item {
    flex: 0 0 180px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 10px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.roulette-item.rarity-common { border-color: #9ca3af; }
.roulette-item.rarity-uncommon { border-color: #10b981; }
.roulette-item.rarity-rare { border-color: #3b82f6; }
.roulette-item.rarity-epic { border-color: #a855f7; }
.roulette-item.rarity-legendary { border-color: #fbbf24; }

.roulette-item .item-image {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roulette-item .item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.roulette-item .item-name {
    font-size: 0.9rem;
    color: var(--text-white);
    text-align: center;
}

.opening-status {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
}

/* Result Modal */
.result-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.result-modal-content {
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.95), rgba(30, 0, 0, 0.95));
    border: 3px solid rgba(220, 38, 38, 0.5);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.result-rarity {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-rarity.rarity-common { background: linear-gradient(135deg, #9ca3af, #6b7280); }
.result-rarity.rarity-uncommon { background: linear-gradient(135deg, #10b981, #059669); }
.result-rarity.rarity-rare { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.result-rarity.rarity-epic { background: linear-gradient(135deg, #a855f7, #9333ea); }
.result-rarity.rarity-legendary { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.result-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.6));
    animation: float 3s ease-in-out infinite;
}

.result-modal-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin: 0 0 1rem 0;
}

.result-quantity {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Case Detail - Open Again Button */
.btn-open-again {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    font-family: 'Trajan Pro', serif;
}

.btn-open-again:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

/* Admin - Save News Button */
.btn-save-news {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-save-news:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Admin - Send Reply Button */
.btn-send-reply {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-send-reply:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

/* Admin - Filter Button */
.btn-filter {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-filter:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

/* Support - Create Ticket Button */
.btn-create-ticket {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    text-decoration: none;
}

.btn-create-ticket:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Support - Submit Ticket Button */
.btn-submit-ticket {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-submit-ticket:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Support - Reopen Ticket Button */
.btn-reopen-ticket {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-reopen-ticket:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Auth - Login Button */
.btn-login {
    padding: 1.125rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    width: 100%;
}

.btn-login:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Auth - Register Button */
.btn-register {
    padding: 1.125rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    width: 100%;
}

.btn-register:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Auth - Forgot Password Button */
.btn-forgot-password {
    padding: 1.125rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    width: 100%;
}

.btn-forgot-password:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Auth - Reset Password Button */
.btn-reset-password {
    padding: 1.125rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    width: 100%;
}

.btn-reset-password:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Profile - Change Password Button */
.btn-change-password {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-change-password:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Profile - Change Email Button */
.btn-change-email {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
}

.btn-change-email:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Navigation - Go Login Button */
.btn-go-login {
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    text-decoration: none;
}

.btn-go-login:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Navigation - Go Home Button */
.btn-go-home {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    text-decoration: none;
}

.btn-go-home:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Inventory - Go Shop Button */
.btn-go-shop {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    text-decoration: none;
}

.btn-go-shop:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Clan - View Clan Button */
.btn-view-clan {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(180, 30, 30, 0.9));
    color: white;
    text-decoration: none;
}

.btn-view-clan:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Case Contents */
.case-contents {
    padding: 4rem 0;
    background: #0a0a0a;
}

.case-contents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-chance-range {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-chance-range:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.item-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.item-card:hover::before {
    opacity: 1;
}

.item-card.rarity-common::before { 
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}
.item-card.rarity-uncommon::before { 
    background: linear-gradient(135deg, #10b981, #059669);
}
.item-card.rarity-rare::before { 
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.item-card.rarity-epic::before { 
    background: linear-gradient(135deg, #a855f7, #9333ea);
}
.item-card.rarity-legendary::before { 
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.item-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.item-info-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-info-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.item-info-icon i {
    font-size: 0.75rem;
    color: var(--text-white);
}

.item-chance-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.chance-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chance-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.item-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.item-image-frame {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
}

.item-image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, transparent, transparent);
    z-index: -1;
    opacity: 0.5;
}

.item-card.rarity-common .item-image-frame::before {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}
.item-card.rarity-uncommon .item-image-frame::before {
    background: linear-gradient(135deg, #10b981, #059669);
}
.item-card.rarity-rare .item-image-frame::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.item-card.rarity-epic .item-image-frame::before {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}
.item-card.rarity-legendary .item-image-frame::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.item-image-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    text-align: center;
    margin: 0.5rem 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.item-chance-bar {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.item-chance-bar span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-items i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-items p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.no-items small {
    color: rgba(239, 68, 68, 0.8);
    display: block;
    margin-top: 1rem;
}

.no-cases {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-cases i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .case-header {
        padding: 1.5rem 0;
    }
    
    .case-header-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-image-large {
        height: 250px;
        padding: 1.25rem;
    }
    
    .case-title {
        font-size: 1.75rem;
    }
    
    .case-description {
        font-size: 0.9rem;
    }
    
    .info-box {
        padding: 0.8rem 1rem;
    }
    
    .btn-open-case-modern {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-contents-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .case-header {
        padding: 1.25rem 0;
    }
    
    .back-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .case-image-large {
        height: 220px;
        padding: 1rem;
    }
    
    .case-image-glow {
        width: 100%;
        height: 100%;
    }
    
    .case-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .case-description {
        font-size: 0.85rem;
    }
    
    .case-info-large {
        gap: 1rem;
    }
    
    .case-info-boxes {
        gap: 0.6rem;
        margin: 0.4rem 0;
    }
    
    .info-box {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .info-box-label {
        font-size: 0.7rem;
    }
    
    .info-box-value {
        font-size: 0.9rem;
    }
    
    .info-box-value i {
        font-size: 0.9rem;
    }
    
    .btn-open-case-modern {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .btn-open-case-modern i {
        font-size: 1rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .result-modal-content {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .result-image {
        width: 200px;
        height: 200px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .item-image-frame {
        width: 120px;
        height: 120px;
    }
    
    .case-contents {
        padding: 2rem 0;
    }
}

/* ============================================
   RECENT DROPS SECTION - EN SON ÇIKAN İTEMLER
   ============================================ */

.recent-drops-section {
    width: 100%;
    background: rgba(15, 15, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.recent-drops-container {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.recent-drops-slider {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.recent-drops-slider::-webkit-scrollbar {
    display: none;
}

.live-badge-fixed {
    position: sticky;
    left: 0;
    flex: 0 0 140px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: rgba(30, 30, 35, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}

.live-badge-fixed::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.live-badge-fixed:hover::before {
    opacity: 1;
}

.live-icon {
    color: #fbbf24;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.live-icon i {
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-text {
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

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

.recent-drops-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: dropsBgPulse 4s ease-in-out infinite;
}

@keyframes dropsBgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}


.recent-drops-container {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.recent-drop-item {
    flex: 0 0 140px;
    min-width: 140px;
    background: rgba(25, 25, 30, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.recent-drop-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.recent-drop-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.recent-drop-item:hover::before {
    opacity: 1;
}

/* Rarity based border colors */
.recent-drop-item[data-rarity="common"] {
    border-color: rgba(156, 163, 175, 0.15);
}

.recent-drop-item[data-rarity="common"]:hover {
    border-color: rgba(156, 163, 175, 0.3);
}

.recent-drop-item[data-rarity="uncommon"] {
    border-color: rgba(16, 185, 129, 0.2);
}

.recent-drop-item[data-rarity="uncommon"]:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.recent-drop-item[data-rarity="rare"] {
    border-color: rgba(59, 130, 246, 0.2);
}

.recent-drop-item[data-rarity="rare"]:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.recent-drop-item[data-rarity="epic"] {
    border-color: rgba(168, 85, 247, 0.25);
}

.recent-drop-item[data-rarity="epic"]:hover {
    border-color: rgba(168, 85, 247, 0.45);
}

.recent-drop-item[data-rarity="legendary"] {
    border-color: rgba(251, 191, 36, 0.3);
}

.recent-drop-item[data-rarity="legendary"]:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.drop-item-badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.recent-drop-item[data-rarity="legendary"] .drop-item-badge,
.recent-drop-item[data-rarity="epic"] .drop-item-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
}

.recent-drop-item[data-rarity="rare"] .drop-item-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.recent-drop-item[data-rarity="uncommon"] .drop-item-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.recent-drop-item[data-rarity="common"] .drop-item-badge {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
}

.drop-item-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.drop-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.recent-drop-item:hover .drop-item-image img {
    transform: scale(1.1);
}

.drop-item-image i {
    font-size: 2.5rem;
    color: var(--text-gray);
    opacity: 0.4;
}

.drop-item-info {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.drop-item-name {
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    font-family: inherit;
    line-height: 1.2;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    text-align: center;
}

.drop-quantity {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.7rem;
    background: rgba(76, 175, 80, 0.15);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.drop-item-player {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Auto-scroll animation */
@keyframes slideRight {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.recent-drops-slider.auto-scroll {
    animation: slideRight 60s linear infinite;
}

.recent-drops-slider.auto-scroll:hover {
    animation-play-state: paused;
}

.recent-drops-empty {
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.recent-drops-empty i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.recent-drops-empty p {
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .recent-drops-section {
        padding: 0.75rem 0.75rem;
    }
    
    .live-badge-fixed {
        flex: 0 0 120px;
        min-width: 120px;
    }
    
    .live-icon {
        font-size: 2rem;
    }
    
    .live-text {
        font-size: 0.7rem;
    }
    
    .recent-drop-item {
        flex: 0 0 120px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .recent-drops-section {
        padding: 0.5rem 0.5rem;
    }
    
    .live-badge-fixed {
        flex: 0 0 110px;
        min-width: 110px;
        padding: 0.5rem 0.4rem;
    }
    
    .live-icon {
        font-size: 1.8rem;
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .live-text {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }
    
    .recent-drop-item {
        flex: 0 0 110px;
        min-width: 110px;
        padding: 0.5rem 0.4rem;
    }
    
    .drop-item-image {
        width: 60px;
        height: 60px;
    }
    
    .drop-item-name {
        font-size: 0.7rem;
    }
    
    .drop-item-player {
        font-size: 0.6rem;
    }
}

/* ============================================
   SHOP PAGE - FULL SCREEN MODERN DESIGN
   ============================================ */
.shop-padding{
    padding: 2rem;
}

.shop-page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Bakiye Paneli */
.shop-balance-panel {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.shop-balance-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.balance-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.balance-label {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-item:last-child .balance-label {
    color: #28a745;
}

.balance-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-family: 'Trajan Pro', serif;
}

.balance-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 2rem;
}

/* Filtre Bölümü */
.shop-filters-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.shop-filters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.shop-filters-container {
    position: relative;
    z-index: 1;
}

/* Arama Kutusu */
.shop-search-wrapper {
    margin-bottom: 2rem;
}

.shop-search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--text-gray);
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
}

.shop-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: 'Trajan Pro', serif;
    transition: all 0.3s ease;
}

.shop-search-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--red-primary);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.shop-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Kategori Filtreleri */
.shop-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.category-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--red-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.category-group-title i {
    font-size: 1.2rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-filter-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Trajan Pro', serif;
    position: relative;
    overflow: hidden;
}

.category-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-filter-btn:hover::before {
    left: 100%;
}

.category-filter-btn:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(139, 0, 0, 0.3));
    border-color: var(--red-primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    font-weight: 700;
}

.category-filter-btn.active i {
    color: var(--red-primary);
    animation: checkPulse 2s ease-in-out infinite;
}

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

/* Ürünler Bölümü */
.shop-products-section {
    width: 100%;
}

.shop-products-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
}

.shop-section-title {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Trajan Pro', serif;
}

.shop-section-title i {
    color: var(--red-primary);
    font-size: 2.2rem;
}

.product-count {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    margin-left: 0.5rem;
}

/* Ürün Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Ürün Kartı */
.shop-item-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.shop-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-item-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.shop-item-card:hover::before {
    opacity: 1;
}

.shop-item-icon {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-bottom: 3px solid var(--red-primary);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.shop-item-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.shop-item-icon .item-icon {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.shop-item-card:hover .shop-item-icon .item-icon {
    transform: scale(1.1) rotateY(5deg);
}

.shop-item-icon i {
    font-size: 4rem;
    color: var(--text-gray);
    opacity: 0.5;
}

.shop-item-header {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
}

.shop-item-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Trajan Pro', serif;
}

.shop-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
}

.shop-item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 60px;
    flex: 1;
    text-align: center;
}

.shop-price-wrapper {
    margin-top: auto;
    margin-bottom: 1rem;
}

.shop-item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    margin: 0;
    transition: all 0.3s ease;
}

.shop-item-price:hover {
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.6);
    transform: scale(1.05);
}

.shop-item-price i {
    font-size: 1.5rem;
    color: #4caf50;
}

.shop-item-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4caf50;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
    font-family: 'Trajan Pro', serif;
}

.shop-item-price-gold {
    background: rgba(255, 215, 0, 0.15) !important;
    border-color: rgba(255, 215, 0, 0.4) !important;
}

.shop-item-price-gold:hover {
    background: rgba(255, 215, 0, 0.25) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
}

.shop-item-price-gold i {
    color: #ffd700 !important;
}

.shop-item-price-gold span {
    color: #ffd700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6) !important;
}

.shop-item-quantity-wrapper {
    margin: 1rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    height: 45px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0;
}

.quantity-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quantity-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.quantity-btn.quantity-decrease:hover:not(:disabled) {
    background: rgba(220, 53, 69, 0.4);
}

.quantity-btn.quantity-increase:hover:not(:disabled) {
    background: rgba(40, 167, 69, 0.4);
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.shop-item-quantity {
    padding: 0;
    height: 45px;
    width: 70px;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
    font-family: 'Trajan Pro', serif;
}

.shop-item-quantity::-webkit-inner-spin-button,
.shop-item-quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-item-quantity:focus {
    background: rgba(255, 255, 255, 0.05);
}

.btn-shop-buy {
    flex: 1;
    height: 45px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    font-family: 'Trajan Pro', serif !important;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    padding: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-shop-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-shop-buy:hover::before {
    left: 100%;
}

.btn-shop-buy:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.btn-shop-buy:active {
    transform: translateY(0);
}

.btn-shop-buy i {
    font-size: 1.3rem;
}

/* Boş Durum */
.shop-empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(20, 20, 20, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.shop-empty-state i {
    font-size: 5rem;
    color: var(--text-gray);
    opacity: 0.5;
    display: block;
    margin-bottom: 1.5rem;
}

.shop-empty-state p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Trajan Pro', serif;
}

/* Responsive */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .shop-balance-panel {
        padding: 1.25rem 1.5rem;
    }
    
    .balance-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-filters-section {
        padding: 1.5rem;
    }
    
    .category-buttons {
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shop-section-title {
        font-size: 1.5rem;
    }
    
    .shop-balance-panel {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .balance-divider {
        width: 100%;
        height: 2px;
        margin: 0;
    }
    
    .balance-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .shop-filters-section {
        padding: 1rem;
    }
    
    .category-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .shop-item-card {
        border-radius: 12px;
    }
    
    .shop-item-icon {
        height: 180px;
    }
}

/* ========== MARKET KARTLARI ========== */
.market-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.market-card {
    position: relative;
    background: linear-gradient(160deg, rgba(25, 25, 25, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
    border: 2px solid rgba(220, 38, 38, 0.35);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.market-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}
.market-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.market-card-badge i {
    margin-right: 0.25rem;
}
.market-card[data-product-type="xp"] .market-card-badge { color: var(--red-primary); }
.market-card[data-product-type="premium"] .market-card-badge { color: #17a2b8; }
.market-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-primary);
    font-size: 2rem;
}
.market-card[data-product-type="premium"] .market-card-icon {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
}
.market-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}
.market-card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    min-height: 2.8em;
}
.market-card-value {
    margin-bottom: 0.75rem;
}
.market-card-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red-primary);
}
.market-card[data-product-type="premium"] .market-card-amount { color: #17a2b8; }
.market-card-price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1.25rem;
}
.market-card-price i {
    font-size: 1.1rem;
}
.market-card-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}
.market-card-label {
    display: block;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: -0.25rem;
}
.market-card-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-red);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
    cursor: pointer;
}
.market-card-select:focus {
    outline: none;
    border-color: var(--red-primary);
}
.market-card-hint {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}
.market-card-buy {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, #b91c1c 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: filter 0.2s ease, transform 0.05s ease;
}
.market-card-buy:hover:not(:disabled) {
    filter: brightness(1.1);
}
.market-card-buy:active:not(:disabled) {
    transform: scale(0.98);
}
.market-card-buy:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .market-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== OYUN İNDİR SAYFASI ========== */
.download-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.download-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(20, 20, 20, 0.95) 50%, rgba(10, 10, 10, 0.98) 100%);
    background-image: url('../images/game/dark-horror-infestation-online-wallpaper-14e6bc09a12b0e1a6f55704b335f6aa3.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
}
.download-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1rem;
}
.download-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.download-hero-title i {
    color: var(--red-primary);
    margin-right: 0.5rem;
}
.download-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
}
.download-page {
    padding: 2.5rem 1rem 3rem;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    min-width: 0;
}
.download-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border-red);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    min-width: 0;
}
.download-card:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: var(--red-primary);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.15);
}
.download-card-primary {
    border-width: 2px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(30, 30, 30, 0.9) 100%);
}
.download-card-primary .download-card-icon {
    background: rgba(255, 0, 0, 0.25);
    color: var(--red-primary);
}
.download-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-gray);
    flex-shrink: 0;
}
.download-card-body {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}
.download-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}
.download-card-body p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}
.download-size {
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.9;
}
.download-size i {
    margin-right: 0.25rem;
}
.download-card-action {
    width: 100%;
    flex: 1 1 100%;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--red-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    box-sizing: border-box;
}
.btn-download:hover {
    background: var(--red-light);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}
.download-notes {
    margin-top: 1rem;
}
.download-notes-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.download-notes-inner i {
    font-size: 1.5rem;
    color: var(--red-primary);
    flex-shrink: 0;
}
.download-notes-inner > div {
    min-width: 0;
    flex: 1;
}
.download-notes-inner a {
    color: var(--red-primary);
    text-decoration: none;
}
.download-notes-inner a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .download-card {
        flex-wrap: nowrap;
    }
    .download-card-action {
        width: auto;
        flex: 0 0 auto;
        align-self: center;
    }
}
/* Download sayfası – mobil optimizasyon, taşma önleme */
@media (max-width: 767px) {
    .download-hero {
        min-height: 200px;
        overflow: hidden;
    }
    .download-hero-inner {
        padding: 2rem 0.75rem;
        max-width: 100%;
    }
    .download-hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    .download-hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .download-page {
        padding: 1.5rem 0.75rem 2rem;
    }
    .download-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-width: 0;
    }
    .download-card {
        padding: 1.25rem;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
    }
    .download-card-body {
        flex: 0 1 auto;
    }
    .download-card-body h3 {
        font-size: 1.1rem;
    }
    .download-card-body p,
    .download-card-body .download-size {
        font-size: 0.85rem;
    }
    .download-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .download-card-action {
        width: 100%;
        flex: 0 0 auto;
        order: 10;
        margin-top: 0.5rem;
    }
    .download-card .btn-download,
    .download-card-action .btn-download {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        min-height: 48px;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        font-weight: 700;
        color: #fff !important;
        box-sizing: border-box;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        text-decoration: none;
    }
    .download-card .btn-download i,
    .download-card-action .btn-download i {
        color: #fff !important;
        font-size: 1.1em;
    }
    .download-notes {
        margin-top: 0.75rem;
    }
    .download-notes-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        font-size: 0.9rem;
    }
    .download-notes-inner i {
        align-self: flex-start;
    }
}
@media (max-width: 576px) {
    .download-hero-title {
        font-size: 1.4rem;
    }
    .download-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Ana sayfa slider İndir butonu */
.slider-content .btn-indir-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.9rem 1.75rem;
    background: var(--red-primary);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.slider-content .btn-indir-hero:hover {
    background: var(--red-light);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 28px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Profil – Global envanter arama ve filtre */
.global-inventory-toolbar .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}
.global-inventory-toolbar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 576px) {
    .global-inventory-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .global-inventory-toolbar > div {
        min-width: 100% !important;
    }
}