/* =====================================================
   ScamWebGuard - Premium Redesign
   Modern, Clean, Professional Security Theme
   ===================================================== */

/* Google Fonts - Already loaded in layout */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   CSS Custom Properties / Design Tokens
   ===================================================== */
:root {
    /* Brand Colors */
    --primary:        #4f46e5;     /* Indigo */
    --primary-light:  #818cf8;     /* Light indigo */
    --primary-dark:   #3730a3;     /* Dark indigo */
    --secondary:      #06b6d4;     /* Cyan accent */
    --accent:         #f59e0b;     /* Amber for warnings */
    --danger:         #ef4444;     /* Red for danger */
    --success:        #22c55e;     /* Green for safe */
    --warning:        #f59e0b;     /* Amber for caution */

    /* Text */
    --text-primary:   #111827;
    --text-secondary: #6b7280;
    --text-muted:     #9ca3af;

    /* Surfaces */
    --bg-base:        #ffffff;
    --bg-subtle:      #f9fafb;
    --bg-muted:       #f3f4f6;
    --border:         #e5e7eb;
    --border-light:   #f3f4f6;

    /* Gradients */
    --gradient-hero:  linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    --gradient-card:  linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-danger:  linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);

    /* Shadows */
    --shadow-xs:  0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm:  0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 30px rgb(79 70 229 / 0.3);

    /* Border Radius */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Backward compat */
    --primary-color: var(--primary);
    --secondary-color: var(--primary-light);
    --danger-color: var(--danger);
    --text-color: var(--text-primary);
    --light-text: var(--text-secondary);
    --background: var(--bg-base);
    --light-background: var(--bg-subtle);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* =====================================================
   Navigation
   ===================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 68px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
}

.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo:hover span {
    opacity: 0.85;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgb(79 70 229 / 0.06);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
    background: rgb(79 70 229 / 0.08);
}

.btn-scammed {
    background: var(--gradient-danger) !important;
    color: white !important;
    padding: 0.5rem 1.125rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 12px rgb(239 68 68 / 0.35) !important;
    transition: var(--transition) !important;
}

.btn-scammed:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgb(239 68 68 / 0.45) !important;
    background: none !important;
    background-image: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    display: none;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    padding: 7rem 5% 5rem;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero background mesh effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 40%, rgb(99 102 241 / 0.25) 0%, transparent 50%),
                radial-gradient(circle at 75% 60%, rgb(6 182 212 / 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating orbs */
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(79 70 229 / 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #a5f3fc;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: linear-gradient(135deg, #a5f3fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
}

/* Search Bar */
.search-container {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 2rem;
}

.search-container form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: var(--radius-xl);
    padding: 6px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
    transition: var(--transition);
}

.search-container form:focus-within {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4), 0 0 0 3px rgb(79 70 229 / 0.4);
}

.search-container input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: calc(var(--radius-xl) - 6px);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: transparent;
    outline: none;
    min-width: 0;
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-container input.error {
    background: rgb(239 68 68 / 0.05);
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: calc(var(--radius-xl) - 6px);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

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

.search-btn:active {
    transform: translateY(0);
}

.validation-error {
    color: #fee2e2;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.description {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats {
    padding: 5rem 5%;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}

.stat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgb(79 70 229 / 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--gradient-primary);
}

.stat-box.reviews .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-box .number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.stat-box.reviews .number {
    color: var(--warning);
}

.stat-box .label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* =====================================================
   Recent Websites Marquee
   ===================================================== */
.recent-websites-section {
    padding: 4rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.recent-websites-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.recent-websites-header {
    text-align: center;
    margin-bottom: 2rem;
}

.recent-websites-header h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 60s linear infinite;
    gap: 1.25rem;
    padding-left: 1.5rem;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-primary);
}

.marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.marquee-item.loading {
    color: var(--text-muted);
}

