* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.rotate {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-weight: 300;
}

.status {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% {
        width: 75%;
    }
    50% {
        width: 85%;
    }
}

.progress-text {
    font-size: 12px;
    color: #7f8c8d;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    gap: 10px;
}

.feature {
    flex: 1;
    padding: 10px;
}

.feature .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 12px;
    color: #555;
}

.countdown {
    margin-bottom: 30px;
}

.countdown p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.time {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdd;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.redirect-url {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 20px;
}

.redirect-url a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.redirect-url a:hover {
    text-decoration: underline;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: -50px;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    left: 50%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@media (max-width: 600px) {
    .content {
        padding: 40px 25px;
    }

    h1 {
        font-size: 28px;
    }

    .features {
        flex-direction: column;
    }

    button {
        width: calc(100% - 20px);
        margin: 8px 10px;
    }
}
