/**
 * PleaOrFree.com - Cinematic Digital Courtroom Theme
 * Dark Noir & High-End Legal Aesthetic
 */

/* ============================================
   CSS VARIABLES - Color Palette
   ============================================ */
:root {
    --bg-deep: #0b0c10;           /* Deepest charcoal/navy background */
    --surface-dark: #1f2833;       /* Dark gunmetal grey for cards */
    --gavel-gold: #c5a059;        /* Primary accent color */
    --text-primary: #e0e0e0;       /* Primary text */
    --text-secondary: #b0b0b0;     /* Secondary text */
    --text-muted: #888888;         /* Muted text */
    --stamp-guilty: #dc3545;       /* Red for guilty stamp */
    --stamp-freed: #c5a059;        /* Gold for freed stamp */
    --stamp-dismissed: #6c757d;    /* Grey for dismissed */
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    font-weight: 600;
}

.text-gold {
    color: var(--gavel-gold) !important;
}

/* ============================================
   NAVBAR - Glass Morphism
   ============================================ */
.court-navbar {
    background-color: rgba(11, 12, 16, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--gavel-gold) !important;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--gavel-gold) !important;
}

/* User Profile Circle */
.user-profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gavel-gold), #d4b870);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-initial {
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION - Cinematic & Animated
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(31, 40, 51, 0.6) 0%, rgba(11, 12, 16, 0.9) 50%, var(--bg-deep) 100%);
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(197, 160, 89, 0.08), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(197, 160, 89, 0.1), transparent);
    background-size: 200% 200%;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-text-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gavel-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-line-1 {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-line-2 {
    display: block;
    color: var(--gavel-gold);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.hero-subheadline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(197, 160, 89, 0.2));
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 3rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-hero .btn-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-gavel-outline {
    background-color: transparent;
    border: 2px solid var(--gavel-gold);
    color: var(--gavel-gold);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-gavel-outline:hover {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: var(--gavel-gold);
    color: var(--gavel-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.btn-gavel {
    background-color: transparent;
    border: 2px solid var(--gavel-gold);
    color: var(--gavel-gold);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-gavel:hover {
    background-color: var(--gavel-gold);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.scales-icon {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scale-left,
.scale-right {
    width: 80px;
    height: 4px;
    background: var(--gavel-gold);
    position: absolute;
    animation: scale-balance 3s ease-in-out infinite;
}

.scale-left {
    left: 0;
    transform-origin: right center;
    animation-delay: 0s;
}

.scale-right {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.5s;
}

.scale-center {
    width: 4px;
    height: 100px;
    background: var(--gavel-gold);
    position: relative;
    z-index: 2;
}

@keyframes scale-balance {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(197, 160, 89, 0.5);
    border-radius: 20px;
    margin: 0 auto 1rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--gavel-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fade In Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Join Section */
.why-join-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(31, 40, 51, 0.3) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: var(--surface-dark);
    padding: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.05), transparent);
    transition: left 0.5s ease;
}

.reason-card:hover::before {
    left: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(197, 160, 89, 0.2));
}

.reason-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gavel-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   COURT CARDS (Dockets)
   ============================================ */
.court-card {
    background-color: var(--surface-dark);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.court-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(197, 160, 89, 0.3);
}

.court-card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Status Badge */
.case-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.case-status.pending {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
}

.case-status.active {
    background-color: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.4);
    color: #198754;
}

.case-status.closed {
    background-color: rgba(108, 117, 125, 0.1);
    border-color: rgba(108, 117, 125, 0.4);
    color: #6c757d;
}

/* Post Content */
.case-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Verdict Stamp Overlay */
.verdict-stamp-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    z-index: 10;
    pointer-events: none;
    opacity: 0.9;
}

.stamp-verdict {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    position: relative;
    padding: 1rem 2rem;
    border: 4px solid;
    background: rgba(0, 0, 0, 0.3);
    animation: stamp-appear 0.6s ease-out;
}

.stamp-verdict.guilty {
    color: var(--stamp-guilty);
    border-color: var(--stamp-guilty);
    box-shadow: 
        0 0 20px rgba(220, 53, 69, 0.4),
        inset 0 0 20px rgba(220, 53, 69, 0.1);
}

.stamp-verdict.freed {
    color: var(--stamp-freed);
    border-color: var(--stamp-freed);
    box-shadow: 
        0 0 20px rgba(197, 160, 89, 0.4),
        inset 0 0 20px rgba(197, 160, 89, 0.1);
}

.stamp-verdict.dismissed {
    color: var(--stamp-dismissed);
    border-color: var(--stamp-dismissed);
    box-shadow: 
        0 0 20px rgba(108, 117, 125, 0.4),
        inset 0 0 20px rgba(108, 117, 125, 0.1);
}

/* Grunge texture for stamps */
.stamp-verdict::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,0.3) 3px, rgba(0,0,0,0.3) 6px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0,0,0,0.2) 2px, rgba(0,0,0,0.2) 4px),
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.2) 0%, transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

