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

body {
    font-family: "Noto Sans", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    background: white;
    min-height: 100dvh;
    overflow: hidden;
}

.container {
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-logo, .code-symbol {
    position: absolute;
    opacity: 0.3;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-logo {
    width: 5vh;
    height: 5vh;
    object-fit: contain;
    filter: brightness(0.5);
}

.logo-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.logo-2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.logo-3 {
    bottom: 30%;
    left: 20%;
    animation: bounce 4s ease-in-out infinite;
}

.logo-4 {
    top: 40%;
    right: 30%;
    animation: float 7s ease-in-out infinite;
}

.logo-5 {
    top: 10%;
    left: 80%;
    animation: wiggle 5s ease-in-out infinite;
}

.logo-6 {
    bottom: 10%;
    left: 10%;
    animation: wiggle 7s ease-in-out infinite;
    animation-delay: 2s;
}

.code-symbol {
    font-size: 1.8rem;
    color: black;
    font-weight: bold;
    font-family: 'Noto Sans Mono', monospace;
    white-space: nowrap;
}

.code-1 {
    top: 15%;
    right: 20%;
    animation: rotate 15s linear infinite;
}

.code-2 {
    bottom: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.code-3 {
    top: 70%;
    left: 15%;
    animation: rotate 21s linear infinite reverse;
}

.code-4 {
    top: 30%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

/* Remove old cat-face styles */

.main-content {
    text-align: center;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    max-width: 700px;
    width: 90%;
}

.logo {
    width: 80%;
    height: auto;
}

.subtitle {
    padding-top: 2dvh;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
}

.cat-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.floating-coming-soon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.terminal {
    font-size: 1.5rem;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
    animation: bobbing 2s ease-in-out infinite;
}

.coming-soon-mini {
    font-size: 1.5rem;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
    animation: typing-bounce 1s ease-in-out infinite;
}

.code-line {
    font-family: 'Noto Sans Mono', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 2dvh;
    padding: 10px 15px;
    border-radius: 5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px rgba(2, 3, 3, 0.4);
}

.cursor {
    animation: blink 1s infinite;
    margin-left: 2px;
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes bobbing {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes typing-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .floating-logo, .code-symbol {
        width: 30px;
        height: 30px;
    }
    
    .code-symbol {
        font-size: 1.2rem;
    }
}