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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
    overflow-x: hidden;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 160px;
    height: 160px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.4));
}

/* Brand Title */
.brand-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Tagline */
.tagline {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Coming Soon Message */
.coming-soon-message {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff00d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 1rem;
    color: #aaaaaa;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Loading Indicator */
.loading-indicator {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    transition: transform 2s ease-in-out;
}

.spinner-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff00d4);
    animation: bounce 1.4s ease-in-out infinite both;
}

.spinner-ring:nth-child(1) { animation-delay: -0.32s; }
.spinner-ring:nth-child(2) { animation-delay: -0.16s; }
.spinner-ring:nth-child(3) { animation-delay: 0s; }

.loading-text {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Contact Info */
.contact-info {
    animation: fadeInUp 1s ease-out 1.3s both;
}

.contact-text {
    color: #666666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.email-label {
    color: #888888;
    font-size: 0.8rem;
}

.email-address {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-address:hover {
    color: #ff00d4;
}


/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 0, 212, 0.1) 0%, transparent 70%);
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
    }
    50% { 
        filter: drop-shadow(0 15px 40px rgba(255, 0, 212, 0.4));
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Responsive Design - Optimized for Web and Mobile Ratios */
@media (max-width: 1200px) {
    .content-wrapper {
        max-width: 500px;
    }
    
    .logo-image {
        width: 140px;
        height: 140px;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 0.5rem;
    }
    
    .content-wrapper {
        max-width: 90%;
        padding: 0 0.5rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .logo-image {
        width: 120px;
        height: 120px;
    }
    
    .brand-title {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-message {
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .coming-soon-description {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 400px;
    }
    
    .loading-indicator {
        margin-bottom: 1.5rem;
    }
    
    .loading-spinner {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .spinner-ring {
        width: 8px;
        height: 8px;
    }
    
    .loading-text {
        font-size: 0.8rem;
    }
    
    .contact-info {
        margin-top: 0.5rem;
    }
    
    .contact-text {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .email-label, .email-address {
        font-size: 0.75rem;
    }
    
    
    .bg-circle {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 0.25rem;
    }
    
    .content-wrapper {
        max-width: 95%;
        padding: 0 0.25rem;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .brand-title {
        font-size: 1.75rem;
        margin-bottom: 0.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon-title {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .coming-soon-description {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 350px;
    }
    
    .loading-indicator {
        margin-bottom: 1rem;
    }
    
    .spinner-ring {
        width: 6px;
        height: 6px;
    }
    
    .loading-text {
        font-size: 0.75rem;
    }
    
    .contact-text {
        font-size: 0.7rem;
    }
    
    .email-label, .email-address {
        font-size: 0.7rem;
    }
    
    
    .bg-circle {
        display: none;
    }
}

@media (max-width: 360px) {
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .coming-soon-title {
        font-size: 1.1rem;
    }
    
    .coming-soon-description {
        font-size: 0.75rem;
        max-width: 300px;
    }
    
    .spinner-ring {
        width: 5px;
        height: 5px;
    }
    
    .loading-text {
        font-size: 0.7rem;
    }
    
}