/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d0b4d 50%, #5d1876 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(93, 24, 118, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    letter-spacing: 1px;
}

.yeti {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pixels {
    color: #9d4edd;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
}

.snowflake {
    font-size: 2.5rem;
    margin-left: 15px;
    animation: spin 10s linear infinite;
}

.slogan {
    font-size: 1.3rem;
    color: #d0b3e6;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Construction Area */
.construction-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.construction-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.status {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(157, 78, 221, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.status-indicator span {
    font-weight: 600;
    color: #ffffff;
}

.status h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d0b3e6;
    margin-bottom: 30px;
}

/* Loading Section */
.loading-section {
    background: rgba(29, 9, 48, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.loading-header {
    text-align: center;
    margin-bottom: 30px;
}

.loading-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading-header p {
    color: #d0b3e6;
    font-size: 1rem;
}

.loading-container {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Snowflake Animation */
.snowflake-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake-animation .snowflake {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: floatSnowflake 15s infinite linear;
}

.snowflake-animation .snowflake:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.snowflake-animation .snowflake:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.snowflake-animation .snowflake:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 1rem;
}

.snowflake-animation .snowflake:nth-child(4) {
    bottom: 15%;
    right: 25%;
    animation-delay: 6s;
    font-size: 1.3rem;
}

.snowflake-animation .snowflake:nth-child(5) {
    top: 40%;
    left: 30%;
    animation-delay: 8s;
    font-size: 1.4rem;
}

.snowflake-animation .snowflake:nth-child(6) {
    top: 60%;
    right: 35%;
    animation-delay: 10s;
    font-size: 1.1rem;
}

/* Loading Button */
.loading-button-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 25px;
}

.loading-button {
    width: 100%;
    padding: 20px 30px;
    background: rgba(93, 24, 118, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loading-button:hover {
    background: rgba(93, 24, 118, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text::before {
    content: '❄️';
    font-size: 1.2rem;
}

.btn-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #5d1876 0%, #9d4edd 100%);
    border-radius: 0 5px 5px 0;
    animation: progressPulse 2s infinite ease-in-out;
}

.btn-percentage {
    font-size: 1rem;
    background: rgba(157, 78, 221, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    color: #ffffff;
}

.loading-note {
    text-align: center;
    color: #d0b3e6;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Loading Stats */
.loading-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    z-index: 2;
    position: relative;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 140px;
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-3px);
}

.stat i {
    color: #9d4edd;
    font-size: 1.2rem;
}

.stat span {
    color: #ffffff;
}

.stat strong {
    color: #ffffff;
    margin-left: 5px;
}

/* Countdown */
.countdown {
    text-align: center;
    padding: 20px;
    background: rgba(93, 24, 118, 0.2);
    border-radius: 15px;
    margin-top: 20px;
}

.countdown h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 10px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.time-unit:hover {
    transform: translateY(-5px);
    background: rgba(157, 78, 221, 0.3);
}

.time-unit span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #fff;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
}

.time-unit small {
    font-size: 0.9rem;
    color: #d0b3e6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #9d4edd;
    transition: transform 0.3s, background 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(157, 78, 221, 0.1);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card p {
    color: #d0b3e6;
    line-height: 1.5;
}

.contact-card a {
    color: #9d4edd;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.fb {
    background: rgba(59, 89, 152, 0.2);
    color: #8b9dc3;
    border: 1px solid rgba(59, 89, 152, 0.5);
}

.fb:hover {
    background: rgba(59, 89, 152, 0.4);
    color: #fff;
}

.ig {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.5);
}

.ig:hover {
    background: rgba(225, 48, 108, 0.4);
    color: #fff;
}

/* Newsletter */
.newsletter {
    text-align: center;
    background: rgba(93, 24, 118, 0.2);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter p {
    color: #d0b3e6;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

#newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

#newsletter-form input:focus {
    outline: none;
    border-color: #9d4edd;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

#newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#newsletter-form button {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #5d1876 0%, #9d4edd 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

#newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d0b3e6;
    font-size: 0.9rem;
}

.footer-snowflakes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-snowflakes .snowflake {
    font-size: 1.2rem;
    animation: float 3s infinite ease-in-out;
}

.footer-snowflakes .snowflake:nth-child(2) {
    animation-delay: 0.5s;
}

.footer-snowflakes .snowflake:nth-child(3) {
    animation-delay: 1s;
}

/* Snowflakes Background */
.snowflakes-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

@keyframes floatSnowflake {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(30px, 40px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(60px, 20px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(30px, 60px) rotate(270deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .construction-content {
        flex-direction: column;
    }
    
    .status {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .status h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-unit span {
        font-size: 2rem;
    }
    
    .loading-stats {
        gap: 10px;
    }
    
    .stat {
        min-width: 120px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
    
    .status h2 {
        font-size: 1.7rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 5px;
    }
    
    .time-unit span {
        font-size: 1.7rem;
    }
    
    .newsletter {
        padding: 30px 20px;
    }
    
    #newsletter-form input, #newsletter-form button {
        width: 100%;
    }
    
    .loading-button {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .btn-percentage {
        align-self: flex-end;
    }
    
    .loading-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
}