
.intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 9997;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.intro .background {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}
.intro .load {
    position: absolute;
    z-index: 9999 !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(255, 187, 1);
    -webkit-transform: translate3d(calc(-100% - 1px), 0, 0);
    transform: translate3d(calc(-100% - 1px), 0, 0);
}
.intro .logo {
    margin: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.intro .logo img {
    fill: #000000;
    opacity: 0;
}


:root {
    --border: #2a2a2a;
    --text-dim: #adafb2;
    --accent: rgb(255, 187, 1);
    --bg: #000;
    --fg: #fff;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body {
    background-color: var(--bg);
    color: var(--fg);
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
}

.project-hero {
    padding: 60px 5% 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.logo-wrap { margin-bottom: 30px; }
.project-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.project-hero h1 {
    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.project-hero h1 a {
    color: var(--fg);
    text-decoration: none;
    transition: color 0.3s ease;
}
.project-hero h1 a:hover { color: var(--accent); }
.project-subtitle {
    color: var(--text-dim);
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 5%;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
    text-align: center;
}
.project-message p { margin: 0 0 20px 0; }
.project-message strong { color: var(--accent); font-weight: 700; }
.project-message em { color: var(--fg); font-style: normal; font-weight: 700; }

.countdown-wrap {
    width: 90%;
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
}

.project-badge {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 999px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 187, 1, 0.35);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 187, 1, 0.3); }
    50%      { box-shadow: 0 0 45px rgba(255, 187, 1, 0.7); }
}

ul#countdown {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 15px 0 20px 0;
    color: var(--fg);
    overflow: hidden;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    list-style: none;
    display: flex;
    justify-content: space-around;
}
ul#countdown li {
    margin: 0; padding: 10px;
    display: inline-block; flex: 1;
    font-size: clamp(2rem, 6vw, 5rem);
    text-align: center;
}
ul#countdown li .label {
    color: var(--text-dim);
    font-size: clamp(0.7rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 10px;
}
#blocking .label { color: var(--accent) !important; }
#blocking .number { color: var(--accent); }

@media (max-width: 600px) {
    ul#countdown { flex-wrap: wrap; }
    ul#countdown li { flex: 0 0 50%; padding: 15px 0; }
    ul#countdown li:last-child { flex: 0 0 100%; }
    .project-badge { padding: 12px 28px; }
}