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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

header {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 1px;
}

.content {
    animation: fadeIn 1.5s ease-out;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-style: italic;
}

.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    margin: 2rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.book-count {
    margin: 3rem 0;
}

.book-indicator {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.book-indicator .number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.book-indicator .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    opacity: 0.9;
}

.notify {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.notify p {
    font-size: 1rem;
    opacity: 0.9;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 2s ease-out;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .book-indicator {
        width: 100px;
        height: 100px;
    }
    
    .book-indicator .number {
        font-size: 2.5rem;
    }
}