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

body {
    font-family: 'Minecraft', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

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

.hero {
    padding: 60px 0;
    text-align: center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><rect width="100" height="100" fill="%23333"/><rect x="10" y="10" width="10" height="10" fill="%23666"/><rect x="30" y="10" width="10" height="10" fill="%23666"/><rect x="50" y="10" width="10" height="10" fill="%23666"/></svg>');
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #3b3b3b, 8px 8px 0 rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: none; opacity: 1; }
    7% { transform: skew(-0.5deg, -0.9deg); opacity: 0.75; }
    10% { transform: none; opacity: 1; }
    27% { transform: none; opacity: 1; }
    30% { transform: skew(0.8deg, -0.1deg); opacity: 0.75; }
    35% { transform: none; opacity: 1; }
    52% { transform: none; opacity: 1; }
    55% { transform: skew(-1deg, 0.2deg); opacity: 0.75; }
    50% { transform: none; opacity: 1; }
    72% { transform: none; opacity: 1; }
    75% { transform: skew(0.4deg, 1deg); opacity: 0.75; }
    80% { transform: none; opacity: 1; }
    100% { transform: none; opacity: 1; }
}

.subtitle {
    font-size: 1.5em;
    color: #aaffaa;
    margin-bottom: 40px;
}

.server-info {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 2px solid #3a3a3a;
    backdrop-filter: blur(5px);
}

.online-counter {
    font-size: 2em;
    margin-bottom: 20px;
}

.online-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

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

.server-ip, .server-version {
    font-size: 1.3em;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.ip-address {
    font-family: monospace;
    font-size: 1.2em;
    color: #ffaa00;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

.copy-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 10px;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #45a049;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature h3 {
    color: #ffaa00;
    margin-bottom: 10px;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #ffaa00;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.btn {
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: #ffaa00;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
}

.btn-primary:hover {
    background: #ffbb22;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffaa00;
}

.btn-secondary:hover {
    background: rgba(255, 170, 0, 0.1);
    transform: scale(1.05);
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

.status-online {
    color: #00ff00;
    font-weight: bold;
    animation: blink 2s infinite;
}

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

.update-info {
    font-size: 0.9em;
    opacity: 0.6;
    margin-top: 10px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    .online-counter { font-size: 1.5em; }
    .features { grid-template-columns: 1fr; }
    .social-proof { flex-direction: column; gap: 20px; }
    .cta-buttons { flex-direction: column; }
}
EOF
