/* General Styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    color: white;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* Main Container and Glassmorphism Box */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.content-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 40px;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: slideUp 1s ease-out;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 25px;
}

.logo {
    width: 150px;
    height: auto;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

/* Text Styling */
.main-title {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.1em;
    font-weight: 300;
    margin: 20px 0 30px 0;
    line-height: 1.6;
}

/* Store Links Styling */
.stores p {
    margin: 30px 0 15px 0;
    font-weight: 400;
}

.store-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.store-button {
    text-decoration: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.zazzle { background-color: #d32f2f; }
.redbubble { background-color: #e53935; }
.teepublic { background-color: #c2185b; }

.zazzle:hover { border-color: #d32f2f; background-color: transparent; }
.redbubble:hover { border-color: #e53935; background-color: transparent; }
.teepublic:hover { border-color: #c2185b; background-color: transparent; }

/* Countdown Styling (Updated) */
.countdown {
    margin-top: 40px; /* Added margin for spacing */
}

.countdown p {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-size: 1.1em; /* Made slightly smaller */
}

#timer {
    font-size: 2em; /* Made the timer smaller */
    font-weight: 600; /* Adjusted font weight */
    letter-spacing: 4px; /* Reduced letter spacing */
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    color: #f1c40f; /* Changed color for visibility */
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title { font-size: 2.2em; }
    #timer { font-size: 1.5em; letter-spacing: 3px; } /* Adjusted for mobile */
    .content-box { padding: 30px; }
    .logo { width: 120px; }
}