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

body {
    font-family: 'Avenir', 'Avenir Light', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    background: radial-gradient(ellipse at 30% 20%, rgba(174, 135, 70, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(241, 211, 128, 0.1) 0%, transparent 50%),
                #262A2E;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content {
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.progress-container {
    margin-bottom: 3rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #d4a574 0%, #e8c68a 100%);
    border-radius: 4px;
    animation: progressAnimation 2s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 60%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.logo {
    width: 280px;
    max-width: 80%;
    height: auto;
    margin: 2rem 0;
}

.info {
    margin: 2rem 0;
}

.info p {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-weight: 300;
}

.notify-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #e8c68a 100%);
    color: #2c3e50;
    border: none;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Avenir', 'Avenir Light', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

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

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .logo {
        width: 220px;
    }

    .info p {
        font-size: 0.875rem;
    }
}
