/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a1a1a, #2c3e50, #1a1a1a, #34495e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
header {
    background: rgba(34, 34, 34, 0.9);
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

header nav {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9em;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.bans {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn.discord {
    background: linear-gradient(45deg, #7289da, #5865f2);
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
}

.btn.bhop {
    background: linear-gradient(45deg, #ffcc33, #ff8c00);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn.skins {
    background: linear-gradient(45deg, #ff4d4d, #b30000);
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    background: rgba(34, 34, 34, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Title and Tagline */
h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.highlight {
    color: #ff6f61;
}

.tagline {
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #cccccc;
}

/* Server Status */
.server-status {
    margin: 20px 0;
    width: 100%;
    overflow: hidden;
}

/* Connect Section */
.connect-section {
    margin: 20px 0;
}

.btn.connect {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    background: linear-gradient(45deg, #ff6f61, #ffcc00);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.btn.connect:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.6);
}

.connect-note {
    margin-top: 10px;
    font-size: 0.8em;
    color: #cccccc;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    text-align: center;
    font-size: 0.8em;
    color: #888;
}

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

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6f61;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo img {
        max-width: 120px;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 8px 16px;
        font-size: 0.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .tagline {
        font-size: 0.8em;
    }

    .btn.connect {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .connect-note {
        font-size: 0.7em;
    }

    .server-status iframe {
        height: 80px;
    }
}

/* Policy and Terms Content */
.policy-content, .terms-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(34, 34, 34, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.policy-content h3, .terms-content h3 {
    font-size: 1.5em;
    margin-top: 20px;
    color: #ff6f61;
}

.policy-content p, .terms-content p {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 15px;
}

.policy-content ul, .terms-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.policy-content ul li, .terms-content ul li {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 10px;
}

.policy-content a, .terms-content a {
    color: #ff6f61;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover, .terms-content a:hover {
    color: #ffcc00;
}