.elementor-8696 .elementor-element.elementor-element-6e9e200{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d724507 */:root {
    --bg-color: #0a0a0c;
    --accent-color: #d50032;
    --text-main: #ffffff;
    --text-dim: #a0a0a5;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Or 'Rubik' */
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle Animated Background Glow */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(213, 0, 50, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(80px);
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

.logo span {
    color: var(--accent-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h1 span {
    color: var(--accent-color);
}

p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.time-block {
    display: flex;
    flex-direction: column;
}

.time-block span {
    font-size: 2.5rem;
    font-weight: 700;
}

.time-block label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Form */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    background: var(--glass-bg);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    outline: none;
    width: 250px;
}

button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

footer {
    margin-top: 5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}/* End custom CSS */