/* Coming Soon Page - Cyberpunk Theme CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Matrix Background */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.15) 0%, rgba(0, 52, 69, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Logo and Header */
.header-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    padding: 10px;
    background: rgba(0, 52, 69, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.5), 0 0 60px rgba(0, 188, 212, 0.3);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 188, 212, 0.5), 0 0 60px rgba(0, 188, 212, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), 0 0 80px rgba(0, 188, 212, 0.5);
        transform: scale(1.05);
    }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00bcd4 0%, #00ffff 50%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}

.tagline {
    font-size: 18px;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* Status Badge */
.status-container {
    margin: 30px 0;
    animation: fadeIn 1.5s ease;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 188, 212, 0.1);
    border: 2px solid #00bcd4;
    border-radius: 50px;
    color: #00ffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3), inset 0 0 20px rgba(0, 188, 212, 0.1);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #00bcd4;
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.3), inset 0 0 20px rgba(0, 188, 212, 0.1);
    }
    50% {
        border-color: #00ffff;
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 30px rgba(0, 188, 212, 0.2);
    }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ffff;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Countdown Section */
.countdown-section {
    margin: 40px 0;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-box {
    position: relative;
    background: rgba(0, 52, 69, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00bcd4, #00ffff, #00bcd4);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.countdown-box:hover::before {
    opacity: 0.3;
}

.countdown-box:hover {
    transform: translateY(-10px);
    border-color: #00bcd4;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.4), 0 0 30px rgba(0, 188, 212, 0.2);
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #00ffff;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 14px;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Info Section */
.info-section {
    max-width: 900px;
    margin: 50px auto;
    animation: fadeIn 1.5s ease 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.info-card {
    background: rgba(0, 52, 69, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.info-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #00ffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.info-card p {
    color: #b3e5fc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Notify Section */
.notify-section {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    animation: fadeIn 1.5s ease 0.9s both;
}

.notify-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.notify-form {
    display: flex;
    gap: 12px;
}

.notify-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(0, 52, 69, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 188, 212, 0.4);
    border-radius: 12px;
    color: #00ffff;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.notify-form input::placeholder {
    color: rgba(0, 188, 212, 0.5);
}

.notify-form input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(0, 52, 69, 0.6);
}

.notify-form button {
    padding: 16px 35px;
    background: linear-gradient(135deg, #00bcd4 0%, #00ffff 100%);
    border: none;
    border-radius: 12px;
    color: #003445;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.notify-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6);
    background: linear-gradient(135deg, #00ffff 0%, #00bcd4 100%);
}

/* Social Links */
.social-section {
    margin-top: 50px;
    text-align: center;
    animation: fadeIn 1.5s ease 1.2s both;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(0, 52, 69, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 188, 212, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(0, 188, 212, 0.2);
    border-color: #00ffff;
    color: #00ffff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

/* Footer */
.footer-text {
    margin-top: 40px;
    color: rgba(0, 188, 212, 0.6);
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
}

/* Flash Message */
.flash-message {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px 30px;
    background: rgba(0, 52, 69, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #00bcd4;
    border-radius: 12px;
    color: #00ffff;
    font-size: 16px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.5);
    animation: slideInRight 0.5s ease, fadeOut 0.5s ease 2.5s forwards;
    max-width: 400px;
}

.flash-message.error {
    border-color: #ff4444;
    color: #ff8888;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .countdown-value {
        font-size: 42px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .notify-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .countdown-value {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-card h2 {
        font-size: 22px;
    }

    .info-card p {
        font-size: 16px;
    }
}
