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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.header {
    padding: 2rem 2rem 0;
    text-align: center;
}

.logo h1 {
    font-family: 'UnifrakturCook', cursive;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)); }
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.mystery-text {
    margin-bottom: 3rem;
}

.coming-soon {
    font-family: 'Luxurious Script', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: textShimmer 4s ease-in-out infinite;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #a0a0a0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.mailing-list {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.email-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-group:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.email-input::placeholder {
    color: #888888;
    transition: color 0.3s ease;
}

.email-input:focus::placeholder {
    color: #aaaaaa;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateX(2px);
}

.submit-btn:active {
    transform: translateX(0);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.privacy-text {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

.historical-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.historical-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03;
    filter: blur(1px) sepia(100%) hue-rotate(240deg) saturate(0.5);
    animation: historicalFloat 30s ease-in-out infinite;
}

@keyframes historicalFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: translate(-48%, -52%) scale(1.25) rotate(0.5deg);
        opacity: 0.05;
    }
    50% {
        transform: translate(-52%, -48%) scale(1.15) rotate(-0.3deg);
        opacity: 0.02;
    }
    75% {
        transform: translate(-49%, -51%) scale(1.3) rotate(0.2deg);
        opacity: 0.04;
    }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 0;
    }
    
    .logo h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }
    
    .coming-soon {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .submit-btn {
        border-radius: 0 0 15px 15px;
        justify-content: center;
    }
    
    .email-input {
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 0.03em;
    }
    
    .historical-image {
        opacity: 0.02;
        filter: blur(2px) sepia(100%) hue-rotate(240deg) saturate(0.3);
    }
}