* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 1rem;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    text-align: center;
    padding: 1rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
}

.glitch {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                 0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.construction-icon {
    font-size: 6rem;
    color: #ffd700;
    margin: 2rem 0;
    animation: bounce 2s infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    min-height: 3em;
}

.typewriter::after {
    content: '|';
    position: absolute;
    right: -2px;
    animation: blink 0.7s infinite;
    color: #ffd700;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #ffd700);
    border-radius: 4px;
    transition: width 0.5s ease;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

.thank-you-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #ffd700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.thank-you-message.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.thank-you-message i {
    color: #ff6b6b;
    animation: heartbeat 1.5s infinite;
}

.contact {
    margin-top: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #1a1a1a;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

.contact-button:hover::before {
    left: 100%;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                     0.025em 0.04em 0 #fffc00;
    }
    15% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                     0.025em 0.04em 0 #fffc00;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
                     -0.05em -0.05em 0 #fffc00;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
                     -0.05em -0.05em 0 #fffc00;
    }
    50% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
                     0 -0.04em 0 #fffc00;
    }
    99% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
                     0 -0.04em 0 #fffc00;
    }
    100% {
        text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
                     -0.04em -0.025em 0 #fffc00;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .content {
        padding: 3rem;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .construction-icon {
        font-size: 5rem;
    }
    
    .message {
        font-size: 1.2rem;
    }
    
    .contact-button {
        padding: 1rem 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    
    .content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .glitch {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .construction-icon {
        font-size: 4rem;
        margin: 1.5rem 0;
    }
    
    .message {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .progress-container {
        height: 6px;
        margin: 1.5rem 0;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 320px) {
    .content {
        padding: 1.5rem;
    }
    
    .glitch {
        font-size: 1.8rem;
    }
    
    .construction-icon {
        font-size: 3.5rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .contact-button {
        padding: 0.7rem 1.5rem;
    }
} 