@font-face {
    font-family: 'norsebold';
    src: url('../fonts/norse-bold-webfont.woff2') format('woff2'),
         url('../fonts/norse-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #ddd;
    margin: 0;
    padding: 0;
    background-image: url('/assets/images/bg-texture.jpg');
    background-attachment: scroll;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
}

.header-logo {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    z-index: 1001;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.header-logo:hover {
    transform: translateY(10px);
}

.header-svg {
    color: #fff;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-menu ul li a {
    color: #fff;
    font-family: 'norsebold', sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #d4af37;
    text-decoration: none;
}

.social-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 38px;
    color: #fff;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-menu ul li a:hover,
.social-menu ul li a.active {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .btn {
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 0 20px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    text-decoration: none;
    backface-visibility: hidden;
}

.header-actions .btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: flex-end;
    }
    .main-menu {
        display: none; /* Hide on mobile for now or implement burger */
    }
    .social-menu {
        display: none;
    }
}

/* Burger Menu & Mobile Overlay */
.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    transition: color 0.2s;
}

.burger-menu-btn:hover {
    color: #fff;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-menu-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.mobile-nav {
    text-align: center;
    width: 100%;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav ul li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-nav ul li:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav ul li a {
    font-family: 'norsebold', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav ul li a:hover {
    color: #d4af37;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.mobile-social a {
    color: #888;
    font-size: 1.8rem;
    transition: all 0.2s;
}

.mobile-social a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .burger-menu-btn {
        display: block;
    }
    /* Hide header actions on very small screens if needed, or keep them */
    /* .header-actions { display: none; } */
}

/* Layout */
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #333;
    flex-shrink: 0;
}

.sidebar h3 {
    color: #d4af37;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 5px;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #333;
}

.main-content h2 {
    color: #d4af37;
    margin-top: 0;
}

/* Server List Table */
table.server-list {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table.server-list th, table.server-list td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

table.server-list th {
    background-color: #252525;
    color: #d4af37;
}

table.server-list tr:hover {
    background-color: #252525;
}

/* Forms */
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 3px;
}

button {
    background-color: #d4af37;
    color: #111;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover {
    background-color: #b5922b;
}

/* Footer */
.site-footer {
    position: relative;
    padding: 80px 20px 30px; /* Increased top padding to account for the jagged edge */
    margin-top: 40px;
    z-index: 1;
    flex-shrink: 0;
}