.marquee-domain {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.marquee-score {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
}

.marquee-score.high {
    background: rgb(34 197 94 / 0.15);
    color: #15803d;
}

.marquee-score.medium {
    background: rgb(245 158 11 / 0.15);
    color: #b45309;
}

.marquee-score.low {
    background: rgb(239 68 68 / 0.15);
    color: #b91c1c;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   Verify Page
   ===================================================== */
.verify-container {
    padding: 8rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.verification-info {
    margin-top: 4rem;
}

.verification-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgb(79 70 229 / 0.3);
}

.icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 700;
}

/* =====================================================
   Detail Sections (backward compat)
   ===================================================== */
.detail-section {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.detail-section h2 {
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.375rem;
    font-weight: 700;
}

.tech-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.tech-item, .info-item {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tech-item:hover, .info-item:hover {
    border-color: rgb(79 70 229 / 0.3);
    box-shadow: var(--shadow-sm);
}

.tech-label, .info-label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.tech-value, .info-value {
    word-break: break-word;
    color: var(--text-primary);
    font-weight: 500;
}

/* Inline info layouts */
.admin-info .info-grid,
.server-info .info-grid,
.registrar-info .info-grid {
    grid-template-columns: 1fr;
}

.admin-info .info-item,
.server-info .info-item,
.registrar-info .info-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.admin-info .info-label,
.server-info .info-label,
.registrar-info .info-label {
    margin-bottom: 0;
    flex: 0 0 150px;
}

.admin-info .info-value,
.server-info .info-value,
.registrar-info .info-value {
    text-align: right;
    font-weight: 500;
}

/* =====================================================
   Alert / Status components
   ===================================================== */
.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-danger {
    background: rgb(239 68 68 / 0.08);
    border: 1px solid rgb(239 68 68 / 0.3);
    color: #b91c1c;
}

.alert-success {
    background: rgb(34 197 94 / 0.08);
    border: 1px solid rgb(34 197 94 / 0.3);
    color: #15803d;
}

.alert-warning {
    background: rgb(245 158 11 / 0.08);
    border: 1px solid rgb(245 158 11 / 0.3);
    color: #b45309;
}

/* =====================================================
   Reviews Section
   ===================================================== */
.reviews-section {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.reviews-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.reviews-section h3 {
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.avg-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    min-width: 180px;
}

.avg-rating-score {
    display: flex;
    align-items: baseline;
}

.rating-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.rating-max {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.avg-rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.625rem;
}

.stars {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 0.375rem;
}

.star.filled {
    color: #f59e0b;
}

.total-reviews {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rating-breakdown {
    flex: 1;
    min-width: 280px;
}

.rating-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
}

.rating-label {
    width: 36px;
    text-align: right;
    margin-right: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 10px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 0.75rem;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #818cf8);
    border-radius: var(--radius-full);
}

.rating-count {
    width: 28px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-list {
    margin-bottom: 2rem;
}

.review-item {
    background: white;
    padding: 1.375rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-item:hover {
    border-color: rgb(79 70 229 / 0.2);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.825rem;
}

.review-rating {
    font-size: 1.1rem;
    color: #e5e7eb;
}

.review-content {
    line-height: 1.7;
    color: var(--text-secondary);
}

.no-reviews {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

.submit-review {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.submit-review h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(79 70 229 / 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.75rem;
    color: #e5e7eb;
    cursor: pointer;
    margin-right: 4px;
    transition: color 0.15s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f59e0b;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgb(79 70 229 / 0.3);
}

.submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(79 70 229 / 0.4);
}

/* =====================================================
   FAQ / Accordion
   ===================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgb(79 70 229 / 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.375rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-subtle);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-content {
    padding: 0 1.375rem 1.375rem;
    border-top: 1px solid var(--border-light);
}

/* =====================================================
   Facts / Technical Data Containers
   ===================================================== */
.facts-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.facts-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}

.facts-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.facts-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facts-icon i {
    color: white;
    font-size: 1.1rem;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.925rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item:hover {
    background: var(--bg-subtle);
}

.fact-item.positive {
    color: #166534;
    background: rgb(34 197 94 / 0.04);
}

.fact-item.negative {
    color: #991b1b;
    background: rgb(239 68 68 / 0.04);
}

/* Info Rows */
.info-list {
    padding: 0;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

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

.info-key {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-all;
}

.boolean-value {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.true-value {
    background: rgb(34 197 94 / 0.12);
    color: #15803d;
}

.false-value {
    background: rgb(239 68 68 / 0.12);
    color: #b91c1c;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    grid-column: 1;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-section h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 1rem;
}

.link-section a,
.link-section div a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.link-section a:hover {
    color: #a5b4fc;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 5%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   Advertisement Container
   ===================================================== */
.advertisement-container {
    text-align: center;
    padding: 1rem;
}

/* =====================================================
   Utilities
   ===================================================== */
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger  { color: var(--danger); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgb(79 70 229 / 0.3);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(79 70 229 / 0.4);
    color: white;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--gradient-danger);
    color: white;
    box-shadow: 0 4px 12px rgb(239 68 68 / 0.3);
}

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

.btn-secondary {
    background: var(--bg-muted);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
    color: var(--primary);
}

/* =====================================================
   Mobile Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-links {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(320px, 80vw);
        flex-direction: column;
        background: white;
        padding: 5rem 2rem 2rem;
        gap: 0.375rem;
        z-index: 999;
        box-shadow: -10px 0 40px rgb(0 0 0 / 0.2);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding: 7rem 5% 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .search-container form {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-container input {
        border-radius: calc(var(--radius-lg) - 6px);
        border-bottom: 1px solid var(--border-light);
    }

    .search-btn {
        border-radius: calc(var(--radius-lg) - 6px);
        padding: 0.875rem;
    }

    /* Stats */
    .stat-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        grid-column: auto;
    }

    .footer-links {
        grid-column: auto;
        grid-template-columns: 1fr 1fr;
    }
}

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

    .stat-box {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }
}