body {
    font-family: 'Forum', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #434A2A, #131A17);
    color: #fff;
    min-height: 100vh;
}

.top-nav-strip {
    background: linear-gradient(to bottom, #3c3214, #87734c);
    padding: 10.2px 0;
    width: 100%;
}

.nav-links {
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nav-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #fff;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

header {
   background: linear-gradient(to bottom, #2c2b20, #1a1a12);
    padding: 40px 0 20px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 320px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease-in-out;
}

.logo:hover {
    transform: scale(1.02);
}

.slogan {
    font-size: 1.4em;
    color: #E0C066;
    font-weight: 500;
    font-style: italic;
    margin-top: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.game-thumb {
    background-color: rgba(0, 0, 0, 0.6);
    border: 3px double #D4AF37;
    padding: 20px;
    width: 260px;
    height: 430px;
    text-align: left;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    margin: 15px;
    position: relative;
}

/* Corner decorations */
.game-thumb::before,
.game-thumb::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #D4AF37;
}

.game-thumb::before {
    top: -5px;
    left: -5px;
    border-width: 3px 0 0 3px;
}

.game-thumb::after {
    bottom: -5px;
    right: -5px;
    border-width: 0 3px 3px 0;
}

.game-thumb img {
    max-width: 100%;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.game-thumb h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 10px;
    color: #D4AF37; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.game-thumb p {
    font-size: 1.2em;
    color: #ddd;
    line-height: 1.3;
}

/* Enhanced styles for About and Contact sections */
.about-contact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 100%);
    padding: 2.5rem 3rem;
    margin: 3rem auto 2rem;
    max-width: 800px;
    border-radius: 1.25rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.about-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 1.25rem 1.25rem 0 0;
}

.about-contact h2 {
    font-size: 1.8em;
    margin-bottom: 1.2rem;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-contact p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.8;
    font-weight: 400;
}

.about-contact a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.about-contact a:hover {
    color: #fff;
    border-bottom-color: #D4AF37;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

a.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 500;
    font-size: 1.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.375rem;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    font-family: 'Forum', serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-family: 'Forum', serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-submit:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 1rem;
}

.success-message {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin: 0;
}

.error-message {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin: 0;
}
