/* =========================================
   BETBIZI - COMPLETE MASTER STYLESHEET
   Professional Theme | Dark Mode | All Pages
   Version: 2.1 | Updated: 2026
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0c15;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   GLOBAL LINK STYLES - ALL ORANGE
   ========================================= */
a {
    color: #ff7a00;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e66a00;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 12, 21, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff7a00;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff7a00;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ff7a00;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #e66a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff7a00;
    color: #ff7a00 !important;
}

.btn-secondary:hover {
    background: #ff7a00;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================================
   SECTION STYLES
   ========================================= */
.section {
    padding: 80px 0;
}

.bg-gray {
    background: #13151e;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    color: #aaaaaa;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   HERO SECTION (Homepage)
   ========================================= */
/* Homepage Hero - MATCHING OTHER PAGES */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   CARD GRID & CARDS
   ========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1c25;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #2a2c35;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-tag {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #ffffff;
}

.card-excerpt {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-link {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 12px;
    color: #ff7a00;
}

/* =========================================
   INTELLIGENCE HUB PAGE
   ========================================= */
.intelligence-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.intelligence-badge {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.intelligence-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelligence-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    padding: 40px 0;
    background: #0a0c15;
}

.search-card {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1c25;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #2a2c35;
}

.search-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#answer-search {
    flex: 2;
    min-width: 250px;
    padding: 14px 20px;
    background: #0a0c15;
    border: 1px solid #2a2c35;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

#answer-search:focus {
    outline: none;
    border-color: #ff7a00;
    background: #13151e;
}

#answer-search::placeholder {
    color: #666;
}

#category-filter {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    background: #0a0c15;
    border: 1px solid #2a2c35;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

#category-filter:focus {
    outline: none;
    border-color: #ff7a00;
}

#answers-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

#answers-container .card {
    padding: 28px;
    cursor: pointer;
}

.card-category {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 20px;
}

/* =========================================
   BLOG LIST PAGE (blog.html) - FIXED HORIZONTAL GRID
   ========================================= */
.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.blog-badge {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FIXED: Horizontal grid for blog feed */
#blog-feed-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 20px;
}

/* FIXED: Blog cards with horizontal layout */
.blog-card {
    background: #1a1c25;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #2a2c35;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
}

/* FIXED: 16:9 image wrapper */
.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

/* Card body */
.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Category tag */
.blog-card-category {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

/* Title */
.blog-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #ffffff;
}

/* Excerpt */
.blog-card-excerpt {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

/* FIXED: Orange link (not blue) */
.blog-card-link {
    color: #ff7a00 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    background: transparent !important;
}

.blog-card-link:hover {
    gap: 12px;
    color: #ff7a00 !important;
}

/* =========================================
   BLOG POST PAGE (single article)
   ========================================= */
.post-back-link {
    margin-top: 100px;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.back-button:hover {
    gap: 12px;
    color: #ff7a00;
}

.post-article {
    max-width: 850px;
    margin: 0 auto;
    background: #1a1c25;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #2a2c35;
    min-height: 600px;
}

.post-loading {
    text-align: center;
    padding-top: 100px;
}

.post-loading p {
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2c35;
}

.post-category {
    display: inline-block;
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #888;
    font-size: 0.85rem;
    margin-top: 20px;
}

.post-content {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
}

.post-content h2 {
    color: #ff7a00;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 800;
}

.post-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 30px 0 15px;
    font-weight: 700;
}

.post-content p {
    margin-bottom: 20px;
    color: #cccccc;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
    color: #cccccc;
}

.post-content strong {
    color: #ff7a00;
    font-weight: 800;
}

.post-content a {
    color: #ff7a00;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.post-content blockquote {
    border-left: 4px solid #ff7a00;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 122, 0, 0.05);
    border-radius: 12px;
    font-style: italic;
    color: #dddddd;
}

.browse-more {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* =========================================
   BONUSES PAGE
   ========================================= */
.bonuses-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.bonuses-badge {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.bonuses-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonuses-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.bonus-card {
    background: #1a1c25;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #2a2c35;
}

.bonus-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
}

.bonus-card .card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0c15;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bonus-card .card-img-wrapper img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s;
}

.bonus-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.bonus-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
}

