* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #1a3a52 50%, #0f2847 100%);
    background-attachment: fixed;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}


header {
    background: rgba(10, 25, 47, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(100, 200, 255, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #64c8ff;
    text-shadow: 0 0 15px rgba(100, 200, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 12px; 
}

.logo-image {
    width: 45px; 
    height: 45px;
    border-radius: 50%; 
    border: 2px solid #64c8ff; 
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.4); 
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #64c8ff;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    position: relative;
    display: inline-block;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    padding: 25px 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}


.hero-content h1::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(
        from 0deg,
        #64c8ff,
        #3b82f6,
        #60a5fa,
        #93c5fd,
        #64c8ff
    );
    border-radius: 18px;
    z-index: -1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}


section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #64c8ff;
}


.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(100, 200, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 200, 255, 0.5);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.15);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #64c8ff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
}


.about {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid rgba(100, 200, 255, 0.2);
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}


.rules {
    max-width: 1200px;
    margin: 0 auto;
}

.rules-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.rules-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(100, 200, 255, 0.2);
}

.rules-column h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #64c8ff;
}

.rules-column ul {
    list-style: none;
    padding: 0;
}

.rules-column li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.rules-column li:last-child {
    border-bottom: none;
}

.rules-column li::before {
    content: "✓ ";
    color: #64c8ff;
    font-weight: bold;
    margin-right: 12px;
}


.team {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(100, 200, 255, 0.2);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 200, 255, 0.5);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    border: 3px solid rgba(100, 200, 255, 0.3);
}

.team-member h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #64c8ff;
}

.team-role {
    font-size: 16px;
    color: rgba(100, 200, 255, 0.8);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}


.join {
    max-width: 1200px;
    margin: 0 auto;
}

.join-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid rgba(100, 200, 255, 0.2);
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 3px solid rgba(100, 200, 255, 0.3);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #64c8ff;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.join-button {
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.join-button.discord {
    background: linear-gradient(135deg, #5865f2, #7289da);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.join-button.discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.5);
}

.join-button.server {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.join-button.server:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}


footer {
    background: rgba(10, 25, 47, 0.8);
    padding: 60px 20px 20px;
    border-top: 2px solid rgba(100, 200, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #64c8ff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #64c8ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 200, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
        padding: 20px 30px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .rules-content,
    .team-grid,
    .join-steps {
        grid-template-columns: 1fr;
    }

    .about-content,
    .join-content {
        padding: 30px;
    }

    nav {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
        padding: 15px 25px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 35px;
    }
}