/* Base Reset and Variables */
:root {
    --honey-gold: #FFD700;
    --honey-amber: #FFA500;
    --honey-dark: #CC8400;
    --bee-black: #1a1a1a;
    --bee-yellow: #FFD93D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--honey-dark);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--honey-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--honey-gold);
}

/* Main Content */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--honey-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.server-ip {
    display: inline-block;
    padding: 15px 30px;
    background: var(--honey-dark);
    color: white;
    font-size: 24px;
    border-radius: 10px;
    margin: 20px 0;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.server-ip:hover {
    transform: scale(1.05);
    background: var(--honey-amber);
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Stats Section */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(40, 40, 40, 0.9);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--honey-gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 36px;
    color: var(--honey-gold);
    font-weight: bold;
    margin-bottom: 5px;
}

/* Server List */
.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.server-card {
    background: rgba(40, 40, 40, 0.9);
    border: 2px solid var(--honey-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: var(--honey-gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.server-card h3 {
    color: var(--honey-gold);
    margin: 10px 0;
    font-size: 20px;
}

.player-bar {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    height: 20px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.player-fill {
    background: linear-gradient(90deg, var(--honey-dark), var(--honey-gold));
    height: 100%;
    transition: width 0.3s ease;
}

.player-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--honey-gold);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: var(--honey-amber);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--honey-gold);
    border: 2px solid var(--honey-gold);
}

.btn-secondary:hover {
    background: var(--honey-gold);
    color: #1a1a1a;
}

/* Footer */
footer {
    background: rgba(26, 26, 26, 0.95);
    border-top: 2px solid var(--honey-dark);
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--honey-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--honey-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .server-ip {
        font-size: 18px;
        padding: 12px 20px;
    }
    
    .quick-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Loading State */
.loading {
    color: #888;
    font-style: italic;
}

/* Section Headings */
h2 {
    text-align: center;
    color: var(--honey-gold);
    margin: 40px 0;
    font-size: 32px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
EOF < /dev/null