:root {
    --primary-orange: #f27e20; /* Matches the Chibicards background */
    --accent-yellow: #ffeb3b;   /* Matches the Japanese text hint */
    --dark-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif; /* Rounded, cute font */
    background-color: var(--dark-bg);
    color: var(--text-white);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Particles Container */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

/* Logo Styling & Animation */
.logo-container {
    margin-bottom: 30px;
}

.floating-logo {
    width: 280px; /* Adjust size as needed */
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(242, 126, 32, 0.3)); /* Orange glow shadow */
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Text Styling */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.time-box:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.time-box span {
    display: block;
}

.time-box span:first-child {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

/* Notify Input */
.notify-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #333;
    color: white;
    width: 250px;
    font-family: inherit;
}

button {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: var(--primary-orange);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
    text-transform: uppercase;
}

button:hover {
    background: #d16610;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
    .floating-logo { width: 200px; }
    h1 { font-size: 1.8rem; }
    .countdown { gap: 10px; }
    .time-box { min-width: 60px; padding: 10px; }
    .time-box span:first-child { font-size: 1.5rem; }
}