* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-orange: #ff7e5f;
    --primary-yellow: #feb47b;
    --ocean-blue: #00c6ff;
    --deep-blue: #0072ff;
    --dark-text: #2c3e50;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
}

body {
    background: linear-gradient(135deg, #ff7e5f, #feb47b, #00c6ff, #0072ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

.sun {
    position: absolute;
    top: 50px;
    right: 10%;
    width: 100px;
    height: 100px;
    background: #fffdf0;
    border-radius: 50%;
    box-shadow: 0 0 50px #ffea00;
    z-index: -1;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

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

.nav-links a:hover {
    color: #ffea00;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary, .btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.3s, color 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-orange);
    color: #fff;
}

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

.btn-discord:hover {
    transform: translateY(-3px);
    background: #4752c4;
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.glass-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffea00;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.discord-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.discord-invite-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.1);
}

.discord-invite-box h3 {
    margin-bottom: 15px;
}

.discord-invite-box p {
    margin-bottom: 25px;
    color: #e0e0e0;
}

footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.3rem; }
    .discord-container { flex-direction: column; }
    .navbar { flex-direction: column; gap: 15px; }
}
