@font-face {
  font-family: 'Pricedown';
  src: url('/css/pricedown.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    --bg: #0b0f1a;
    --card: #111827;
    --primary: #6366f1;
    --text: #f8fafc;
    --dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

body, html { 
    margin: 0; 
    padding: 0; 
    background: var(--bg); 
    color: var(--text); 
    font-family: "Inter", sans-serif; 
    overflow-x: hidden; 
}

.header-nav {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%;
    height: 90px; 
    display: flex; 
    align-items: center; 
    z-index: 1000;
}

.nav-container {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 25px;
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
}

.user-box {
    display: flex; 
    align-items: center; 
    gap: 12px;
    background: rgba(0, 0, 0, 0.4); 
    padding: 6px 16px 6px 6px;
    border-radius: 40px; 
    border: 1px solid var(--border);
    backdrop-filter: blur(10px); 
    text-decoration: none; 
    transition: 0.3s;
}

.user-box:hover { 
    border-color: var(--primary); 
    background: rgba(99, 102, 241, 0.1); 
}

.user-box img { 
    width: 34px; 
    height: 34px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--primary); 
}

.user-box span { 
    color: #fff; 
    font-size: 0.85rem; 
    font-weight: 700; 
}

.auth-btns { 
    display: flex; 
    gap: 12px; 
}

.btn {
    padding: 10px 24px; 
    border-radius: 6px; 
    font-size: 0.8rem;
    font-weight: 800; 
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 0.5px; 
    transition: 0.3s; 
    white-space: nowrap;
}

.login { 
    color: #fff; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border); 
}

.reg { 
    background: var(--primary); 
    color: #fff; 
    border: 1px solid var(--primary); 
}

.btn:hover { 
    transform: translateY(-2px); 
    filter: brightness(1.1); 
}

.hero {
    height: 550px;
	background: linear-gradient(rgba(11,15,26,0.5), var(--bg)), url('/forum/Themes/lsnTema/images/bannerbg.png') center;
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    margin: 0; 
    padding: 0 20px;
}

.hero h1 { 
    font-size: clamp(3.5rem, 10vw, 6.5rem); 
    margin: 0; 
    font-weight: 900; 
    letter-spacing: -4px;
	text-transform: uppercase;
	font-family: 'Pricedown', sans-serif;
	color: #fff;
}

.hero p { 
    color: var(--dim); 
    max-width: 650px; 
    margin: 20px 0 40px; 
    font-size: 1.1rem; 
}

.cta { 
    padding: 18px 50px; 
    background: var(--primary); 
    color: #fff; 
    text-decoration: none; 
    font-weight: 900; 
    border-radius: 8px; 
    text-transform: uppercase; 
    transition: 0.3s; 
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); 
}

.cta:hover {
	color: #fff;
	text-decoration: none;
}

.container { 
    max-width: 1200px; 
    margin: -80px auto 100px; 
    padding: 0 20px; 
    position: relative; 
    z-index: 10; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.card-link { 
    text-decoration: none; 
    color: inherit; 
}

.modern-card { 
    background: var(--card); 
    border: 1px solid var(--border); 
    border-radius: 24px; 
    overflow: hidden; 
    transition: 0.4s; 
}

.card-link:hover .modern-card { 
    transform: translateY(-12px); 
    border-color: var(--primary); 
}

.card-banner { 
    height: 320px; 
    background: #0f172a; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    overflow: hidden; 
}

.card-banner img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
}

.card-body { 
    padding: 35px; 
    text-align: center; 
    border-top: 1px solid var(--border); 
}

.card-body h3 { 
    margin: 0; 
    font-size: 1.6rem; 
    color: #fff; 
    font-weight: 800; 
}

footer { 
    background: #070a13; 
    padding: 80px 20px 40px; 
    border-top: 1px solid var(--border); 
}

.stats-container { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; 
}

.stat-box { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid var(--border); 
    padding: 30px; 
    border-radius: 20px; 
    text-align: center; 
}

.stat-box strong { 
    display: block; 
    font-size: 2.2rem; 
    font-weight: 900; 
    color: var(--primary); 
    margin-bottom: 5px; 
}

.stat-box span { 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    color: var(--dim); 
    letter-spacing: 1px; 
}

.copy { 
    text-align: center; 
    margin-top: 60px; 
    color: #334155; 
    font-size: 0.85rem; 
}

@media (max-width: 600px) {
    .nav-container { justify-content: center; }
    .hero { height: auto; padding: 140px 20px 80px; }
    .container { margin-top: -40px; }
}