
:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-input: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #fb2424; 
    --accent-hover: #d97706;
    --border: #334155;
    --overlay: rgba(15, 23, 42, 0.85);
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}


h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.section {
    padding: 80px 0;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.burger {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    
    background: linear-gradient(var(--overlay), var(--bg-dark)), url('../img/hero.png') center/cover no-repeat;
    margin-top: -80px; 
    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-badges {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-badges i {
    color: var(--accent);
}


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

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}


.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: var(--accent);
}


.accordion-item {
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.1);
}

.accordion-body p {
    padding: 20px;
    color: var(--text-muted);
}


.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}

.auth-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-check input {
    margin-top: 4px;
}

.register-card {
    max-width: 800px; 
}


footer {
    background: var(--bg-card);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.warning-18 {
    background: rgba(220, 38, 38, 0.1);
    color: #ef4444;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: #d6d6d6;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-wrap: wrap;
    gap: 15px;
}

.hidden {
    display: none !important;
}


@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .burger { display: block !important; z-index: 1001; }
    .header-container { padding: 0 15px; }
    .nav-buttons { flex-direction: column; width: 100%; text-align: center; margin-top: 20px;}
}.site-footer {
  background: linear-gradient(180deg, #020617 0%, #020617 100%);
  color: #d4d4d4;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.8;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.site-footer p {
  margin: 10px auto;
  max-width: 900px;
  color: #e5e7eb;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 600;
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.site-footer .footer-warning {
  color: #f97316;
  font-weight: bold;
  font-size: 15px;
}

.site-footer .footer-links {
  font-size: 13px;
}

.site-footer .footer-links a {
  color: #9ca3af;
  margin: 0 10px;
}

.site-footer .footer-links a:hover {
  color: #38bdf8;
}

.site-footer .footer-copyright {
  margin-top: 22px;
  font-size: 12px;
  color: #6b7280;
  padding-top: 18px;
  border-top: 1px solid #1f2937;
}.browser-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .browser-list li {
            margin-bottom: 15px;
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--accent);
        }
        .browser-list a {
            color: var(--text-main);
            text-decoration: underline;
            text-decoration-color: var(--accent);
            text-underline-offset: 4px;
        }
        .browser-list a:hover {
            color: var(--accent);
        }