* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-hover: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --red-primary: #e63946;
    --red-dark: #b82d38;
    --red-light: #ff4d5a;
    --red-glow: rgba(230, 57, 70, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 4px 20px rgba(230, 57, 70, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-blz {
    color: var(--red-primary);
    text-shadow: 0 0 20px var(--red-glow);
}

.logo-games {
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--red-primary);
}

.nav a:hover::after {
    width: 100%;
}

/* Main */
.main {
    flex: 1;
    padding: 40px 0;
}

/* Footer */
.footer {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    margin-top: auto;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--text-primary);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-red);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--red-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-red);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--red-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px var(--red-glow);
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 36px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 26px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
}

.text-red {
    color: var(--red-primary);
}

.text-muted {
    color: var(--text-secondary);
}

/* Forms */
input, textarea, select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px var(--red-glow);
}

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screenshot Cards */
.screenshot-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.screenshot-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.screenshot-card:hover img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230, 57, 70, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.screenshot-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

/* Server Cards */
.server-card {
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover::before {
    opacity: 1;
}

.server-status {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.server-status.online {
    background: #4caf50;
    box-shadow: 0 0 12px #4caf50, 0 0 24px rgba(76, 175, 80, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.server-status.offline {
    background: var(--text-secondary);
}

/* Top List */
.top-list {
    list-style: none;
}

.top-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.top-item:hover {
    background: var(--bg-hover);
    padding-left: 25px;
}

.top-item:last-child {
    border-bottom: none;
}

.top-rank {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 18px;
    border-radius: 50%;
    background: var(--bg-hover);
}

.top-rank.gold {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.top-rank.silver {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.top-rank.bronze {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #000;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.top-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 18px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.top-item:hover .top-avatar {
    border-color: var(--red-primary);
}

.top-info {
    flex: 1;
}

.top-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.top-value {
    color: var(--red-primary);
    font-weight: bold;
    font-size: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tab {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover, .tab.active {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: rgba(230, 57, 70, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Profile */
.profile-header {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--red-primary);
    box-shadow: 0 0 30px var(--red-glow);
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.profile-info h1 {
    margin-bottom: 12px;
}

.profile-stats {
    display: flex;
    gap: 35px;
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--red-primary);
}

.profile-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 25px;
    font-weight: bold;
    box-shadow: var(--shadow-red);
}

/* Transactions */
.transaction-list {
    list-style: none;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.transaction-item:hover {
    background: var(--bg-hover);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-amount {
    font-weight: bold;
    font-size: 18px;
}

.transaction-amount.positive {
    color: #4caf50;
}

.transaction-amount.negative {
    color: var(--red-primary);
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Polls */
.poll-card {
    margin-bottom: 24px;
}

.poll-option {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: var(--bg-hover);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.poll-option:hover {
    background: var(--bg-card);
    border-color: var(--red-primary);
}

.poll-option input[type="radio"] {
    width: auto;
    margin-right: 12px;
}

.poll-progress {
    height: 10px;
    background: var(--bg-hover);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.poll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light));
    border-radius: 5px;
    transition: width 0.5s ease;
}

.poll-votes {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Products */
.category-section {
    margin-bottom: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card-body {
    flex: 1;
}

.product-price {
    margin-top: auto;
    padding-top: 18px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 14px;
}

.price-new {
    font-size: 28px;
    font-weight: bold;
    color: var(--red-primary);
}

.price-discount {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 12px;
}

/* Admin Stats */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

.admin-stat-card {
    text-align: center;
    padding: 28px;
}

.admin-stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--red-primary);
}

.admin-stat-label {
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Alerts */
.messages {
    margin-bottom: 24px;
}

.alert {
    padding: 16px 22px;
    border-radius: 10px;
    margin-bottom: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.alert-error {
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid var(--red-primary);
    color: var(--red-primary);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid #ffc107;
    color: #ffc107;
}

.alert-info {
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid #2196f3;
    color: #2196f3;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 18px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ==================== */
/* Homepage Styles      */
/* ==================== */

.hero-content {
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-section, .servers-section, .screenshots-section {
    margin-top: 70px;
}

.about-section h2, .servers-section h2, .screenshots-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-section h2 svg, .servers-section h2 svg, .screenshots-section h2 svg {
    color: var(--red-primary);
}

.about-card {
    padding: 30px;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-hover);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 20px;
}

.server-players {
    margin-bottom: 10px;
}

.players-count {
    font-size: 28px;
    font-weight: bold;
    color: var(--red-primary);
}

.players-max {
    font-size: 18px;
    color: var(--text-secondary);
}

.players-label {
    color: var(--text-secondary);
    margin-left: 5px;
}

.server-details {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--red-primary);
    transform: scale(1.2);
}


/* ==================== */
/* Profile Page Styles  */
/* ==================== */

.profile-page {
    max-width: 900px;
    margin: 0 auto;
}

.profile-card {
    padding: 30px;
    margin-bottom: 25px;
}

.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.profile-avatar-wrapper {
    position: relative;
}

.profile-card .profile-avatar {
    width: 100px;
    height: 100px;
    border-width: 3px;
    background: var(--bg-hover);
}

.vip-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.profile-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid #2196f3;
    border-radius: 20px;
    font-size: 13px;
    color: #2196f3;
}

.profile-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.profile-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-hover);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-stat-item:hover {
    background: rgba(230, 57, 70, 0.1);
}

.profile-stat-item svg {
    color: var(--red-primary);
    flex-shrink: 0;
}

.stat-content {
    min-width: 0;
}

.profile-stat-item .profile-stat-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    white-space: nowrap;
}

.profile-stat-item .profile-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding: 5px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.profile-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.profile-tab svg {
    flex-shrink: 0;
}

.profile-tab:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.profile-tab.active {
    background: var(--red-primary);
    color: white;
}

.profile-tab.active svg {
    color: white;
}

/* Profile Cards */
.profile-page .card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.profile-page .card h3 svg {
    color: var(--red-primary);
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-value {
    font-weight: 500;
}

.status-linked {
    color: #4caf50;
}

.status-unlinked {
    color: var(--text-secondary);
}

.vip-status {
    color: #ffd700;
}

.kd-value {
    color: var(--red-primary);
}

.card-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Transaction improvements */
.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.transaction-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
}

.transaction-badge.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.transaction-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.transaction-badge.error {
    background: rgba(230, 57, 70, 0.2);
    color: var(--red-primary);
}

/* Server Stats */
.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.server-stat-card {
    background: var(--bg-hover);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.server-stat-card:hover {
    background: rgba(230, 57, 70, 0.1);
}

.server-stat-header {
    margin-bottom: 12px;
}

.server-stat-header h4 {
    margin-bottom: 4px;
    font-size: 15px;
}

.server-stat-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mini-stat {
    text-align: center;
    padding: 8px;
    background: var(--bg-card);
    border-radius: 6px;
}

.mini-stat-value {
    display: block;
    font-weight: bold;
    color: var(--red-primary);
    font-size: 16px;
}

.mini-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Privacy Form */
.privacy-form {
    margin-top: 15px;
}

.privacy-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-hover);
    border-radius: 10px;
    margin-bottom: 12px;
}

.privacy-option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-option-title {
    font-weight: 500;
}

.privacy-option-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--red-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Empty State Small */
.empty-state-small {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.empty-state-small svg {
    margin-bottom: 10px;
    opacity: 0.5;
}

.empty-state-small p {
    font-size: 14px;
}

/* Admin Link */
.admin-link {
    margin-top: 25px;
    text-align: center;
}

.admin-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Profile Messages */
.profile-messages {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .profile-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-tabs {
        flex-wrap: wrap;
    }
    
    .profile-tab {
        flex: 1 1 45%;
    }
    
    .profile-tab span {
        display: none;
    }
    
    .server-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== */
/* Servers Page Styles  */
/* ==================== */

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.page-header h1 svg {
    color: var(--red-primary);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.server-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.server-card-large:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 0 30px var(--red-glow);
}

.server-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, transparent 100%);
}

.server-card-header h2 {
    margin: 10px 0 0 0;
    font-size: 22px;
}

.server-card-header h2::after {
    display: none;
}

.server-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.server-status-badge.online {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.server-status-badge.offline {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.server-status-badge.online .status-dot {
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px currentColor;
}

.server-card-body {
    padding: 24px;
}

.server-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.server-location svg {
    color: var(--red-primary);
}

.server-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 14px;
}

.stat-value .players-online {
    font-size: 36px;
    font-weight: bold;
    color: var(--red-primary);
}

.stat-value .players-separator {
    font-size: 24px;
    color: var(--text-secondary);
    margin: 0 4px;
}

.stat-value .players-max {
    font-size: 24px;
    color: var(--text-secondary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.server-progress {
    margin-top: 15px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-hover);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.server-offline-state {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary);
}

.server-offline-state svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.server-offline-state p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.offline-hint {
    font-size: 13px;
    opacity: 0.7;
}

.server-offline-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(158, 158, 158, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.offline-icon {
    font-size: 20px;
}

.server-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-hover);
}

.server-address-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-label {
    color: var(--text-secondary);
    font-size: 13px;
}

.address-value {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-value:hover {
    border-color: var(--red-primary);
}

.copy-btn {
    padding: 8px 12px;
    background: var(--red-primary);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

.empty-state-large {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.empty-state-large svg {
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--text-secondary);
}

.empty-state-large h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.empty-state-large p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .server-address-box {
        flex-wrap: wrap;
    }
    
    .address-value {
        width: 100%;
        order: 3;
        margin-top: 10px;
    }
}


/* SSE Connection Indicator */
.sse-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
    background: var(--text-secondary);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sse-indicator.connected {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: none;
}

.sse-indicator.disconnected {
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Server card update animation */
.server-card[data-server-id],
.server-card-large[data-server-id] {
    transition: all 0.3s ease;
}

.server-card.updating,
.server-card-large.updating {
    border-color: var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
}


/* ==================== */
/* Legal Pages Styles   */
/* ==================== */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.legal-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--red-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    line-height: 1.8;
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--text-primary);
}

.legal-content h1:first-child {
    margin-top: 0;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--text-primary);
}

.legal-content h2::after {
    display: none;
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--red-primary);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.legal-content ul, .legal-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--red-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--red-light);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-meta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.legal-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.legal-placeholder p {
    color: var(--text-secondary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
    
    .legal-title {
        font-size: 28px;
    }
}


/* Staff Section */
.staff-section {
    margin-top: 3rem;
}

.staff-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.staff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.staff-member {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 30, 30, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.staff-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color, var(--red-primary));
    opacity: 0.8;
}

.staff-member:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color, var(--red-primary));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px color-mix(in srgb, var(--accent-color, var(--red-primary)) 20%, transparent);
}

.staff-member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color, var(--text-secondary));
    flex-shrink: 0;
}

.staff-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-details {
    flex: 1;
    min-width: 0;
}

.staff-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.25rem;
}

