body {                          
    font-family: Arial, sans-serif;                          
    text-align: center;                          
    background-image: url('background.jpg');                          
    background-size: cover;                          
    background-position: center;                          
    background-repeat: no-repeat;                          
    background-attachment: fixed;                          
    margin: 0;                          
    padding-top: 80px;         
}                           

.menu-container {             
    position: absolute;             
    top: 20px;             
    left: 20px;             
    z-index: 10;         
}          

.hamburger {             
    cursor: pointer;             
    display: flex;             
    flex-direction: column;             
    gap: 6px;         
}          

.hamburger div {             
    width: 35px;             
    height: 4px;             
    background-color: #fd0000;             
    border-radius: 2px;         
}          

.dropdown-content {             
    display: none;             
    position: absolute;             
    background-color: rgba(255, 255, 255, 0.9);             
    min-width: 160px;             
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);             
    border-radius: 5px;             
    margin-top: 10px;         
}          

.dropdown-content a {             
    color: black;             
    padding: 12px 16px;             
    text-decoration: none;             
    display: block;             
    text-align: left;         
}          

.dropdown-content a:hover {             
    background-color: #f1f1f1;         
}          

.show { 
    display: block; 
}          

h1 {                          
    color: #fd0000;                          
    font-size: 4rem; /* Made huge as requested */
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);                   
}                  

h2 {                          
    color: rgb(0, 0, 0);                          
    font-size: 2.5rem; /* Made larger */
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);                   
}                  

video {                          
    max-width: 100%;                          
    height: auto;                          
    margin-top: 20px;                          
    border: 1px solid #000000;                           
    box-shadow: none;                           
    border-radius: 4px;                           
    background-color: #000;                  
}                  

#catVid3 {                          
    max-width: 50%;                           
}

/* Original WIP elements incorporated */
.wip-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 50px;
    max-width: 80%;
    border: 2px solid #fd0000;
    text-align: left; /* Centers container, keeps text readable */
}

.back-btn {
    color: #fd0000;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.back-btn:hover {
    text-decoration: underline;
}

/* Custom essay selectors forcing everything to be huge and bold */
.wip-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fd0000;
}

.wip-box p, .wip-box li {
    font-size: 1.5rem;
    font-weight: 900; /* Forces maximum thickness */
    color: #ffffff; /* White looks much better over your dark translucent box */
    line-height: 1.6;
}

.wip-box ul {
    padding-left: 30px;
}

.wip-box li {
    margin-bottom: 15px;
}

.orange-text { color: #ffa500 !important; }
.black-text { color: #a0a0a0 !important; } /* Light grey for stealth on a dark bg */
.white-text { color: #ffffff !important; }
