/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C3AED;
    --primary-dark: #5B21B6;
    --primary-light: #8B5CF6;
    --bg-purple: #bdb6df;
    --bg-purple-mid: #EDE9FE;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --gold: #F59E0B;
    --silver: #9CA3AF;
    --bronze: #D97706;
    --green: #10B981;
    --blue: #3B82F6;
    --radius: 10px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    background-image:
        radial-gradient(circle at 10% 15%, rgba(108,58,237,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(139,92,246,0.07) 0%, transparent 35%),
        radial-gradient(circle at 20% 45%, rgba(108,58,237,0.06) 0%, transparent 38%),
        radial-gradient(circle at 75% 40%, rgba(139,92,246,0.07) 0%, transparent 35%),
        radial-gradient(circle at 5% 70%, rgba(108,58,237,0.07) 0%, transparent 36%),
        radial-gradient(circle at 90% 65%, rgba(139,92,246,0.06) 0%, transparent 38%),
        radial-gradient(circle at 50% 80%, rgba(108,58,237,0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 95%, rgba(139,92,246,0.07) 0%, transparent 35%),
        radial-gradient(circle at 70% 90%, rgba(108,58,237,0.06) 0%, transparent 36%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

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

.muted {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 3px;
    transition: color 0.2s;
}

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

.nav-chevron {
    width: 14px;
    height: 14px;
}

.about-section {
    margin: 28px 0;
}

.card {
    padding: 24px;
}

.card {
    display: flex;
    flex-direction: column;
}

.feature, .card {
    background: white;
    border: 1px solid rgba(108, 58, 237, 0.12);
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(108, 58, 237, 0.10),
    0 0 30px rgba(108, 58, 237, 0.07),
    0 0 60px rgba(108, 58, 237, 0.04);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

.search-btn:hover {
    color: var(--primary);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* ===== HERO ===== */
.hero {
    background-image: url('/bg3.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: visible;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 24px 60px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--green);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #000;
    text-shadow: none;
}

.hero-title span {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--white);
}

.btn-visit {
    background: var(--primary);
    color: var(--white);
    padding: 10px 26px;
    font-size: 0.88rem;
    border-radius: 8px;
}

.btn-visit:hover {
    background: var(--primary-dark);
}

.btn-review {
    padding: 8px 16px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    min-width: 0;
    position: relative;
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-visual::before {
    top: 15%;
    right: 10%;
    width: 12px;
    height: 12px;
    background: #FFD700;
    box-shadow: 0 0 12px 4px rgba(255, 215, 0, 0.6), 0 0 24px 8px rgba(255, 215, 0, 0.3);
    animation-delay: 0s;
}

.hero-visual::after {
    bottom: 25%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: #FFC107;
    box-shadow: 0 0 10px 3px rgba(255, 193, 7, 0.6), 0 0 20px 6px rgba(255, 193, 7, 0.3);
    animation-delay: 1s;
}

.hero-image {
    width: 800px;
    max-width: none !important;
    min-width: 800px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    position: relative;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}

.spark {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: #FFD700;
    animation: sparkle 2.5s ease-in-out infinite;
    z-index: 2;
}

.spark-1 {
    top: 10%;
    right: 20%;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.7), 0 0 20px 8px rgba(255, 215, 0, 0.3);
    animation-delay: 0.3s;
}

.spark-2 {
    top: 40%;
    right: 5%;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 8px 3px rgba(255, 193, 7, 0.7), 0 0 16px 6px rgba(255, 193, 7, 0.3);
    animation-delay: 0.8s;
}

.spark-3 {
    bottom: 20%;
    right: 15%;
    width: 9px;
    height: 9px;
    box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.6), 0 0 18px 7px rgba(255, 215, 0, 0.3);
    animation-delay: 1.4s;
}

.spark-4 {
    top: 25%;
    left: 10%;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 3px rgba(255, 193, 7, 0.7), 0 0 14px 5px rgba(255, 193, 7, 0.3);
    animation-delay: 1.8s;
}

.spark-5 {
    bottom: 35%;
    left: 5%;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.6), 0 0 20px 8px rgba(255, 215, 0, 0.3);
    animation-delay: 0.5s;
}

.spark-6 {
    top: 5%;
    left: 35%;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 3px rgba(255, 215, 0, 0.7), 0 0 14px 5px rgba(255, 215, 0, 0.3);
    animation-delay: 2.1s;
}

.spark-7 {
    top: 55%;
    right: 3%;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 12px 4px rgba(255, 193, 7, 0.7), 0 0 22px 8px rgba(255, 193, 7, 0.3);
    animation-delay: 0.2s;
}

.spark-8 {
    bottom: 10%;
    right: 30%;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 8px 3px rgba(255, 215, 0, 0.6), 0 0 16px 6px rgba(255, 215, 0, 0.3);
    animation-delay: 1.6s;
}

.spark-9 {
    top: 35%;
    left: 3%;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 8px 3px rgba(255, 193, 7, 0.7), 0 0 14px 5px rgba(255, 193, 7, 0.3);
    animation-delay: 2.3s;
}

.spark-10 {
    bottom: 50%;
    right: 25%;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 3px rgba(255, 215, 0, 0.7), 0 0 14px 5px rgba(255, 215, 0, 0.3);
    animation-delay: 1.1s;
}

/* Golden Rays */
.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.5), transparent);
    transform-origin: bottom center;
    pointer-events: none;
    animation: ray-pulse 3s ease-in-out infinite;
    border-radius: 2px;
    z-index: 2;
}