.about-tag {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #aaaaaa;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

.mission-card {
    padding: 40px;
    border-top: 4px solid #ff7a00;
    background: #1a1c25;
}

.mission-card-title {
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #ffffff;
}

.mission-card-text {
    font-size: 0.95rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.responsible-card {
    background: #1a1c25;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid #2a2c35;
    text-align: center;
}

.responsible-title {
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.responsible-text {
    color: #aaaaaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    text-align: center;
    padding: 15px;
    background: #0a0c15;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #ff7a00;
    border: 1px solid #2a2c35;
}

.help-box {
    background: rgba(255, 122, 0, 0.1);
    border-left: 5px solid #ff7a00;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.help-label {
    font-weight: 800;
    margin-bottom: 5px;
    color: #ff7a00;
    font-size: 0.9rem;
}

.help-text {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.help-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff7a00;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.help-number:hover {
    color: #e66a00;
}

.transparency-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.transparency-title {
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.8rem;
}

.transparency-text {
    line-height: 1.8;
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.contact-badge {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1c25;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #2a2c35;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0a0c15;
    border: 1px solid #2a2c35;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff7a00;
    background: #13151e;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.form-result {
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* =========================================
   LEGAL PAGES (Privacy, Terms)
   ========================================= */
.legal-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0c15 0%, #13151e 100%);
    text-align: center;
    border-bottom: 1px solid #1f212a;
}

.legal-badge {
    color: #ff7a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.legal-card {
    max-width: 850px;
    margin: 0 auto;
    background: #1a1c25;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #2a2c35;
}

.legal-summary {
    background: rgba(255, 122, 0, 0.1);
    border-left: 4px solid #ff7a00;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
}

.legal-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 35px 0 15px;
    color: #ff7a00;
}

.legal-heading:first-of-type {
    margin-top: 0;
}

.legal-text {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-list {
    margin: 20px 0;
    padding-left: 25px;
    color: #cccccc;
}

.legal-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-contact-box {
    background: #0a0c15;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #2a2c35;
}

.legal-contact-box p {
    color: #ffffff;
    margin: 0;
}

.legal-contact-box strong {
    color: #ff7a00;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2a2c35;
    text-align: center;
    font-style: italic;
    color: #888;
}

/* =========================================
   LEGAL MODAL
   ========================================= */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modal-content {
    background: #1a1c25;
    border-radius: 24px;
    max-width: 800px;
    max-height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #ff7a00;
}

.legal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #ff7a00;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.legal-close:hover {
    color: #ffffff;
}

#legalModalBody {
    padding: 40px;
    overflow-y: auto;
    max-height: 80vh;
    color: #cccccc;
    line-height: 1.6;
}

#legalModalBody h1,
#legalModalBody h2,
#legalModalBody h3 {
    color: #ff7a00;
    margin-top: 20px;
    margin-bottom: 15px;
}

#legalModalBody p {
    margin-bottom: 15px;
    color: #cccccc;
}

#legalModalBody ul,
#legalModalBody ol {
    margin: 15px 0;
    padding-left: 25px;
}

#legalModalBody li {
    margin-bottom: 8px;
    color: #cccccc;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #05070f;
    border-top: 1px solid #1f212a;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff7a00;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff7a00;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #1f212a;
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   UTILITIES
   ========================================= */
