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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    color: #ffffff;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
}

.logo-icon {
    width: 180px;
    max-width: 45vw;
    height: auto;
}

.heart-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    font-size: 56px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-cyan {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.logo-purple {
    color: #9d4edd;
    font-size: 32px;
    margin-left: 5px;
}

.main-text {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
}

.discount-badge {
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.discount-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #ff6b00);
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(255, 0, 102, 0.5);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-timer {
    margin-bottom: 40px;
}

.timer-label {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 100px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.timer-value {
    font-size: 36px;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    line-height: 1;
}

.timer-label-small {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.timer-separator {
    font-size: 36px;
    font-weight: bold;
    color: #00ffff;
    margin: 0 5px;
}

.gradient-button {
    background: linear-gradient(90deg, #00ffff 0%, #9d4edd 100%);
    border: none;
    color: #ffffff;
    padding: 20px 60px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 80px;
}

.gradient-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.5);
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #ffffff;
}

.tagline-icon {
    font-size: 24px;
}

.tagline-text {
    letter-spacing: 0.5px;
}

.tagline-brand {
    color: #00ffff;
    font-weight: bold;
}

.rocket-icon {
    font-size: 28px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 36px;
    }
    
    .logo-purple {
        font-size: 20px;
    }
    
    .heart-icon {
        font-size: 36px;
    }
    
    .main-text {
        font-size: 24px;
    }
    
    .discount-text {
        font-size: 22px;
        padding: 10px 30px;
    }
    
    .timer-label {
        font-size: 16px;
    }
    
    .timer-block {
        padding: 10px 15px;
        min-width: 80px;
    }
    
    .timer-value {
        font-size: 28px;
    }
    
    .timer-label-small {
        font-size: 12px;
    }
    
    .timer-separator {
        font-size: 28px;
    }
    
    .gradient-button {
        padding: 18px 45px;
        font-size: 18px;
    }
    
    .tagline {
        font-size: 16px;
        flex-wrap: wrap;
    }
}


