@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #ffffff;
    --secondary: rgba(255, 255, 255, 0.7);
    --accent: #8b5cf6;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    background: #050510;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    filter: blur(2px);
    z-index: -1;
    animation: zoomOut 20s ease-out infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 1, 15, 0.3) 0%, rgba(5, 5, 16, 0.8) 100%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.main-logo {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.minimal-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.minimal-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.notify-container {
    margin-bottom: 4rem;
}

.notify-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #9d50bb);
    color: #fff;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.notify-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.count-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 18px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.count-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.count-val {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.count-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 8px;
}

.footer {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 300;
}

.powered-by {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.powered-by:hover {
    color: var(--accent);
}

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

@media (max-width: 768px) {
    .minimal-header h1 { font-size: 2.2rem; }
    .main-logo { max-width: 250px; }
    .countdown { gap: 0.8rem; }
    .count-item { min-width: 80px; padding: 15px; }
    .count-val { font-size: 1.8rem; }
}