.staff-username {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-steam-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.staff-steam-id svg {
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .staff-cards {
        grid-template-columns: 1fr;
    }
    
    .staff-member {
        padding: 1rem;
    }
    
    .staff-icon {
        width: 44px;
        height: 44px;
    }
    
    .staff-username {
        font-size: 1rem;
    }
}


/* ==================== */
/* Admin Modal Styles   */
/* ==================== */

.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.admin-modal.active {
    display: flex;
    opacity: 1;
}

.admin-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.admin-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.admin-modal-close:hover {
    color: var(--red-primary);
    transform: scale(1.2);
}

.admin-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.admin-modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
    flex-shrink: 0;
}

.admin-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-modal-info h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
}

.admin-modal-info h2::after {
    display: none;
}

.admin-modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-modal-rating .stars {
    display: flex;
    gap: 2px;
}

.admin-modal-rating .star {
    color: var(--border-color);
    font-size: 18px;
}

.admin-modal-rating .star.filled {
    color: #ffd700;
}

.admin-modal-rating .star.half {
    background: linear-gradient(90deg, #ffd700 50%, var(--border-color) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#modalAdminRatingText {
    color: var(--text-secondary);
    font-size: 14px;
}

.admin-modal-actions {
    display: flex;
    gap: 12px;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.admin-modal-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
}

.admin-modal-reviews {
    padding: 20px 30px;
}

.admin-modal-reviews h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-modal-reviews h3::after {
    display: none;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.review-item {
    background: var(--bg-hover);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.review-item.own-review {
    border: 1px solid var(--red-primary);
    background: rgba(230, 57, 70, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-author {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    color: var(--border-color);
    font-size: 14px;
}

.review-rating .star.filled {
    color: #ffd700;
}

.review-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.no-reviews {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    font-size: 14px;
}

.review-form-container {
    padding: 20px 30px 30px;
    border-top: 1px solid var(--border-color);
}

.review-form-container h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.review-form-container h3::after {
    display: none;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-input span {
    color: var(--text-secondary);
    font-size: 14px;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating .star {
    font-size: 28px;
    color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.selected {
    color: #ffd700;
    transform: scale(1.1);
}

#reviewForm textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    resize: vertical;
    transition: all 0.3s ease;
}

#reviewForm textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px var(--red-glow);
}

#reviewForm textarea::placeholder {
    color: var(--text-secondary);
}

.review-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.char-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.review-pending-note {
    margin-top: 12px;
    padding: 10px 15px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #ffc107;
    font-size: 13px;
    text-align: center;
}

.login-prompt {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.login-prompt p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .admin-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .admin-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px 20px;
    }
    
    .admin-modal-actions {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .admin-modal-reviews,
    .review-form-container {
        padding: 15px 20px;
    }
    
    .reviews-list {
        max-height: 200px;
    }
}


/* ==================== */
/* Footer Social Links  */
/* ==================== */

.footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid var(--border-color);
    padding: 30px 0 20px;
    margin-top: auto;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--red-primary);
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--red-glow);
}

/* Specific social colors on hover */
.social-link:hover svg[viewBox="0 0 24 24"]:first-child {
    color: var(--text-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-primary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg,
    .social-link img {
        width: 20px;
        height: 20px;
    }
}
