@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0a0b10;
    --bg-secondary: #13151e;
    --bg-card: #1a1d29;
    --accent-gold: #e2b714;
    --accent-gold-hover: #f3cc32;
    --accent-red: #e74c3c;
    --text-primary: #ededed;
    --text-muted: #8d93a5;
    --border-color: #2a2e40;
    --glow: 0 0 15px rgba(226, 183, 20, 0.4);
    --ui-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Floating Glassmorphism Navbar */
.navbar {
    background: rgba(15, 17, 26, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(226, 183, 20, 0.3);
    padding: 0 15px;
    margin: 18px auto;
    width: 95%;
    max-width: 1300px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 18px;
    height: 68px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    background: rgba(15, 17, 26, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 0;
}

.logo img {
    display: block;
    height: 46px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(226, 183, 20, 0.8));
    transition: transform 0.24s var(--ui-ease), filter 0.24s var(--ui-ease);
}

.logo:hover img {
    transform: translateY(-1px) scale(1.01);
    filter: drop-shadow(0 0 14px rgba(226, 183, 20, 0.55));
}

.footer-logo img {
    height: 54px;
}

.site-logo-image {
    width: auto !important;
    height: 34px !important;
    max-width: 220px;
    max-height: 34px;
    object-fit: contain;
}

.footer-logo-image {
    width: auto !important;
    height: 48px !important;
    max-width: 260px;
    object-fit: contain;
}

@keyframes pulseLogo {
    0% {
        filter: drop-shadow(0 0 5px rgba(226, 183, 20, 0.5));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(226, 183, 20, 1));
        transform: scale(1.05);
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(226, 183, 20, 0.5));
        transform: scale(1);
    }
}

.nav-links {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(226, 183, 20, 0.1);
    color: var(--accent-gold);
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.24s var(--ui-ease),
        box-shadow 0.24s var(--ui-ease),
        background-color 0.24s var(--ui-ease),
        border-color 0.24s var(--ui-ease),
        color 0.24s var(--ui-ease),
        opacity 0.24s var(--ui-ease);
    -webkit-tap-highlight-color: transparent;
}

:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 32%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent);
    opacity: 0;
    transform: skewX(-20deg) translateX(-180%);
    transition: transform 0.55s var(--ui-ease), opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger):hover::after,
:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger):focus-visible::after {
    opacity: 1;
    transform: skewX(-20deg) translateX(420%);
}

:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger):active {
    transform: translateY(1px) scale(0.985);
}

:is(button, .btn-primary, .btn-outline, .nav-btn, .filter-reset, .mobile-menu-overlay a, .dropdown-link, .dropdown-action, .dropdown-footer-link, .notif-trigger, .profile-trigger):focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 183, 20, 0.14), 0 0 0 1px rgba(226, 183, 20, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    border: 1px solid rgba(226, 183, 20, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-outline:hover {
    background: rgba(226, 183, 20, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 14px 26px rgba(226, 183, 20, 0.18);
    transform: translateY(-2px);
}

.nav-mobile-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.24s var(--ui-ease), color 0.24s var(--ui-ease);
}

.nav-mobile-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8920b);
    color: #000;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow);
    transition: transform 0.24s var(--ui-ease), box-shadow 0.24s var(--ui-ease), filter 0.24s var(--ui-ease);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(226, 183, 20, 0.28), 0 0 25px rgba(226, 183, 20, 0.35);
    filter: saturate(1.05);
}

