﻿:root {
    --bg-body: #020617;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --container-width: 1240px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-body: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1), transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-pad {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-full {
    width: 100%;
}

.bg-darker {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .bg-darker {
    background: #f1f5f9;
}

.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.top-left {
    top: -200px;
    left: -200px;
    background: var(--primary);
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: var(--accent);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: none !important;
    transition: var(--transition);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e2e8f0 !important;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(2, 6, 23, 0.95);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.desktop-menu {
    display: flex;
    gap: 5px;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .desktop-menu {
    border-color: transparent;
    background: transparent;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .nav-link:hover {
    background: #f1f5f9;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    z-index: 1100;
}

.dropdown-menu.wide-menu {
    width: 340px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-muted);
}

.drop-item:hover {
    background: var(--primary);
    color: #fff !important;
}

.drop-item:hover * {
    color: #fff;
}

.drop-item strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--bg-body);
    border-left: 1px solid var(--glass-border);
    padding: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s ease, visibility 0.4s ease;
}

.mobile-side-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.m-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.m-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.1rem;
    color: var(--text-main);
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    border-color: var(--glass-border);
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(125, 125, 125, 0.1);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.btn-icon:hover {
    color: var(--warning);
    border-color: var(--warning);
    transform: rotate(15deg);
}

[data-theme="light"] #icon-sun {
    display: none;
}

[data-theme="dark"] #icon-moon {
    display: none;
}

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.badge-glow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.pricing-section {
    padding: 0 0 120px;
    margin-top: -60px;
}

.server-table-wrapper {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0;
    overflow: hidden;
}

.filter-section-inline {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-bottom: 2px solid var(--glass-border);
}

.filter-group-inline {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.filter-buttons-inline {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.server-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr 1.2fr 1fr 1.3fr;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--glass-border);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr 1.2fr 1fr 1.3fr;
    gap: 20px;
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: rgba(99, 102, 241, 0.05);
    border-left: 4px solid var(--primary);
    padding-left: 26px;
}

.table-row.hidden {
    display: none;
}

.th-col,
.td-col {
    display: flex;
    flex-direction: column;
}

.td-col strong {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.td-col small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.col-product .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: fit-content;
}

.product-badge.intel {
    background: var(--primary);
    color: #fff;
}

.product-badge.amd {
    background: var(--danger);
    color: #fff;
}

.product-badge.epyc {
    background: var(--warning);
    color: #fff;
}

.product-info strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.col-price {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 0.75rem;
    color: var(--success);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.grid-3,
.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.f-card,
.adv-card {
    padding: 40px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
}

.f-card:hover,
.adv-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
}

.icon-box,
.ac-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--primary);
    transition: 0.3s;
}

.f-card:hover .icon-box,
.adv-card:hover .ac-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg);
}

.f-card h4,
.adv-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-head p {
    font-size: 1.1rem;
}

.benchmark-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
}

.bench-table {
    width: 100%;
}

.bt-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    gap: 20px;
}

.bt-row.head {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 2px solid var(--glass-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bt-row.highlight {
    background: rgba(99, 102, 241, 0.05);
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    margin: 0 -16px;
    border-radius: 4px;
}

.bt-col {
    display: flex;
    align-items: center;
}

.cpu-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.tag {
    font-size: 0.75rem;
    background: var(--primary);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 5px;
}

.score-val {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

.score-val.muted {
    color: var(--text-muted);
    font-weight: 600;
}

.bench-note {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.os-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.os-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.os-box i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--text-muted);
    transition: 0.3s;
}

.os-box span {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.os-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    opacity: 0.7;
}

.os-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(99, 102, 241, 0.25);
}

.os-box:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0;
    background: rgba(125, 125, 125, 0.03);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.faq-box summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--text-main);
    font-size: 1.05rem;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary i {
    transition: 0.3s;
    color: var(--primary);
}

.faq-box[open] {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.faq-box[open] summary i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 25px 25px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 0;
    line-height: 1.7;
}

.footer-new {
    margin-top: 0;
    padding: 80px 0 30px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

[data-theme="light"] .footer-new {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-box {
    background: rgba(125, 125, 125, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(125, 125, 125, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-text {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
}

.floating-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #25D366;
}

.floating-support:hover .support-icon {
    transform: rotate(360deg);
    transition: 0.3s;
}

@media (max-width: 1024px) {

    .desktop-menu,
    .nav-actions .btn:not(.mobile-toggle) {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .bt-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .filter-section-inline {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .filter-group-inline {
        gap: 10px;
    }

    .filter-buttons-inline {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .table-header {
        display: none;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .table-row:hover {
        padding-left: 20px;
        border-left: 1px solid var(--glass-border);
    }

    .td-col::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }

    .col-product::before {
        content: 'Ürün';
    }

    .col-cpu::before {
        content: 'CPU';
    }

    .col-ram::before {
        content: 'RAM';
    }

    .col-disk::before {
        content: 'Disk';
    }

    .col-network::before {
        content: 'Network';
    }

    .col-price::before {
        content: 'Fiyat';
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bt-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .glass-panel {
        padding: 30px 20px;
    }

    .server-table-wrapper {
        padding: 0;
    }

    .filter-section-inline {
        padding: 15px;
        gap: 15px;
    }

    .table-row {
        padding: 15px;
    }

    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .btn-sm {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner p {
    color: #475569;
}

[data-theme="light"] .cookie-banner a {
    color: #4f46e5;
}


.theme-hint {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    z-index: 1200;
    pointer-events: none;
    opacity: 0;
    animation: slideInHint 0.5s forwards, bounceHint 2s infinite 0.5s;
}

.theme-hint::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--primary);
}

.theme-hint.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: 0.5s;
}

@keyframes slideInHint {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounceHint {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}
