:root {
    --light-bg: #fff8f8; /* Very light pink/cream background */
    --primary-color: #e59797; /* Soft pink for buttons/boxes */
    --secondary-color: #4a4a4a; /* Dark gray for text */
    --accent-color: #8c7851; /* Muted brown for contrast */
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* --- Defaults --- */
.mascot-section,
.content-header,
.countdown-timer,
.sub-text,
.social-icons {
    max-width: 600px; /* Limits the width of content elements */
    width: 100%;
    /* Centers the element horizontally within the body's align-items: center */
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; /* Adds side padding for mobile screens */
}

/* --- Mascot Section --- */
.mascot-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mascot-image {
    width: 300px; /* Adjust size of your cat image */
    height: auto;
    display: block;
    margin: 0 auto;
    border-bottom: 4px solid var(--accent-color); 
    padding-bottom: 10px;
}

/* --- Text Content --- */
h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 30px;
}

.tagline strong {
    font-weight: 600;
}

.sub-text {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: var(--accent-color);
}

.content-header {
    margin-bottom: 30px;
}

/* --- Countdown Timer --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    min-height: 80px;
}

.time-box {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box .value {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.1;
}

.time-box .label {
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
}

.launch-message {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color); /* Your soft pink color */
    padding: 15px;
    border: 3px dashed var(--primary-color);
    border-radius: 10px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Social Icons --- */
.social-icons {
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--secondary-color);
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    padding: 15px;
    font-size: 0.8em;
    color: #999;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
