* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 100, 255, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255, 0, 150, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.header {
    text-align: center;
    padding: 2rem 0;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 100, 255, 0.5);
}

.highlight {
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-section {
    max-width: 800px;
    margin-bottom: 3rem;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: #cccccc;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    width: 65%;
    border-radius: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

.thank-you {
    font-size: 1.1rem;
    color: #aaaaaa;
    font-style: italic;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 500px;
}

.development-team h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
    text-align: center;
}

.agency-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.label {
    color: #00d4ff;
    font-weight: 600;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #888888;
    font-size: 0.9rem;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00d4ff;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 10%;
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
    }
    10% {
        transform: translateY(90vh) scale(1);
    }
    90% {
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
    }
}

@media (max-width: 768px) {
    .info-section {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
}
