@font-face {
    font-family: 'Redaction';
    src: url('./fonts/Redaction70-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Redaction';
    src: url('./fonts/Redaction70-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    font-size: 14px;
}

.logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.logo img {
    height: 2rem;
    width: auto;
    background: transparent;
}

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

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.title {
    font-family: 'Redaction', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title .word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.8s ease-out forwards;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title .word:nth-child(1) { animation-delay: 1.2s; }
.title .word:nth-child(2) { animation-delay: 1.4s; }
.title .word:nth-child(3) { animation-delay: 1.6s; }
.title .word:nth-child(4) { animation-delay: 1.8s; }

.description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
}

.description .word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.6s ease-out forwards;
}

.description .word:nth-child(1) { animation-delay: 2.0s; }
.description .word:nth-child(2) { animation-delay: 2.1s; }
.description .word:nth-child(3) { animation-delay: 2.2s; }
.description .word:nth-child(4) { animation-delay: 2.3s; }
.description .word:nth-child(5) { animation-delay: 2.4s; }
.description .word:nth-child(6) { animation-delay: 2.5s; }
.description .word:nth-child(7) { animation-delay: 2.6s; }
.description .word:nth-child(8) { animation-delay: 2.7s; }
.description .word:nth-child(9) { animation-delay: 2.8s; }
.description .word:nth-child(10) { animation-delay: 2.9s; }
.description .word:nth-child(11) { animation-delay: 3.0s; }

.notify-btn {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
}

.notify-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.notify-btn:active {
    transform: translateY(1px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .content {
        max-width: 100%;
    }
    
    .title {
        margin-bottom: 1.5rem;
    }
    
    .description {
        margin-bottom: 2.5rem;
        font-size: 1.125rem;
    }
    
    .notify-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .logo img {
        height: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .notify-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