.ray-1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; height: 320px; }
.ray-2 { transform: translate(-50%, -100%) rotate(30deg); animation-delay: 0.4s; height: 280px; }
.ray-3 { transform: translate(-50%, -100%) rotate(60deg); animation-delay: 0.8s; height: 310px; }
.ray-4 { transform: translate(-50%, -100%) rotate(90deg); animation-delay: 1.2s; height: 270px; }
.ray-5 { transform: translate(-50%, -100%) rotate(120deg); animation-delay: 1.6s; height: 300px; }
.ray-6 { transform: translate(-50%, -100%) rotate(150deg); animation-delay: 2s; height: 290px; }
.ray-7 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.2s; height: 310px; }
.ray-8 { transform: translate(-50%, -100%) rotate(210deg); animation-delay: 0.6s; height: 275px; }
.ray-9 { transform: translate(-50%, -100%) rotate(240deg); animation-delay: 1s; height: 320px; }
.ray-10 { transform: translate(-50%, -100%) rotate(270deg); animation-delay: 1.4s; height: 285px; }
.ray-11 { transform: translate(-50%, -100%) rotate(300deg); animation-delay: 1.8s; height: 300px; }
.ray-12 { transform: translate(-50%, -100%) rotate(330deg); animation-delay: 2.2s; height: 295px; }

@keyframes ray-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    position: relative;
    z-index: 10;
    margin-top: 32px;
    padding: 0 24px;
}

