/* Base Styles (Mobile First) */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-color: #6a0dad;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.coming-soon {
    margin-top: 20px; /* Default margin for mobile */
}

.coming-soon h1 {
    font-size: 30px; /* Base size for mobile */
    margin-bottom: 10px;
}

.timer {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    font-size: 20px; /* Slightly smaller font for mobile */
}

.timer div {
    margin: 4px 0; /* Reduced spacing for stacked layout */
}

.email-signup {
    margin-top: 15px;
}

.email-signup input[type="email"],
.email-signup input[type="submit"] {
    padding: 8px; /* Reduced padding for smaller devices */
    font-size: 13px; /* Smaller font size for mobile */
    width: 85%; /* Adjusted width to ensure it fits well on small screens */
    border-radius: 25px;
    border: none;
    outline: none;
}

.email-signup input[type="submit"] {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-top: 8px; /* Reduced margin above button */
}

.email-signup input[type="submit"]:hover {
    background-color: #0056b3;
}

.chess-icon {
    font-size: 40px; /* Reduced size for small screens */
    margin-bottom: 15px;
}

.logo-text {
    font-size: 32px; /* Smaller size for mobile */
}

.countdown-number {
    font-size: 28px; /* Smaller font size for countdown */
}

.notify-text {
    font-size: 14px; /* Smaller font size */
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
    .coming-soon {
        margin-top: 50px; /* Increased margin for tablet */
    }

    .coming-soon h1 {
        font-size: 48px; /* Increased size for tablet */
    }

    .timer {
        flex-direction: row; /* Row layout for tablet */
        font-size: 28px; /* Larger font size for tablet */
    }

    .timer div {
        margin: 0 10px; /* Horizontal spacing for row layout */
    }

    .email-signup input[type="email"],
    .email-signup input[type="submit"] {
        width: 80%; /* Reduced width for tablet */
        font-size: 16px; /* Slightly larger font size */
    }

    .logo-text {
        font-size: 48px; /* Increased size for tablet */
    }

    .countdown-number {
        font-size: 40px; /* Larger size for countdown */
    }

    .chess-icon {
        font-size: 56px; /* Larger size for tablet */
    }

    .notify-text {
        font-size: 18px; /* Increased size for tablet */
    }
}

/* PC View */
@media (min-width: 1025px) {
    .coming-soon {
        margin-top: 100px; /* Increased margin for PC */
    }

    .coming-soon h1 {
        font-size: 60px; /* Increased size for PC */
    }

    .timer {
        font-size: 32px; /* Larger font size for PC */
    }

    .email-signup input[type="email"],
    .email-signup input[type="submit"] {
        width: 50%; /* Reduced width for PC */
        font-size: 18px; /* Larger font size */
    }

    .logo-text {
        font-size: 60px; /* Increased size for PC */
    }

    .countdown-number {
        font-size: 50px; /* Larger size for countdown */
    }

    .chess-icon {
        font-size: 64px; /* Increased size for PC */
    }

    .notify-text {
        font-size: 20px; /* Increased size for PC */
    }
}

/* Mobile View (Max Width: 400px) */
@media (max-width: 400px) {
    .coming-soon {
        margin-top: 5px; /* Further reduced margin for mobile */
    }

    .coming-soon h1 {
        font-size: 28px; /* Smaller heading for small mobile screens */
    }

    .timer {
        font-size: 18px; /* Smaller timer text */
    }

    .email-signup input[type="email"],
    .email-signup input[type="submit"] {
        width: 90%; /* Full width for mobile */
        font-size: 12px; /* Even smaller font size */
        padding: 6px; /* Reduced padding */
    }

    .logo-text {
        font-size: 28px; /* Smaller logo text */
    }

    .countdown-number {
        font-size: 24px; /* Adjust countdown number for smaller screens */
    }

    .chess-icon {
        font-size: 36px; /* Adjusted icon size */
    }

    .notify-text {
        font-size: 12px; /* Adjusted notify text size */
    }
}