.loading {
    text-align: center;
    padding: 60px;
    color: #888;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #0a0c15;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 24px;
        transition: 0.3s;
        border-bottom: 1px solid #ff7a00;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero */
    .hero h1,
    .intelligence-title,
    .blog-title,
    .bonuses-title,
    .contact-title,
    .legal-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .hero p,
    .intelligence-description,
    .blog-description,
    .bonuses-description,
    .contact-description,
    .about-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Grids */
    .grid-3,
    #answers-container,
    #blog-feed-container,
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* Cards */
    .card,
    .blog-card,
    .bonus-card,
    .mission-card {
        margin: 0;
    }
    
    /* Legal Pages */
    .legal-card,
    .responsible-card,
    .contact-form-wrapper {
        padding: 25px;
        margin: 0 20px;
    }
    
    .legal-heading {
        font-size: 1.2rem;
    }
    
    .legal-text {
        font-size: 0.9rem;
    }
    
    /* About Page */
    .responsible-title {
        font-size: 1.5rem;
    }
    
    .badge-grid {
        grid-template-columns: 1fr;
    }
    
    .help-number {
        font-size: 1.2rem;
    }
    
    /* Blog Post */
    .post-article {
        padding: 25px;
        margin: 0 20px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-back-link {
        margin-top: 80px;
        padding: 0 20px;
    }
    
    .browse-more {
        margin: 40px 0;
    }
    
    /* Search */
    .search-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-card {
        margin: 0 20px;
        padding: 20px;
    }
    
    #answer-search,
    #category-filter {
        width: 100%;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .legal-hero,
    .intelligence-hero,
    .blog-hero,
    .bonuses-hero,
    .contact-hero,
    .about-hero {
        padding: 100px 0 40px;
    }
}

/* =========================================
   HOMEPAGE FEATURED POST STYLES
   ========================================= */

.featured-post-card {
    background: #1a1c25;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    border: 1px solid #2a2c35;
    transition: transform 0.3s, border-color 0.3s;
}

.featured-post-card:hover {
    transform: translateY(-4px);
    border-color: #ff7a00;
}

.featured-post-image {
    flex: 1;
    min-width: 40%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-content {
    flex: 1.5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-tag {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.featured-post-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #ffffff;
}

.featured-post-excerpt {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.featured-post-link {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.featured-post-link:hover {
    gap: 12px;
    color: #ff7a00;
}

/* Small Cards Container */
.homepage-small-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Small Card Overrides */
.small-card {
    background: #1a1c25;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #2a2c35;
}

.small-card:hover {
    transform: translateY(-4px);
    border-color: #ff7a00;
}

.small-card .card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.small-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.small-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.small-card .card-body {
    padding: 20px;
}

.small-card .card-tag {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.small-card .card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #ffffff;
}

.small-card .card-excerpt {
    color: #aaaaaa;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.small-card .card-link {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.small-card .card-link:hover {
    gap: 12px;
}

/* =========================================
   RESPONSIVE FIXES FOR FEATURED POST
   ========================================= */
@media (max-width: 768px) {
    .featured-post-card {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .featured-post-image {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16 / 9;
    }
    
    .featured-post-content {
        padding: 24px;
    }
    
    .featured-post-title {
        font-size: 1.3rem;
    }
    
    .featured-post-excerpt {
        font-size: 0.9rem;
    }
    
    .homepage-small-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================
   PROMO BANNERS STYLES
   ========================================= */

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-banner {
    background: #1a1c25;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a2c35;
}

.promo-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
    border-color: #ff7a00;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.promo-banner:hover .promo-banner-img {
    transform: scale(1.02);
}

.promo-banner-content {
    padding: 24px;
    text-align: center;
}

.promo-banner-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff7a00;
    margin-bottom: 12px;
}

.promo-banner-content p {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-btn {
    display: inline-block;
    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.promo-btn:hover {
    background: #e66a00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .promo-banner-content {
        padding: 20px;
    }
    
    .promo-banner-content h3 {
        font-size: 1.2rem;
    }
}

/* =========================================
   FIX: UNIFIED HERO PADDING
   ========================================= */

.hero,
.intelligence-hero,
.blog-hero,
.bonuses-hero,
.contact-hero,
.about-hero,
.legal-hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
}
/* =========================================
   SPONSORED SECTION STYLES
   ========================================= */

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
    align-items: center;
}

.sponsored-card {
    background: #1a1c25;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #2a2c35;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sponsored-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
}

.sponsored-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #ff7a00, #e66a00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsored-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sponsored-card:hover .sponsored-card-image img {
    transform: scale(1.05);
}

.sponsored-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sponsored-tag {
    color: #ff7a00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.sponsored-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #ffffff;
}

.sponsored-description {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.sponsored-link {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.sponsored-link:hover {
    gap: 12px;
}

/* When you add more sponsored cards, they'll automatically grid */
@media (max-width: 768px) {
    .sponsored-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}