@keyframes stamp-appear {
    0% {
        transform: translate(-50%, -50%) rotate(-12deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) rotate(-10deg) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-12deg) scale(1);
        opacity: 0.9;
    }
}

/* ============================================
   VOTING SECTION
   ============================================ */
.vote-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.juror-count {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--gavel-gold);
    font-weight: 600;
    letter-spacing: 2px;
}

.case-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.vote-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.vote-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid;
}

.vote-btn.btn-guilty {
    background-color: transparent;
    border-color: var(--stamp-guilty);
    color: var(--stamp-guilty);
}

.vote-btn.btn-guilty:hover {
    background-color: var(--stamp-guilty);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.vote-btn.btn-absolved {
    background-color: transparent;
    border-color: var(--stamp-freed);
    color: var(--stamp-freed);
}

.vote-btn.btn-absolved:hover {
    background-color: var(--stamp-freed);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
}

.vote-btn.btn-dismissed {
    background-color: transparent;
    border-color: var(--stamp-dismissed);
    color: var(--stamp-dismissed);
}

.vote-btn.btn-dismissed:hover {
    background-color: var(--stamp-dismissed);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   CASE META
   ============================================ */
.case-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}

/* ============================================
   CONFESSION FORM
   ============================================ */
.confession-form {
    background-color: var(--surface-dark);
    padding: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.confession-form h2 {
    color: var(--gavel-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.confession-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.confession-form .form-control {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--text-primary);
    border-radius: 0;
    padding: 0.75rem;
}

.confession-form .form-control:focus {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: var(--gavel-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.25);
}

.confession-form .form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    background-color: var(--surface-dark);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--text-primary);
    border-radius: 0;
    padding: 1.25rem;
}

.alert-info {
    border-color: rgba(13, 110, 253, 0.3);
    background-color: rgba(13, 110, 253, 0.05);
    color: #9ec5fe;
}

.alert-success {
    border-color: rgba(25, 135, 84, 0.3);
    background-color: rgba(25, 135, 84, 0.05);
    color: #75b798;
}

.alert-warning {
    border-color: rgba(255, 193, 7, 0.3);
    background-color: rgba(255, 193, 7, 0.05);
    color: #ffda6a;
}

.alert-danger {
    border-color: rgba(220, 53, 69, 0.3);
    background-color: rgba(220, 53, 69, 0.05);
    color: #f1aeb5;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gavel-gold), transparent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
    padding: 2.5rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
}

/* ============================================
   VOTE FEEDBACK
   ============================================ */
.vote-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(25, 135, 84, 0.95);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 9999;
    animation: vote-feedback-fade 2s ease-out forwards;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes vote-feedback-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    border-top-color: var(--gavel-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ADMIN CONTROLS
   ============================================ */
.admin-controls {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-line-1,
    .hero-line-2 {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .court-card-body {
        padding: 1.5rem;
    }
    
    .case-content {
        font-size: 1rem;
    }
    
    .stamp-verdict {
        font-size: 2.5rem;
        letter-spacing: 4px;
        padding: 0.75rem 1.5rem;
    }
    
    .vote-buttons {
        flex-direction: column;
    }
    
    .vote-btn {
        width: 100%;
    }
    
    .confession-form {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 1rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-muted {
    color: var(--text-muted) !important;
}

.bg-surface {
    background-color: var(--surface-dark) !important;
}

.border-gold {
    border-color: var(--gavel-gold) !important;
}