.footer-bg {
    position: absolute;
    top: -50px; /* Move up to create the overlap effect */
    left: 0;
    width: 100%;
    height: calc(100% + 50px); /* Extend height to cover the moved up area */
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,1)), url('/assets/images/bg-texture.jpg');
    background-size: cover;
    background-position: center;
    clip-path: url(#footer-mask);
    z-index: -1;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.footer-nav ul li {
    margin: 0;
    border: none;
    padding: 0;
}

.footer-nav ul li a {
    color: #bbb;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #d4af37;
    text-decoration: none;
}

.footer-social {
    margin-bottom: 25px;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social ul li {
    margin: 0;
}

.footer-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social ul li a:hover {
    background-color: #d4af37;
    transform: translateY(-3px);
}

.footer-social ul li a svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

.footer-social ul li a:hover svg {
    fill: #111;
}

.footer-copyright {
    color: #666;
    font-size: 0.85em;
    margin: 20px 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #222;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .site-footer {
        padding: 40px 15px 20px;
    }
}

/* Hero / About Section */
.hero-section {
    position: relative;
    padding: 100px 20px 150px; /* Increased bottom padding for jagged edge */
    color: #fff;
    margin-bottom: 40px;
    z-index: 1;
    overflow: hidden;
}

/* LCP-optimiertes Background Image */
.hero-bg-image {
    clip-path: url(#hero-mask);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px; /* Align with container padding */
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #ddd;
    font-weight: 600;
}

.hero-title {
    font-family: 'norsebold', sans-serif;
    font-size: 3.5em;
    font-weight: normal;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-text {
    max-width: 600px;
    font-size: 1.15em;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    .hero-section {
        padding: 60px 20px;
    }
}

/* Decorated Header (Neuigkeiten) */
.section-header-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
    position: relative;
}

.decoration-line {
    height: 2px;
    flex-grow: 1;
    max-width: 200px;
    background-color: #d4af37;
    position: relative;
    opacity: 0.8;
}

.decoration-line.left {
    background: linear-gradient(to right, transparent, #d4af37);
}

.decoration-line.right {
    background: linear-gradient(to left, transparent, #d4af37);
}

.decoration-icon {
    width: 12px;
    height: 12px;
    background-color: #d4af37;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    flex-shrink: 0;
}

.decoration-icon img {
    display: none; /* Fallback to CSS shape */
}

.section-header-decorated .section-title {
    font-family: 'norsebold', sans-serif;
    font-size: 3em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    padding: 0 10px;
}

/* News Section */
.latest-news-section {
    max-width: 1600px; /* Match header width */
    margin: 0 auto 60px;
    padding: 0 30px; /* Match header padding */
}

/* Override the default news-container width when inside latest-news-section */
.latest-news-section .news-container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.news-featured-container {
    width: 100%;
}

.news-featured {
    display: flex;
    flex-direction: row;
    background-color: #000;
    text-decoration: none;
    color: #fff;
    width: 100%;
    /* Removed fixed min-height to allow content to dictate height */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-decoration: none;
}

.news-featured-image {
    width: 66.666%;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Increased height for better aspect ratio */
}

.news-featured-image .image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute; /* Ensure it fills the container */
    top: 0;
    left: 0;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-featured-content {
    width: 33.333%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    position: relative;
    z-index: 1;
    min-height: 600px; /* Match image height */
}

.small-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.small-heading .news-label {
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9em;
    color: #fff;
    margin: 0;
}

.decoration-icon-small {
    width: 10px;
    height: 10px;
    background-color: #555; /* Muted color for the icon */
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-icon-small img {
    display: none;
}

.decoration-line-small {
    height: 1px;
    background-color: #555;
    flex-grow: 1;
    max-width: 100px;
}

.news-featured-title {
    font-family: 'norsebold', sans-serif;
    font-size: 3.5em;
    line-height: 1;
    margin: 0 0 30px 0;
    color: #fff;
    text-transform: uppercase;
}

.news-featured-date {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.news-featured-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.more-row {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.read-more-featured {
    color: #d4af37;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.read-more-featured::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: #d4af37;
}

.read-more-featured::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #d4af37;
    border-right: 1px solid #d4af37;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1024px) {
    .news-featured {
        flex-direction: column;
    }
    .news-featured-image, .news-featured-content {
        width: 100%;
    }
    .news-featured-image {
        height: 300px;
    }
    .news-featured-content {
        padding: 40px;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.section-header h2 {
    font-family: 'norsebold', sans-serif;
    font-size: 2.5em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all {
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.btn-view-all:hover {
    color: #fff;
    text-decoration: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-link:hover {
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #d4af37;
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #0a0a0a;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.news-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

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

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.news-label {
    color: #d4af37;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.news-date {
    color: #888;
}

.news-title {
    font-family: 'norsebold', sans-serif;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.news-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card:hover .news-title a {
    color: #d4af37;
}

.news-excerpt {
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    margin-top: auto;
}

.read-more:hover {
    color: #fff;
    text-decoration: none;
}

/* News Page Specifics */
.news-page-header {
    padding: 80px 20px 150px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    min-height: 250px;
}

.news-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 470px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/assets/images/news-header.jpg');
    background-size: cover;
    background-position: center;
    clip-path: url(#hero-mask);
    z-index: -1;
}

.news-page-header h1 {
    font-family: 'norsebold', sans-serif;
    font-size: 3.5em;
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Server List Card Design */
.card-server {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.card-server:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #444;
}

.card-rank {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #d4af37;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 0.9em;
    z-index: 10;
    border-bottom-right-radius: 4px;
}

.server-banner-container {
    overflow: hidden;
    position: relative;
}

.server-banner img {
    width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card-server:hover .server-banner img {
    transform: scale(1.05);
}

.server-tags {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    margin-top: auto;
}

.srv-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.server-content {
    padding: 20px;
}

.server-title {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    font-family: 'norsebold', sans-serif;
    letter-spacing: 1px;
}

.server-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.server-title a:hover {
    color: #d4af37;
}

.server-description {
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.server-stats-col {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
    border-left: 1px solid #2a2a2a;
    background-color: #1a1a1a;
}

.box-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background-color: #252525;
    border-radius: 4px;
    min-width: 80px;
}

.box-stats i {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 5px;
}

.box-stats.vote-box i {
    color: #d4af37;
}

.box-stats .count {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

.box-stats .label {
    font-size: 0.7em;
    text-transform: uppercase;
    color: #888;
    margin-top: 2px;
}

.box-reviews {
    text-align: center;
    color: #d4af37;
    font-size: 0.8em;
}

.card-footer {
    background-color: #151515;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a2a;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 0.9em;
}

.slots-info var {
    color: #fff;
    font-style: normal;
    font-weight: bold;
}

.discord-link {
    color: #7289da;
    font-size: 1.2em;
    transition: color 0.2s ease;
}

.discord-link:hover {
    color: #fff;
}

.footer-actions {
    display: flex;
    gap: 10px;
}

.btn-visit, .btn-vote {
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-visit {
    background-color: #333;
    color: #fff;
}

.btn-visit:hover {
    background-color: #444;
    color: #fff;
    text-decoration: none;
}

.btn-vote {
    background-color: #d4af37;
    color: #000;
}

.btn-vote:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .server-stats-col {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid #2a2a2a;
        justify-content: space-around;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-actions {
        width: 100%;
    }
    
    .btn-visit, .btn-vote {
        flex: 1;
        text-align: center;
    }
}
