:root {
    --rope-tan: #C9A86C;
    --dark-brown: #5C4033;
    --cream: #F5F0E6;
    --light-teal: #7EC8D3;
    --dark-teal: #4A8B8B;
    --earth-brown: #7A6652;
    --charcoal: #3A3A3A;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
}

a {
    color: var(--dark-teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
}

header img {
    width: 100%;
    max-width: 400px;
}

/* News Banner */
.content-news {
    background-color: var(--dark-teal);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 12px 12px;
    color: var(--cream);
    text-align: center;
    padding: 15px 20px;
    border-top: 3px solid var(--rope-tan);
    border-bottom: 3px solid var(--rope-tan);
}

.content-news p {
    margin: 0;
}

/* Sections */
section {
    padding: 50px 0;
    border-bottom: 1px solid var(--rope-tan);
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dark-brown);
    display: inline-block;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-item {
    text-align: center;
}

.game-item .game-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-teal), var(--dark-brown));
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.game-item .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item:hover .game-image {
    opacity: 1;
}

.game-item h3 {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.game-item .year {
    color: var(--earth-brown);
    font-size: 0.9rem;
}

.game-item p {
    color: var(--charcoal);
    font-size: 0.9rem;
    margin-top: 8px;
}

.game-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About */
.about-content {
    max-width: 700px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content a {
    display: block;
    margin-top: 10px;
}

/* Footer */
footer {
    background: var(--dark-brown);
    color: var(--cream);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

footer a {
    color: var(--rope-tan);
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 10px;
}
