@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Bold.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Medium.woff') format('woff');
    font-weight: 500;
}
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro.woff') format('woff');
    font-weight: 400;
}

:root {
    --primary: #FF8811;
    --primary-dark: #E07A00;
    --bg: #0a0a0f;
    --bg-section: #111118;
    --text: #EEEEEE;
    --text-secondary: #AAAAAA;
    --border: #22222A;
    --radius: 12px;
    --transition: 0.25s ease-in-out;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    background: var(--bg) url(../images/bg.jpg) center/cover no-repeat fixed;
    font-family: 'Gotham Pro', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 136, 17, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; display: block; pointer-events: none; }
main { flex: 1; }

/* Header */
.header { background: rgba(13, 13, 20, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 40px; }
.header__nav { display: flex; gap: 25px; align-items: center; }
.header__nav a { color: var(--text-secondary); font-weight: 500; font-size: 14px; transition: var(--transition); }
.header__nav a:hover, .header__nav a.active { color: var(--primary); }
.header__donate-btn { background: var(--primary); color: #000 !important; font-weight: 700; padding: 10px 20px; border-radius: 30px; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.header__donate-btn:hover { background: var(--primary-dark); color: #000 !important; }
.header__donate-icon { height: 14px; }

/* Hero */
.hero { padding: 120px 0 100px; position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(10,10,15,0.95) 40%, rgba(10,10,15,0.3) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; }
.hero__text-block { max-width: 600px; }
.hero__title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.text-primary { color: var(--primary); }
.hero__subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 25px; }
.hero__platform { font-size: 1rem; color: var(--primary); margin-bottom: 30px; font-weight: 500; }
.hero__buttons { display: flex; gap: 15px; margin-bottom: 40px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 30px; font-weight: 700; font-size: 16px; transition: var(--transition); cursor: pointer; border: none; }
.btn--primary { background: var(--primary); color: #000; }
.btn--primary:hover { background: var(--primary-dark); color: #000; }
.btn--outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn--outline:hover { background: var(--primary); color: #000; }
.btn__icon { height: 18px; }
.hero__stats { display: flex; gap: 30px; }
.stat-item__number { display: block; font-size: 2rem; font-weight: 700; color: var(--primary); }
.stat-item__label { font-size: 0.9rem; color: var(--text-secondary); }

/* Section Title */
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 50px; text-align: center; }

/* Features */
.features { padding: 80px 0; background: rgba(17, 17, 24, 0.5); }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); text-align: center; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
.feature-card__image { width: 100%; height: 220px; overflow: hidden; }
.feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-card:hover .feature-card__image img { transform: scale(1.08); }
.feature-card__title { font-size: 1.2rem; font-weight: 700; margin: 20px 0 10px; color: #fff; padding: 0 15px; }
.feature-card__text { color: var(--text-secondary); font-size: 14px; line-height: 1.6; padding: 0 15px 25px; }

/* Steps */
.steps { padding: 80px 0; }
.steps__list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; }
.step-item { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: var(--radius); width: 170px; transition: var(--transition); display: block; color: inherit; text-decoration: none; }
.step-item:hover { border-color: var(--primary); }
.step-item__num { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step-item__title { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: #fff; }
.step-item__text { color: var(--text-secondary); font-size: 11px; }
.step-item__arrow img { width: 24px; height: 24px; opacity: 0.5; }
.step-item--link { cursor: pointer; }
.step-item--link:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 136, 17, 0.15); }

/* Social */
.social { padding: 60px 0 80px; background: rgba(17, 17, 24, 0.5); }
.social__links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social__link { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border: 1px solid var(--border); border-radius: 30px; font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.social__link:hover { border-color: var(--primary); color: var(--primary); }
.social__link img { height: 20px; }

/* Footer */
.footer { background: rgba(13, 13, 20, 0.95); border-top: 1px solid var(--border); padding: 30px 0; margin-top: auto; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { color: var(--text-secondary); font-size: 13px; }
.footer__links a:hover { color: var(--primary); }
.footer__copyright { color: var(--text-secondary); font-size: 13px; text-align: right; }
.footer__copyright p { margin-bottom: 4px; }

/* Pay Page */
.pay-section { padding: 100px 0; display: flex; justify-content: center; }
.pay-card { background: rgba(17, 17, 24, 0.9); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; max-width: 450px; width: 100%; text-align: center; }
.pay-card__title { font-size: 2rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.pay-card__info { color: var(--text-secondary); margin-bottom: 30px; }
.input-group { position: relative; margin-bottom: 20px; }
.input-group__icon { position: absolute; left: 15px; top: 14px; height: 18px; width: 18px; opacity: 0.5; }
.input-group__field { width: 100%; padding: 15px 15px 15px 40px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: var(--radius); color: #fff; font-size: 16px; outline: none; transition: var(--transition); }
.input-group__field:focus { border-color: var(--primary); }
.pay-card__submit { width: 100%; margin-top: 15px; cursor: pointer; }
.pay-card__support { margin-top: 25px; font-size: 14px; color: var(--text-secondary); }

/* Start Page */
.start-section { padding: 80px 0; }
.start-block { max-width: 700px; margin: 0 auto; text-align: center; }
.start-block__title { font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.start-block__subtitle { color: var(--text-secondary); margin-bottom: 20px; }
.start-block__divider { height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); border: none; margin: 20px auto 30px; width: 80%; }
.start-block__video { max-width: 660px; margin: 0 auto 28px; background: #000; border-radius: var(--radius); overflow: hidden; }
.start-block__video video { width: 100%; display: block; }
.start-block__btn { display: inline-flex; margin-bottom: 15px; }
.start-block__help { font-size: 14px; color: var(--text-secondary); }

/* News Page */
.news-section { padding: 80px 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { background: rgba(17, 17, 24, 0.9); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.news-card:hover { border-color: var(--primary); }
.news-card__image { width: 100%; height: 200px; object-fit: cover; }
.news-card__body { padding: 25px; }
.news-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.news-card__text { color: var(--text-secondary); margin-bottom: 15px; font-size: 14px; }
.news-card__date { font-size: 0.85rem; color: var(--primary); }

/* Legal Pages */
.legal-page { max-width: 800px; margin: 50px auto; padding: 0 20px 60px; color: var(--text-secondary); line-height: 1.8; }
.legal-page h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: var(--primary); text-align: center; }
.legal-page__date { text-align: center; color: #666; margin-bottom: 30px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; margin: 30px 0 15px; color: #fff; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.legal-page p { margin-bottom: 15px; }
.legal-page ul { padding-left: 20px; margin-bottom: 20px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: #fff; }

/* Cookies Modal */
.cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.cookies-overlay--show { display: flex; animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookies-modal {
    background: rgba(17, 17, 24, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookies-modal__icon { margin-bottom: 20px; }
.cookies-modal__icon img { height: 50px; margin: 0 auto; opacity: 0.8; }
.cookies-modal__title { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.cookies-modal__text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; }
.cookies-modal__text a { color: var(--primary); text-decoration: underline; }
.cookies-modal__text a:hover { color: #fff; }
.cookies-modal__buttons { display: flex; flex-direction: column; gap: 12px; }
.cookies-modal__btn { width: 100%; padding: 13px 20px; border-radius: 30px; font-weight: 700; font-size: 14px; cursor: pointer; transition: var(--transition); border: none; }
.cookies-modal__btn--accept { background: var(--primary); color: #000; }
.cookies-modal__btn--accept:hover { background: var(--primary-dark); transform: translateY(-2px); }
.cookies-modal__btn--settings { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }
.cookies-modal__btn--settings:hover { border-color: var(--primary); color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .hero { min-height: auto; padding: 100px 0 80px; }
    .hero__content { text-align: center; }
    .hero__text-block { max-width: 100%; }
    .hero__title { font-size: 2.5rem; }
    .hero__buttons { justify-content: center; }
    .hero__stats { justify-content: center; }
    .header__nav { gap: 15px; }
    .header__nav a { font-size: 12px; }
    .section-title { font-size: 2rem; }
    .footer__inner { flex-direction: column; text-align: center; }
    .footer__copyright { text-align: center; }
    .steps__list { flex-direction: column; }
    .step-item__arrow img { transform: rotate(90deg); }
}