* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:URL(https://derrickwebber.com/jeffery/bg.jpg);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 2px 0;
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: #fff;
    transform: scale(1.05);
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('https://derrickwebber.com/jeffery/header.avif') no-repeat center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.section h2 {
    font-size: 3em;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 40px;
}

.bio, .disclaimer {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.card h3 {
    color: #ffd700;
    font-size: 1.6em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card p {
    font-size: 1.1em;
    color: #bbb;
}

.evidence-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.evidence-list a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.evidence-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    text-align: center;
    font-size: 1em;
    color: #888;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .card {
        width: 100%;
    }
    .section h2 {
        font-size: 2em;
    }
}