@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: #a0a0a0;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% -20%, #1a1a1a 0%, #050505 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.navbar-container {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 1rem;
}

.navbar-island {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #fff;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-item.highlight {
    background: #fff;
    color: #000;
    padding: 8px 18px;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-item.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.nav-discord-login {
    background: #5865F2;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-discord-login:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.nav-discord-login img {
    height: 16px;
    width: auto;
}

.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px 5px 5px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #5865F2;
}

.nav-username {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.logout-link {
    font-size: 0.65rem;
    color: #ff4444;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 5px;
}

.logout-link:hover {
    color: #ff6666;
}

.nav-item.highlight::after {
    display: none;
}

.hero {
    margin-top: 50px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: clamp(200px, 40vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    width: 100%;
    text-align: left;
}

.info-column h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.info-column h1 span {
    color: var(--secondary-text);
}

.info-column p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    max-width: 500px;
}

.info-column.right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
}

.time-box {
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    min-width: 80px;
    border-radius: 8px;
}

.num {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.unit {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--secondary-text);
    letter-spacing: 1px;
}

.discord-link {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 1rem 3rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-5px);
    background: #e0e0e0;
}

.secret-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    z-index: 1000;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 50px rgba(255,255,255,0.5);
}

.secret-text.active {
    opacity: 1;
}

.ebebebeb {
    animation: glitch 0.2s infinite;
}

.secret-mode::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
    pointer-events: none;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}

@media (max-width: 1024px) {
    .navbar-island {
        gap: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-item {
        font-size: 0.65rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .info-column.right {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar-island {
        border-radius: 20px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
    }
    
    .nav-logo-wrapper {
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
