body {
    margin: 0;
    padding: 0;
    background-color: #2a2a2a;
    color:#2a2a2a;
    position: relative;
}

#mouse-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
}

#enemy-mouse {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: red;
    border: 2px solid darkred;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1001;
    filter: blur(8px);
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-video iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.main-body {
    margin: 20px;
    display: flex;
    justify-content: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border-style: double;
    gap: 10px;
    width: 1280px;
    background-color: #f0f0f0;
    padding: 30px;
    box-shadow: black 10px 10px 20px;
}

.corner-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid black;
    grid-column: span 1;
}

.title-cell {
    grid-column: span 6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-style: normal;
    padding: 20px;
}

.headline-cell {
    grid-column: span 8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.title {
    font-family: cabazon, serif;
    font-size: 84px;
    font-weight: bold;
}

.headline {
    font-family: amplitude-extra-compressed, sans-serif;
    text-transform: uppercase;
font-weight: 700;
font-style: normal;
    font-size: 100px;
    font-weight: bold;
}

.corner {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.image-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.image-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Row 1: 1 + 1 + 4 + 2 = 8 */
.image-item:nth-child(5) {
    grid-column: span 1;
}

.image-item:nth-child(6) {
    grid-column: span 1;
}

.image-item:nth-child(7) {
    grid-column: span 4;
}

.image-item:nth-child(8) {
    grid-column: span 2;
}

/* Row 2: 2 + 2 + 2 + 2 = 8 */
.image-item:nth-child(9) {
    grid-column: span 2;
}

.image-item:nth-child(10) {
    grid-column: span 2;
}

.image-item:nth-child(11) {
    grid-column: span 2;
}

.image-item:nth-child(12) {
    grid-column: span 2;
}

/* Row 3: 1 + 1 + 4 + 2 = 8 */
.image-item:nth-child(13) {
    grid-column: span 1;
}

.image-item:nth-child(14) {
    grid-column: span 1;
}

.image-item:nth-child(15) {
    grid-column: span 4;
}

.image-item:nth-child(16) {
    grid-column: span 2;
}

/* Row 4: 2 + 2 + 2 + 2 = 8 */
.image-item:nth-child(17) {
    grid-column: span 2;
}

.image-item:nth-child(18) {
    grid-column: span 2;
}

.image-item:nth-child(19) {
    grid-column: span 2;
}

.image-item:nth-child(20) {
    grid-column: span 2;
}

/* Row 5: 1 + 1 + 4 + 2 = 8 */
.image-item:nth-child(21) {
    grid-column: span 1;
}

.image-item:nth-child(22) {
    grid-column: span 1;
}

.image-item:nth-child(23) {
    grid-column: span 4;
}

.sub-headline {
    font-family: amplitude-extra-compressed, sans-serif;
font-weight: 700;
font-style: normal;

    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 8px;
    margin-bottom: 4px;
}

.body-text {
    font-family: mencken-std, sans-serif;
font-weight: 400;
font-style: normal;
    
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
    max-height: 100px;
}

