/* --- Games Design Theme Styling --- */

/* General Body and Font Settings */
body {
    /* Use a dark background and a gaming-friendly font */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1a1a1d; /* Very dark grey/black */
    color: #e0e0e0; /* Off-white for text */
    /* Optional: Subtle background pattern for texture */
    background-image: linear-gradient(45deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)), 
                      linear-gradient(45deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Header and Navigation */
header {
    background: #0d0d0f; /* Even darker header */
    padding: 1.5em 0;
    text-align: center;
    border-bottom: 3px solid #66fcf1; /* Neon accent border */
}

header h1 {
    margin-bottom: 0.5em;
    color: #45a29e; /* Header colour */
    letter-spacing: 2px;
}

nav a {
    color: #66fcf1; /* Bright accent colour for primary links */
    text-decoration: none;
    padding: 0 20px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: #c5c6c7; /* Lighter on hover */
    text-decoration: none;
    text-shadow: 0 0 5px #66fcf1; /* Subtle neon glow */
}

/* Main Content Area */
main {
    padding: 40px 20px 80px; /* Increased padding */
    margin: 30px auto;
    max-width: 960px; /* Slightly wider content area */
    background: #202025; /* Slightly lighter inner container */
    border: 1px solid rgba(102, 252, 241, 0.2); /* Faint neon outline */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
    color: #66fcf1; /* Heading colour matching primary accent */
    border-bottom: 2px dotted #45a29e;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1em 0;
    background: #0d0d0f;
    color: #45a29e;
    position: relative; /* Changed to relative so it appears after all content */
    bottom: 0;
    width: 100%;
    margin-top: 30px;
}

/* --- Specific Page Styling --- */

/* Staff/Team Page Styling */
.staff-member {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2c2c31; /* Slight variation for staff boxes */
    transition: background-color 0.3s;
}

.staff-member:hover {
    background-color: #3a3a40; /* Highlight on hover */
}

.staff-member img {
    margin-right: 20px;
    border: 3px solid #66fcf1; /* Neon border for photo */
    box-shadow: 0 0 8px rgba(102, 252, 241, 0.5); /* Subtle glow */
    flex-shrink: 0;
}

.staff-member h3 {
    color: #c5c6c7;
    margin-top: 0;
}

/* Table Styling (for About page hours) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #333;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #2c2c31;
    color: #66fcf1;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Contact Form Styling */
#contactForm label {
    color: #c5c6c7;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #45a29e; /* Accent border on fields */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #1a1a1d;
    color: #e0e0e0;
}

#contactForm textarea {
    resize: vertical;
}

#contactForm button {
    background-color: #66fcf1; /* Primary button colour */
    color: #1a1a1d; /* Dark text on button */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

#contactForm button:hover {
    background-