* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(26 26 26 / 42%) 0%, rgb(13 13 13 / 35%) 50%, rgb(26 10 10 / 48%) 100%);
    background-attachment: fixed;
    z-index: -1;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    animation: fadeInDown 1s ease-out;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.title {
    font-size: 3.5rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 1s ease-out;
}

.countdown-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.countdown-item {
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown-item:nth-child(2) {
    animation-delay: 0.1s;
}

.countdown-item:nth-child(3) {
    animation-delay: 0.2s;
}

.countdown-item:nth-child(4) {
    animation-delay: 0.3s;
}

.countdown-circle {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateZ(-90deg);
    top: 0;
    left: 0;
}

.countdown-circle-bg {
    fill: none;
    stroke: rgba(212, 175, 55, 0.1);
    stroke-width: 2;
}

.countdown-circle-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 596.9;
    stroke-dashoffset: 596.9;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transition: stroke-dashoffset 0.3s ease;
}

.countdown-item:nth-child(1) .countdown-circle-progress {
    /* Removed animation delay */
}

.countdown-item:nth-child(2) .countdown-circle-progress {
    /* Removed animation delay */
}

.countdown-item:nth-child(3) .countdown-circle-progress {
    /* Removed animation delay */
}

.countdown-item:nth-child(4) .countdown-circle-progress {
    /* Removed animation delay */
}

.countdown-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 600;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.9rem;
    color: #b8956a;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 400;
    text-transform: uppercase;
}

.subscription-section {
    display: flex;
    gap: 0;
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.subscribe-btn {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.subscribe-btn:active {
    transform: translateY(0);
}
.subscription-section {
    display: none;
}
/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes strokeAnimation {
    0% {
        stroke-dashoffset: 596.9;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -596.9;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .logo-image {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .countdown-wrapper {
        gap: 20px;
    }

    .countdown-circle {
        width: 140px;
        height: 140px;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .subscription-section {
        flex-direction: column;
    }

    .email-input {
        border-right: 1px solid rgba(212, 175, 55, 0.3);
        border-bottom: none;
    }

    .subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    
    video.background-video {
        object-position: -200px ! IMPORTANT;
    }
    .title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .logo-image {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .countdown-wrapper {
        gap: 15px;
    }

    .countdown-circle {
        width: 120px;
        height: 120px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .container {
        padding: 20px 10px;
    }
}
@media (max-width: 375px) {

    video.background-video {
        object-position: -200px ! IMPORTANT;
    }
}
