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

:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary: #f1c40f;
    --accent: #e74c3c;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a1a;
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

::selection {
    background: var(--primary);
    color: #fff;
}

#canvas-container {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 26, 0.6) 70%, rgba(10, 10, 26, 0.9) 100%);
    pointer-events: none;
}

.content {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    overflow-y: auto;
    gap: 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: fadeInDown 1s ease forwards;
}

.logo-icon {
    font-size: 52px;
    color: var(--primary);
    animation: pulseGlow 2s ease-in-out infinite;
    margin-bottom: 8px;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(230, 126, 34, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(230, 126, 34, 0.7)); }
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.logo-domain {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-text {
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.25);
    color: var(--primary-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.15;
}

.line1 {
    display: block;
    color: var(--text);
}

.line2 {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    color: var(--text-muted);
    font-size: clamp(14px, 2vw, 16px);
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.8;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.count-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.count-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.count-sep {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 24px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.notify-section {
    width: 100%;
    max-width: 440px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.notify-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.notify-form {
    display: flex;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 6px;
    backdrop-filter: blur(10px);
}

.notify-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
}

.notify-form button i {
    font-size: 13px;
}

.contact-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.contact-bar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-bar a:hover {
    color: var(--primary-light);
}

.contact-bar i {
    color: var(--secondary);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

/* Hosting info */
.hosting-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
}

.hosting-info i {
    color: var(--primary);
    font-size: 14px;
    opacity: 0.6;
}

.hosting-info strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.hosting-info a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hosting-info a:hover {
    color: var(--primary-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    animation: fadeInUp 1s ease 1.3s forwards;
    opacity: 0;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.content::-webkit-scrollbar { width: 4px; }
.content::-webkit-scrollbar-track { background: transparent; }
.content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

@media (max-width: 480px) {
    .countdown { gap: 4px; }
    .count-item { min-width: 55px; }
    .count-number { font-size: 28px; }
    .contact-bar { flex-direction: column; align-items: center; gap: 12px; }
    .notify-form { flex-direction: column; background: none; border: none; padding: 0; gap: 8px; }
    .notify-form input { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; }
    .notify-form button { justify-content: center; }
    .logo-text { font-size: 28px; letter-spacing: 2px; }
    .hosting-info { flex-wrap: wrap; justify-content: center; text-align: center; padding: 8px 16px; }
}
