@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Orbitron:wght@400;500;600;700;900&family=Inter:wght@300;400;600;700&display=swap');

/* ================= */
/* Global Reset      */
/* ================= */

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

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ================= */
/* Hero Section      */
/* ================= */

.hero-section {
    position: relative;
    background: #000;
    overflow: hidden;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 15vw, 11rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.05em;
    background: linear-gradient(to bottom, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
}

.hero-title::before {
    content: 'LIDMUN';
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
}

.hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 400;
}

/* ================= */
/* Cards / Glass UI  */
/* ================= */

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #fff;
    transition: height 0.4s ease;
}

.glass-card:hover::before {
    height: 100%;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(255, 255, 255, 0.1);
}

.glass-card p {
    transition: all 0.3s ease;
}

.glass-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ================= */
/* Countdown         */
/* ================= */

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= */
/* Sections / Stats  */
/* ================= */

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-box {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-box:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'Space Mono', monospace;
}

/* ================= */
/* Buttons           */
/* ================= */

.btn-primary,
.btn-secondary {
    position: relative;
    padding: 1rem 2.5rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.btn-primary {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.btn-primary:hover {
    color: #000;
    transform: translateX(5px);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: transparent;
    color: #fff;
    transform: translateX(-5px);
}

/* ================= */
/* Scanline Effect   */
/* ================= */

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    animation: scan 4s linear infinite;
    pointer-events: none;
    z-index: 999;
}

@keyframes scan {
    from { transform: translateY(0); }
    to { transform: translateY(100vh); }
}

.corner-bracket {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.corner-bracket.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-bracket.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* ================= */
/* Media Queries     */
/* ================= */

@media (max-width: 768px) {
    .hero-title { letter-spacing: 0.02em; }
    .hero-subtitle { font-size: 0.65rem; letter-spacing: 0.25em; }
    .glass-card { padding: 1.5rem; }
    .stat-box { padding: 2rem 1rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 1.75rem; }
    .stat-number { font-size: 2.5rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 2.5rem; }
}
