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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a14;
    color: #ffffff;
    overflow: hidden;
}

.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #101026 0%, #0a0a14 70%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: none;
    z-index: 1;
    opacity: 0.3;
}

.content-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

#logo-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 15rem;
    letter-spacing: 15px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(65, 105, 225, 0.7), 0 0 30px rgba(30, 144, 255, 0.4);
    position: relative;
    display: inline-block;
}

.step-inside-btn {
    position: relative;
    padding: 1.5rem 3.5rem;
    font-size: 1.5rem;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(65, 105, 225, 0.5);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.step-inside-btn:hover {
    border-color: rgba(65, 105, 225, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(65, 105, 225, 0), rgba(65, 105, 225, 0.3), rgba(65, 105, 225, 0));
    background-size: 200% 100%;
    pointer-events: none;
    transform: translateX(-100%);
}

.step-inside-btn:hover .btn-glow {
    animation: btn-glow 2s infinite;
}

@keyframes btn-glow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Character animation classes */
.char {
    display: inline-block;
    transition: all 0.3s ease;
}

.scrambled {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 5px #1E90FF, 0 0 10px #4169E1;
}

.hidden-char {
    opacity: 0;
    transform: translateY(10px);
}

/* Hyperspace animation */
.hyperspace-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hyperspace-active {
    opacity: 1;
}

.hyperspace-star {
    display: none;
}

.hyperspace-digit {
    position: absolute;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    transform: translateZ(-1000px);
    text-shadow: 0 0 5px rgba(65, 105, 225, 0.5);
}

@keyframes hyperspace-init {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes hyperspace-exit {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animation when transitioning out */
.transition-out {
    animation: hyperspace-init 1.5s ease forwards;
}

/* Media queries */
@media (max-width: 768px) {
    #logo-text {
        font-size: 8rem;
    }
    
    .logo-container {
        gap: 3rem;
    }
    
    .step-inside-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #logo-text {
        font-size: 5rem;
        letter-spacing: 8px;
    }
    
    .step-inside-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 