@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: #111;
}

.page {
    background: #0d0d0d;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.bg-accent {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(
        ellipse at center,
        rgba(200, 0, 0, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.bg-accent2 {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(
        ellipse at center,
        rgba(200, 0, 0, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.logo-placeholder {
    width: 80px;
    height: 80px;
    /* background: #c00;
    border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    /* border: 3px solid rgba(255, 255, 255, 0.12); */
    /* overflow: hidden; */
}
.logo-placeholder img {
    width: 200px;
    height: auto;
    object-fit: contain;
}
.brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #c00;
    text-transform: uppercase;
}
.brand-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c00;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.sub-headline {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}
.sub-headline span {
    color: #c00;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}
.unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.unit-box {
    background: #1a1a1a;
    border: 1px solid rgba(200, 0, 0, 0.35);
    border-radius: 10px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.unit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #c00;
    border-radius: 10px 10px 0 0;
}
.unit-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    right: 6px;
    height: 1px;
    background: rgba(200, 0, 0, 0.15);
}
.unit-num {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.unit-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}
.sep {
    font-size: 36px;
    font-weight: 900;
    color: #c00;
    margin-top: 18px;
    line-height: 1;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c00, transparent);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.contact-row i {
    font-size: 16px;
    color: #c00;
}
.contact-row a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.contact-row a:hover {
    color: #fff;
}

.address-block {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    text-align: center;
}
.address-block i {
    font-size: 14px;
    color: rgba(200, 0, 0, 0.5);
}

.launched-msg {
    font-size: 22px;
    font-weight: 900;
    color: #c00;
    text-align: center;
    position: relative;
    z-index: 1;
}
