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

body {
    font-family: 'Georgia', serif; 
    color: #dedede;
    line-height: 1.6;
    background-color: #1a1a1a; 
}


.text-accent { color: #8b0000; }
.text-small { font-size: 1rem; color: #a0a0a0; font-family: sans-serif; letter-spacing: 2px; }


.hero {
    position: relative;
    width: 100%;
    height: 60vh; 
    background-image: url('../media/game.jpg'); 
    background-size: cover;
    background-position: center 15%;
}

/* .hero-img {
    width: 100%;
    height: 70vh; 


    object-fit: contain; 
    
    display: block;
    background-color: #1a1a1a;
} */

.hero-top-text {
    position: absolute;
    top: 20px;
    left: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border: 1px solid #444;
}

.hero-top-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    font-family: sans-serif;
}

.hero-bottom-text {
    position: absolute;
    bottom: 30px;
    left: 40px;
}

.hero-bottom-text h2 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,1);
}

.credit-vertical {
    position: absolute;
    right: 10px;
    bottom: 20px;
    writing-mode: vertical-rl;
    color: #aaa;
    font-size: 0.8rem;
    transform: rotate(180deg);
    font-family: sans-serif;
}


.content-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}

.main-article {
    column-count: 3;
    column-gap: 30px;
    text-align: justify;
}

.main-article p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.drop-cap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    color: #8b0000;
}

.author {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 5px;
}

.sidebar {
    display: flex;
    flex-direction: column;
}

.accent-box {
    background-color: #8b0000;  /* dark red*/
    color: #fff;
    padding: 30px 25px;
    
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    
    margin-bottom: -15px; 
    position: relative;
    z-index: 2; 
    font-family: sans-serif;
}

.dark-box {
    background-color: #2b2b2b; 
    padding: 40px 25px 25px 25px;
    position: relative;
    z-index: 1; 
    border: 1px solid #444;
}

.dark-box p { font-size: 0.9rem; }
.small-credit { font-size: 0.7rem; color: #888; margin-top: 10px; }

.bottom-hero {
    width: 100%;
    padding: 40px 20px;
}

.footer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
}

.footer-img {
    width: 45%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
}


@media (max-width: 900px) {
    .content-container { grid-template-columns: 1fr; }
    .main-article { column-count: 2; }
}

@media (max-width: 600px) {
    .main-article { column-count: 1; }
    .hero-bottom-text h2 { font-size: 2.2rem; }
    

    .footer-images { flex-direction: column; }
    .footer-img { width: 90%; }
    .main-nav { right: 0; left: 0; width: max-content; margin: 0 auto; }
}


a:link { color: #d4af37; text-decoration: none; font-weight: bold; }
a:visited { color: #b8860b; }
a:focus { outline: 2px dashed #8b0000; background-color: #333; }
a:hover { color: #fff; text-decoration: underline; }
a:active { color: #ff4500; }

@media (max-width: 900px) {
    .content-container { grid-template-columns: 1fr; }
    .main-article { column-count: 2; }
}

@media (max-width: 600px) {
    .main-article { column-count: 1; }
    .hero-bottom-text h2 { font-size: 2.2rem; }
}

.main-nav {
    position: absolute; 
    top: 20px;          
    right: 40px;    
    background-color: rgba(26, 26, 26, 0.9); 
    padding: 12px 25px; 
    z-index: 10;
    border: 1px solid #444; 
    border-bottom: 3px solid #8b0000; 
    border-radius: 5px;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
    gap: 25px; 
    margin: 0;
    padding: 0;
}

.main-nav li a {
    color: #dedede !important; 
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.main-nav li a:hover {
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: 2px solid #8b0000;
}

