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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: url('2025-12-05_01.06.58.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #fff;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 3rem 2rem;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.info-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #66BB6A;
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.info-box ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.info-box li {
    font-size: 1.1rem;
    line-height: 2;
    color: #e0e0e0;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Server Info */
.server-info {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.server-info p {
    margin-bottom: 0.5rem;
}

.server-info strong {
    color: #4CAF50;
    font-size: 1.2rem;
}

.server-address {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    color: #66BB6A;
    font-weight: bold;
    margin: 0.5rem 0;
}

.server-address-alt {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #81C784;
    margin: 0.5rem 0 1rem 0;
}

.server-port {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #A5D6A7;
    margin: 0.5rem 0 1rem 0;
}

.server-port span {
    color: #66BB6A;
    font-weight: bold;
}

.important-note {
    color: #FFB74D;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

#server-info {
    scroll-margin-top: 100px;
}

/* Staff Section */
.staff-section {
    padding: 3rem 2rem;
    min-height: calc(100vh - 150px);
}

.staff-section h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.staff-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.staff-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.5);
}

.staff-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.staff-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #4CAF50;
    object-fit: cover;
}

.staff-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: center;
}

.role {
    text-align: center;
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.staff-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.verse-box {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.verse-title {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verse-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.verse-reference {
    text-align: right;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.quote-box {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    text-align: center;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .main-logo {
        max-width: 200px;
    }

    .nav-links {
        gap: 1rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }
}
