* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #000000;
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 6px solid #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 3rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 3px
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 3rem;
    max-width: 1000px;
}

.site-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                 0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    animation: fadeIn 1.5s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-detail {
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #cccccc;
    animation: fadeInUp 1.4s ease-out;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    font-weight: normal;
    letter-spacing: 0.02em;
    animation: fadeIn 2s ease-out;
    text-align: left;
    padding: 0 1rem;
}

.hero-description:last-of-type {
    margin-bottom: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Legacy header for detail pages */
header {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 4px solid #000000;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

header h2 {
    font-size: 1.25rem;
    font-weight: normal;
    letter-spacing: 0.05em;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
}

.disclaimer {
    background-color: #f5f5f5;
    border: 2px solid #000000;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer-minimal {
    background-color: #f0f0f0;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    padding: 0.75rem;
    margin: 2rem 0;
    text-align: center;
}

.disclaimer-minimal p {
    font-size: 0.85rem;
    color: #666666;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.profile-card {
    background-color: #ffffff;
    border: 3px solid #000000;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-card:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.profile-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    border-bottom: 3px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15) brightness(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: luminosity;
}

.profile-card:hover .profile-image-container video {
    transform: scale(1.03);
    filter: grayscale(100%) contrast(1.25) brightness(1.05);
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding: 2rem;
    filter: grayscale(100%) contrast(1.15) brightness(0.95);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: luminosity;
}

.profile-image-container img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.profile-card:hover .profile-image-container img {
    transform: scale(1.03) rotate(-0.5deg);
    filter: grayscale(100%) contrast(1.25) brightness(1.05);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
}

.placeholder-video {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    color: #666666;
}

.profile-card:hover .placeholder-video {
    color: #cccccc;
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.profile-card:hover .profile-info h3 {
    border-bottom-color: #ffffff;
}

.profile-info .title {
    font-size: 1rem;
    font-style: italic;
    margin: 0.5rem 0;
}

.profile-info .date {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.profile-info .counts {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.footer-disclaimer {
    margin-top: 4rem;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    border-top: 4px solid #ffffff;
}

.footer-site {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Profile Detail Page Styles */
.profile-detail {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 4px solid #000000;
}

.profile-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.profile-header .title {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.profile-header .date {
    font-size: 1rem;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.04) 0px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.04) 4px
        ),
        radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    border: 3px solid #000000;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.92);
    mix-blend-mode: luminosity;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.04) 0px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.04) 4px
        ),
        radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    padding: 2.5rem;
    filter: grayscale(100%) contrast(1.2) brightness(0.92);
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.5);
    mix-blend-mode: luminosity;
}

.charge-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border: 3px solid #000000;
}

.charge-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.charge-section h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem 0;
}

.statute-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #000000;
    cursor: pointer;
}

.statute-link:hover {
    border-bottom: 1px solid #000000;
}

.charge-section p {
    margin: 1rem 0;
    text-align: justify;
}

.sources {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #cccccc;
    font-size: 0.9rem;
}

.sources strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sources li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sources a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px dotted #666666;
}

.sources a:hover {
    border-bottom: 1px solid #000000;
}

.back-link {
    display: inline-block;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border: 3px solid #000000;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.back-link:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-detail {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero {
        min-height: 60vh;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header h2 {
        font-size: 1rem;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-info h3 {
        font-size: 1.2rem;
    }

    main {
        padding: 1rem;
    }

    .footer-site {
        font-size: 1rem;
    }
}
