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

:root {
    --primary-color: #FF0000;
    --secondary-color: #282828;
    --accent-color: #ffffff;
    --text-color: #333333;
    --gradient-start: #FF0000;
    --gradient-end: #CC0000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #000000;
    min-height: 100vh;
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: url('images/background.png') center center / cover no-repeat;
    background-color: #000000;
    overflow: hidden;
}

/* Background overlay for better readability */
.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo-container {
    width: 350px;
    height: 140px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.channel-name {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
}

/* Main Message */
.main-message {
    margin-bottom: 3rem;
}

.coming-soon-title {
    font-size: 4.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.2s both;
}

.description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.countdown-label {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.1);
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.countdown-label-small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0.7;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.subscription-section h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    outline: none;
    transition: var(--transition);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.subscribe-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

.subscribe-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 24px;
}

/* Social Section */
.social-section {
    animation: fadeInUp 1s ease 1s both;
}

.social-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Background Animation - Stars and Space Effects */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

/* Different sized stars - distributed across the screen */
.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    width: 2px;
    height: 2px;
    animation-delay: 0s;
    animation-duration: 2s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(2) {
    left: 30%;
    top: 40%;
    width: 3px;
    height: 3px;
    animation-delay: 1s;
    animation-duration: 2.5s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.particle:nth-child(3) {
    left: 50%;
    top: 15%;
    width: 1px;
    height: 1px;
    animation-delay: 0.5s;
    animation-duration: 3s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

.particle:nth-child(4) {
    left: 70%;
    top: 60%;
    width: 2px;
    height: 2px;
    animation-delay: 1.5s;
    animation-duration: 2.2s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(5) {
    left: 90%;
    top: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 0.8s;
    animation-duration: 2.8s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.particle:nth-child(6) {
    left: 20%;
    top: 70%;
    width: 1px;
    height: 1px;
    animation-delay: 0.3s;
    animation-duration: 2.3s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.particle:nth-child(7) {
    left: 45%;
    top: 55%;
    width: 2px;
    height: 2px;
    animation-delay: 1.2s;
    animation-duration: 2.7s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(8) {
    left: 65%;
    top: 25%;
    width: 1px;
    height: 1px;
    animation-delay: 0.7s;
    animation-duration: 3.2s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

.particle:nth-child(9) {
    left: 85%;
    top: 75%;
    width: 2px;
    height: 2px;
    animation-delay: 1.8s;
    animation-duration: 2.4s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(10) {
    left: 15%;
    top: 45%;
    width: 3px;
    height: 3px;
    animation-delay: 0.4s;
    animation-duration: 2.9s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.particle:nth-child(11) {
    left: 55%;
    top: 80%;
    width: 1px;
    height: 1px;
    animation-delay: 1.1s;
    animation-duration: 2.6s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.particle:nth-child(12) {
    left: 75%;
    top: 10%;
    width: 2px;
    height: 2px;
    animation-delay: 0.9s;
    animation-duration: 2.8s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(13) {
    left: 25%;
    top: 85%;
    width: 1px;
    height: 1px;
    animation-delay: 0.6s;
    animation-duration: 3.1s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

.particle:nth-child(14) {
    left: 40%;
    top: 5%;
    width: 3px;
    height: 3px;
    animation-delay: 1.4s;
    animation-duration: 2.5s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.particle:nth-child(15) {
    left: 95%;
    top: 65%;
    width: 2px;
    height: 2px;
    animation-delay: 1.7s;
    animation-duration: 2.7s;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Shooting stars/comets */
.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        -100px 0 2px white,
        -200px 0 1px rgba(255, 255, 255, 0.8),
        -300px 0 1px rgba(255, 255, 255, 0.6);
    animation: shooting-star 8s infinite linear;
}

.background-animation::before {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.background-animation::after {
    top: 50%;
    left: -10%;
    animation-delay: 4s;
    animation-duration: 10s;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes shooting-star {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(120vw) translateY(60vh);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        width: 450px;
        height: 180px;
    }

    .coming-soon-title {
        font-size: 3rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-item {
        padding: 1rem 0.8rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .subscription-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }

    .channel-name {
        font-size: 1.5rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label-small {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .logo-container {
        width: 350px;
        height: 140px;
    }
}
