/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff0080, #ff6b35);
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 4rem;
}

.logo {
    display: inline-block;
    position: relative;
}

.hit-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.letter {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 40px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
}

.letter.h {
    background: linear-gradient(45deg, #fff 50%, #000 50%);
    background-size: 4px 4px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.letter.i {
    color: #fff;
}

.letter.t {
    background: linear-gradient(90deg, #fff 50%, #000 50%);
    background-size: 4px 4px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.letter::before {
    content: attr(data-letter);
    position: absolute;
    top: 2px;
    left: 2px;
    color: #00ff88;
    z-index: -1;
    filter: blur(1px);
}

.letter::after {
    content: attr(data-letter);
    position: absolute;
    top: -2px;
    left: -2px;
    color: #00ccff;
    z-index: -2;
    filter: blur(1px);
}



@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.4),
            0 0 60px rgba(0, 255, 136, 0.2);
    }
    to {
        text-shadow: 
            0 0 30px rgba(0, 255, 136, 1),
            0 0 50px rgba(0, 255, 136, 0.6),
            0 0 70px rgba(0, 255, 136, 0.4);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 4rem;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 400;
}





/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #00ff88;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Progress Section */
.progress-section {
    margin-bottom: 4rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #ccc;
}

.progress-percentage {
    color: #00ff88;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border-radius: 4px;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .letter {
        font-size: 4rem;
    }
    

    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    

    
    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .letter {
        font-size: 3rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .hit-text {
        gap: 0.2rem;
    }
} 