/* Modern Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-content {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 60px;
}

.slider-content h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.slider-content h1 span {
    color: var(--accent-gold);
}

.slider-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin-bottom: 22px;
    font-weight: 500;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.slider-btn {
    padding: 11px 28px !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(226, 183, 20, 0.3) !important;
    border: 1px solid rgba(226, 183, 20, 0.5) !important;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-2px) scale(1.04);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-gold);
    width: 55px;
}

/* Animations */
.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-up-delay-1 {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.animate-up-delay-2 {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slider-item.active .animate-up,
.slider-item.active .animate-up-delay-1,
.slider-item.active .animate-up-delay-2 {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .slider-content h1 {
        font-size: 3rem;
    }

    .hero-slider {
        height: 500px;
    }
}

/* Main Layout */
.container {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

/* Server List */
.section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.server-card {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 183, 20, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.server-card.premium {
    border: 1px solid rgba(226, 183, 20, 0.4);
    background: linear-gradient(180deg, #161925 0%, #0f111a 100%);
    box-shadow: 0 0 20px rgba(226, 183, 20, 0.1);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.card-banner-wrapper {
    width: 100%;
    height: 120px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-logo {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 2px solid #0f111a;
    background: #0f111a;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.card-content {
    padding: 35px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.server-name {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin: 0;
    word-break: break-word;
}

.golden-star {
    color: var(--accent-gold);
    background: rgba(226, 183, 20, 0.1);
    padding: 8px;
    border-radius: 6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(226, 183, 20, 0.05);
}

.badge-outline-gray {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.badge-outline-blue {
    border: 1px solid #3498db;
    color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-stats {
    display: flex;
    gap: 15px;
}

.card-stats span {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
}

.btn-review {
    background: var(--accent-gold);
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-review:hover {
    background: var(--accent-gold-hover);
    box-shadow: 0 0 15px rgba(226, 183, 20, 0.5);
    transform: translateY(-2px);
}

/* Sidebar & Ads */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ad-box {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-box:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 16px 28px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
}

.ad-box-placeholder {
    padding: 22px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(226,183,20,0.12), transparent 30%),
        linear-gradient(160deg, rgba(26,29,41,0.98), rgba(16,18,28,0.98));
}

.ad-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 220px;
    color: #d6dbea;
}

.ad-placeholder-content i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.25rem;
    color: var(--accent-gold);
    border: 1px solid rgba(226,183,20,0.2);
    background: rgba(226,183,20,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.ad-placeholder-content strong {
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
}

.ad-placeholder-content span {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.header-dropdown {
    position: relative;
}

.notif-trigger {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    cursor: pointer;
    padding: 8px 10px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.notif-trigger:hover,
.notif-trigger[aria-expanded="true"] {
    color: #fff;
    border-color: rgba(226,183,20,0.26);
    background: rgba(226,183,20,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.profile-menu {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 12px;
    background: rgba(226, 183, 20, 0.05);
    border: 1px solid rgba(226, 183, 20, 0.2);
    cursor: pointer;
}

.profile-trigger:hover,
.profile-menu:focus-within .profile-trigger,
.profile-menu.is-open .profile-trigger {
    background: rgba(226, 183, 20, 0.1);
    border-color: rgba(226, 183, 20, 0.32);
    box-shadow: 0 14px 24px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.profile-trigger .chevron {
    transition: transform 0.24s var(--ui-ease), color 0.24s var(--ui-ease);
}

.profile-menu:hover .profile-trigger .chevron,
.profile-menu:focus-within .profile-trigger .chevron,
.profile-menu.is-open .profile-trigger .chevron {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.dropdown-menu {
    max-width: calc(100vw - 24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ui-ease);
}

.dropdown-menu.is-open,
.profile-menu.is-open .dropdown-menu,
.profile-menu:hover .dropdown-menu,
.profile-menu:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dropdown-shell {
    background: #11131c;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    backdrop-filter: blur(14px);
}

.dropdown-link,
.dropdown-action,
.dropdown-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    z-index: 1;
}

.dropdown-link {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
}

.dropdown-link:hover,
.dropdown-action:hover,
.dropdown-footer-link:hover {
    background: rgba(255,255,255,0.05);
}

.dropdown-link.admin-link {
    color: #2ecc71;
    font-weight: 700;
}

.dropdown-link.mod-link {
    color: #60a5fa;
    font-weight: 700;
}

.dropdown-link-danger {
    color: #e74c3c;
    font-weight: 700;
}

.dropdown-action {
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.dropdown-footer-link {
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    background: transparent;
    cursor: pointer;
    text-align: left;
    z-index: 1;
}

.notification-item.unread {
    background: rgba(226,183,20,0.04);
}

.notification-item:hover {
    background: rgba(255,255,255,0.04);
}

.notification-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s var(--ui-ease);
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 24px;
    border-radius: 18px;
    background: rgba(17,19,28,0.96);
    border: 1px solid rgba(226, 183, 20, 0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.38);
    backdrop-filter: blur(14px);
}

.cookie-banner-text {
    color: #cbd5e1;
    font-size: 0.82rem;
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 5%;
    text-align: center;
    width: 100%;
    position: relative;
}

.footer-text {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.company-notice {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(226, 183, 20, 0.05);
    border: 1px solid rgba(226, 183, 20, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.company-notice span {
    color: var(--accent-gold);
    font-weight: 700;
}

/* ======================================
   RESPONSIVE - COMPREHENSIVE MOBILE
   ====================================== */

/* === Tablet & Small Desktop (max-width: 992px) === */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        margin: 30px auto;
        padding: 0 15px;
        gap: 25px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-mobile-btn {
        display: block;
    }

    .navbar {
        height: 65px;
        margin: 12px auto;
        padding: 0 15px;
        top: 12px;
        width: 96%;
    }

    .server-card {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .server-banner {
        width: 100%;
        height: 150px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .server-header {
        flex-direction: column;
        gap: 12px;
    }

    .server-meta {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-slider {
        height: 380px;
    }

    .slider-content h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .slider-content p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    .slider-content {
        padding: 0 30px;
    }

    .slider-btn {
        padding: 10px 22px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 22px;
        height: 3px;
    }

    .dot.active {
        width: 42px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .card-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    .card-actions {
        gap: 10px;
    }

    /* Footer responsive */
    footer {
        padding: 40px 4%;
    }

    .company-notice {
        font-size: 0.75rem;
        padding: 8px 18px;
    }
}

/* === Mobile (max-width: 768px) === */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .navbar {
        height: 58px;
        margin: 10px auto;
        padding: 0 12px;
        top: 10px;
        width: 96%;
        border-radius: 14px;
    }

    .logo img {
        height: 40px;
    }

    .site-logo-image {
        height: 30px !important;
        max-width: 190px;
        max-height: 30px;
    }

    .footer-logo-image {
        height: 42px !important;
        max-width: 230px;
    }

    .nav-mobile-btn {
        font-size: 1.3rem;
    }

    .hero-slider {
        height: 320px;
    }

    .slider-content {
        padding: 0 18px;
    }

    .slider-content h1 {
        font-size: 1.45rem;
        margin-bottom: 10px;
    }

    .slider-content p {
        font-size: 0.82rem;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .slider-btn {
        padding: 9px 18px !important;
        font-size: 0.72rem !important;
        border-radius: 8px !important;
    }

    .slider-nav {
        padding: 0 8px;
    }

    .nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .slider-dots {
        bottom: 14px;
        gap: 6px;
    }

    .dot {
        width: 22px;
        height: 3px;
    }

    .dot.active {
        width: 40px;
    }

    .container {
        margin: 20px auto;
        padding: 0 12px;
        gap: 20px;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Server Card Mobile */
    .server-card {
        margin-bottom: 18px;
        border-radius: 10px;
    }

    .card-banner-wrapper {
        height: 90px;
    }

    .card-logo {
        width: 55px;
        height: 55px;
        bottom: -18px;
        left: 15px;
        border-radius: 10px;
    }

    .card-content {
        padding: 28px 15px 15px 15px;
    }

    .card-title-row {
        margin-bottom: 10px;
    }

    .server-name {
        font-size: 1rem;
    }

    .golden-star {
        padding: 6px;
        font-size: 0.85rem;
    }

    .card-badges {
        gap: 6px;
        margin-bottom: 12px;
    }

    .badge {
        padding: 4px 8px;
        font-size: 0.65rem;
    }

    .card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .card-stats {
        gap: 12px;
        width: 100%;
    }

    .card-stats span {
        font-size: 0.78rem;
    }

    .card-actions {
        width: 100%;
        justify-content: space-between;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .btn-review {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .premium-badge {
        padding: 4px 30px;
        font-size: 0.65rem;
        top: 12px;
        right: -30px;
    }

    /* Sidebar hide on mobile or show below */
    .sidebar {
        display: none;
    }

    /* Ad boxes */
    .ad-box {
        height: 200px;
    }

    /* Footer Mobile */
    footer {
        padding: 30px 5%;
    }

    footer .logo img {
        height: 46px;
    }

    .footer-text {
        font-size: 0.78rem;
        margin-bottom: 18px;
    }

    .company-notice {
        font-size: 0.7rem;
        padding: 8px 15px;
        border-radius: 30px;
    }
}

/* === Small Mobile (max-width: 480px) === */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .navbar {
        height: 52px;
        margin: 8px auto;
        top: 8px;
        padding: 0 10px;
        border-radius: 12px;
    }

    .logo img {
        height: 34px;
    }

    .site-logo-image {
        height: 26px !important;
        max-width: 160px;
        max-height: 26px;
    }

    .footer-logo-image {
        height: 36px !important;
        max-width: 200px;
    }

    .nav-mobile-btn {
        font-size: 1.2rem;
    }

    .hero-slider {
        height: 260px;
    }

    .slider-content {
        padding: 0 12px;
    }

    .slider-content h1 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .slider-content p {
        font-size: 0.72rem;
        margin-bottom: 12px;
        line-height: 1.35;
    }

    .slider-btn {
        padding: 7px 14px !important;
        font-size: 0.65rem !important;
        border-radius: 6px !important;
    }

    .nav-btn {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        border-radius: 6px;
    }

    .slider-nav {
        padding: 0 5px;
    }

    .slider-dots {
        bottom: 8px;
        gap: 5px;
    }

    .dot {
        width: 16px;
        height: 2px;
    }

    .dot.active {
        width: 30px;
    }

    .container {
        margin: 15px auto;
        padding: 0 10px;
        gap: 15px;
    }

    .section-title {
        font-size: 1.05rem;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .server-card {
        margin-bottom: 14px;
        border-radius: 8px;
    }

    .card-banner-wrapper {
        height: 75px;
    }

    .card-logo {
        width: 45px;
        height: 45px;
        bottom: -15px;
        left: 12px;
        border-radius: 8px;
    }

    .card-content {
        padding: 22px 12px 12px 12px;
    }

    .server-name {
        font-size: 0.9rem;
    }

    .golden-star {
        padding: 5px;
        font-size: 0.75rem;
    }

    .card-badges {
        gap: 5px;
        margin-bottom: 10px;
    }

    .badge {
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .card-stats span {
        font-size: 0.72rem;
    }

    .status-badge {
        font-size: 0.63rem;
        padding: 4px 8px;
    }

    .btn-review {
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    .premium-badge {
        font-size: 0.6rem;
        top: 8px;
        right: -28px;
        padding: 3px 28px;
    }

    footer {
        padding: 25px 4%;
    }

    footer .logo img {
        height: 40px;
    }

    .footer-text {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .company-notice {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
}

/* === Extra Small Mobile (max-width: 360px) === */
@media (max-width: 360px) {
    .navbar {
        height: 48px;
        margin: 6px auto;
        top: 6px;
        padding: 0 8px;
    }

    .logo img {
        height: 28px;
    }

    .site-logo-image {
        height: 22px !important;
        max-width: 135px;
        max-height: 22px;
    }

    .footer-logo-image {
        height: 30px !important;
        max-width: 170px;
    }

    .hero-slider {
        height: 220px;
    }

    .slider-content h1 {
        font-size: 1rem;
    }

    .slider-content p {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .slider-btn {
        padding: 6px 12px !important;
        font-size: 0.6rem !important;
        border-radius: 5px !important;
    }

    .nav-btn {
        display: none;
    }
}

/* ========================================
   MOBILE SIDEBAR MENU
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 11, 16, 0.98);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    z-index: 998;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s var(--ui-ease);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-overlay a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(226, 183, 20, 0.1);
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transform: translateX(-8px);
    opacity: 0;
    transition:
        transform 0.28s var(--ui-ease),
        opacity 0.28s ease,
        background-color 0.24s ease,
        color 0.24s ease,
        border-color 0.24s ease;
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active {
    color: var(--accent-gold);
    background: rgba(226, 183, 20, 0.05);
    border-radius: 8px;
}

.mobile-menu-overlay.active a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active a:nth-of-type(1) { transition-delay: 0.04s; }
.mobile-menu-overlay.active a:nth-of-type(2) { transition-delay: 0.07s; }
.mobile-menu-overlay.active a:nth-of-type(3) { transition-delay: 0.1s; }
.mobile-menu-overlay.active a:nth-of-type(4) { transition-delay: 0.13s; }

.mobile-menu-overlay a i {
    color: var(--accent-gold);
    width: 22px;
    text-align: center;
    font-size: 1rem;
}

.mobile-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-actions .btn-primary,
.mobile-actions .btn-outline {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-inner {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .mobile-menu-overlay {
        padding: 70px 15px 15px;
    }

    .mobile-menu-overlay a {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-text {
        font-size: 0.76rem;
    }

    .mobile-menu-overlay {
        padding: 60px 12px 12px;
    }

    .mobile-menu-overlay a {
        padding: 11px 8px;
        font-size: 0.85rem;
        gap: 10px;
    }
}