.trust-inner {
    display: flex;
    justify-content: center;
    padding: 20px 32px;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(108, 58, 237, 0.1);
    box-shadow: 0 8px 32px rgba(108, 58, 237, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-900);
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ===== TOP RATED ===== */
.top-rated {
    padding: 32px 0;
    position: relative;
}

.top-rated .container {
    background: rgba(245, 243, 255, 0.5);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 0 60px 20px rgba(108, 58, 237, 0.08), 0 0 120px 40px rgba(139, 92, 246, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.view-all {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.view-all:hover {
    text-decoration: underline;
}

.link-icon {
    width: 14px;
    height: 14px;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(108, 58, 237, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(108, 58, 237, 0.06);
}

.rankings-grid {
    width: 100%;
    font-size: 0.88rem;
}

.rankings-header,
.rankings-row {
    display: grid;
    grid-template-columns: 100px 1.6fr 2fr 100px 1fr 1.2fr;
    align-items: center;
    gap: 0;
}

.rankings-header {
    background: var(--gray-50);
    padding: 14px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-200);
}

.rankings-row {
    padding: 20px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s;
}

.rankings-row:last-child {
    border-bottom: none;
}

.rankings-row:hover {
    background: var(--bg-purple);
}

.col-rank {
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
}

.col-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 0 8px;
}

.col-bonus {
    line-height: 1.4;
    padding: 0 8px;
}

.col-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 0 8px;
}

.col-payout {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
}

.col-visit {
    text-align: center;
    padding: 0 8px;
}

.rank-icon {
    width: 26px;
    height: 26px;
}

.rank-icon.gold { color: var(--gold); }
.rank-icon.silver { color: var(--silver); }
.rank-icon.bronze { color: var(--bronze); }

.casino-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.casino-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
}

.casino-logo.cc { background: #6366F1; }
.casino-logo.crown { background: #F59E0B; }
.casino-logo.lbv { background: #EF4444; }
.casino-logo.spree { background: #10B981; }
.casino-logo.modo { background: #1E1B4B; }

.rating-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stars {
    color: #F59E0B;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
}

.speed-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.read-review {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.82rem;
}

.read-review:hover {
    text-decoration: underline;
}

/* ===== INFO CARDS ===== */
.info-cards {
    padding: 32px 0;
    position: relative;
}

.info-cards .container {
    background: rgba(245, 243, 255, 0.5);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 0 60px 20px rgba(108, 58, 237, 0.08), 0 0 120px 40px rgba(139, 92, 246, 0.05);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: box-shadow 0.2s;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(108, 58, 237, 0.08);
}

.info-card-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 28px 20px;
    min-height: 150px;
}

.info-card:nth-child(1) .info-card-icon-wrap {
    background: linear-gradient(135deg, #FEFCE8 0%, #FEF9C3 100%);
}

.info-card:nth-child(2) .info-card-icon-wrap {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}

.info-card:nth-child(3) .info-card-icon-wrap {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.info-card-img {
    width: 130px;
    height: 110px;
    object-fit: contain;
}

.info-card-body {
    padding: 20px 28px 24px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-card-tag {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.info-card-tag.guides {
    background: #DBEAFE;
    color: #1D4ED8;
}

.info-card-tag.bonuses {
    background: #EDE9FE;
    color: var(--primary);
}

.info-card-tag.news {
    background: #D1FAE5;
    color: #065F46;
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 14px;
    line-height: 1.5;
}

.card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    text-decoration: underline;
}

/* ===== BROWSE SECTION ===== */
.browse-section {
    padding: 32px 0;
    position: relative;
}

.browse-section .container {
    background: rgba(245, 243, 255, 0.5);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 0 60px 20px rgba(108, 58, 237, 0.08), 0 0 120px 40px rgba(139, 92, 246, 0.05);
}

.browse-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.browse-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.browse-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 40px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s;
    background: var(--white);
}

.browse-tag {
    cursor: default;
    user-select: none;
}

.browse-tag.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-purple);
}

.tag-icon {
    width: 16px;
    height: 16px;
}

/* ===== LATEST SECTION ===== */
.latest-section {
    padding: 32px 0;
}

.latest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.latest-block {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(108, 58, 237, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(108, 58, 237, 0.06);
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.latest-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Review Items */
.review-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-thumb.cc { background: #6366F1; }
.review-thumb.crown { background: #F59E0B; }
.review-thumb.lbv { background: #EF4444; }

.review-thumb-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

a.review-link {
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    border-radius: 8px;
    padding: 14px 8px;
    margin: 0 -8px;
}

a.review-link:hover {
    background: rgba(108, 58, 237, 0.05);
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-info strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.review-info p {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.review-score {
    text-align: center;
    flex-shrink: 0;
}

.review-score .score {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.review-score .muted {
    font-size: 0.7rem;
}

/* News Items */
.news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-thumb {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bg-purple-mid), var(--bg-purple));
    flex-shrink: 0;
}

.news-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.news-info strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 4px;
    line-height: 1.35;
}

.news-info .muted {
    font-size: 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 32px 0;
}

.newsletter-card {
    background: #FDE8EE;
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter-icon {
    font-size: 2.8rem;
}

.newsletter-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.newsletter-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-fields {
    display: flex;
    gap: 12px;
}

.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.error-message {
    color: #DC2626;
    font-size: 0.75rem;
    display: none;
    min-height: 1em;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1.5px solid rgba(108, 58, 237, 0.15);
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    width: 180px;
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-input.error {
    border-color: #DC2626;
    background: #FEF2F2;
}

.btn-subscribe {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Updated text style */
.updated-text {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 32px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand .muted {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--gray-400);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer-badges {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--gray-400);
}

.badge-icon {
    width: 12px;
    height: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
    font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .hero-visual {
        display: flex;
        flex: unset;
        width: 100%;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image {
        width: 320px;
        min-width: 320px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .trust-bar {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .newsletter-form {
        margin-left: 0;
        width: 100%;
    }

    .newsletter-input {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .browse-tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .browse-tag {
        flex-shrink: 0;
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
