/* Demo Theme - Simple & Clean Style */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
}

.jump-button {
    display: inline-block;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 20px 0;
}

.jump-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.countdown {
    margin: 20px 0;
    font-size: 1rem;
    color: #666;
}

.countdown-number {
    font-weight: 700;
    color: #667eea;
    font-size: 1.3rem;
}

.info-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    text-align: left;
}

.info-list li {
    margin: 10px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 0.9rem;
}

.info-list a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.info-list a:hover {
    text-decoration: underline;
}

.tips {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .jump-button {
        padding: 12px 40px;
        font-size: 1rem;
    }
}
