:root {
    --primary: #fb72a1; /* Playful pink based on SizzOH logo */
    --primary-light: #ff9cbd;
    --primary-dark: #e8598b;
    --secondary: #fff0f5; /* Lavender blush for softness */
    --text-main: #5c4b51; /* Soft warm grey for better readability */
    --text-light: #9e8d93;
    --white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffeef4 0%, #ffffff 50%, #fff0f5 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 40px rgba(251, 114, 161, 0.12);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-main);
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background floating animations */
.background-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    opacity: 0.3;
    animation: float 15s linear infinite;
    z-index: 0;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes float {
    0% {
        transform: translateY(120vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg) scale(1.3);
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 850px;
    padding: 20px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(251, 114, 161, 0.18);
}

.header {
    margin-bottom: 2.5rem;
}

/* Fallback Logo Styling */
.logo-container {
    display: inline-block;
    margin-bottom: 1rem;
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(251, 114, 161, 0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.08) rotate(-3deg);
}

.text-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    position: relative;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.8), 4px 4px 10px rgba(251, 114, 161, 0.2);
}

.bunny-o {
    position: relative;
    display: inline-block;
}

.bunny-o::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -5px;
    width: 20px;
    height: 40px;
    border: 4px solid var(--primary);
    border-radius: 50% 50% 0 0;
    transform: rotate(-15deg);
    z-index: -1;
}

.bunny-o::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -2px;
    width: 18px;
    height: 35px;
    border: 4px solid var(--primary);
    border-radius: 50% 50% 0 0;
    transform: rotate(15deg);
    z-index: -1;
}

.logo-heart {
    font-size: 2.5rem;
    color: var(--primary-light);
    vertical-align: text-top;
    transform: rotate(15deg);
    margin-left: -5px;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1) rotate(15deg); }
    15% { transform: scale(1.2) rotate(15deg); }
    30% { transform: scale(1) rotate(15deg); }
    45% { transform: scale(1.2) rotate(15deg); }
    60% { transform: scale(1) rotate(15deg); }
}

.tagline {
    font-family: 'Nunito', sans-serif;
    color: var(--text-light);
    letter-spacing: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.content .main-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.content .main-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.content .main-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--primary-light);
    opacity: 0.25;
    border-radius: 6px;
    z-index: -1;
    transition: height 0.3s ease;
}

.content .main-title:hover span::after {
    height: 100%;
}

.description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.time-box {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 25px;
    padding: 1.5rem 1.2rem;
    min-width: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251,114,161,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.time-box:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(251, 114, 161, 0.15);
}

.time-box:hover::before {
    opacity: 1;
}

.time-box span {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.time-box p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* Notify Section */
.notify-section {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.6);
}

.notify-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.notify-form {
    display: flex;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-group input:focus + i,
.input-group input:not(:placeholder-shown) + i {
    color: var(--primary);
}

.input-group input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.input-group input::placeholder {
    color: #b5a9ad;
    font-weight: 500;
}

.input-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 5px rgba(251, 114, 161, 0.15);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0 32px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(251, 114, 161, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 114, 161, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.success-msg {
    display: none;
    color: var(--primary);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: fadeIn 0.5s ease;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(251, 114, 161, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(251, 114, 161, 0.3);
}

.footer p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 3rem 2rem;
        border-radius: 30px;
    }
    
    .content .main-title {
        font-size: 2.4rem;
    }
    
    .time-box span {
        font-size: 2.2rem;
    }

    .notify-form {
        flex-direction: column;
    }
    
    .btn-primary {
        padding: 16px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }

    .text-logo {
        font-size: 3.8rem;
    }
    
    .content .main-title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .time-box {
        min-width: 75px;
        padding: 1.2rem 0.8rem;
    }
    
    .time-box span {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
