:root {
    --primary-blue: #2095c8;
    --bg-grey: #f7f7f7;
    --text-color: #333;
    --white: #ffffff;
    --max-width: 1100px;
    --radius: 8px;
    /* Mesh idea: unified radius */
}

body {
    background-color: var(--bg-grey);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    display: flex;
    justify-content: center;
}

.site-wrapper {
    width: 100%;
    max-width: var(--max-width);
    background-color: var(--bg-grey);
    padding-bottom: 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    width: 100%;
}

.header-image {
    width: 100%;
    max-width: 670px;
    /* Match original site size */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center it */
}

/* Nav */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Better spacing */
    padding: 20px 0;
    flex-wrap: wrap;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
    /* Slight mesh adjustment */
    transition: transform 0.2s;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-button {
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    /* Unified radius */
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Consistent spacing */
    align-items: center;
    flex: 1;
}

/* Promos */
.promo-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1024px;
    justify-items: center;
}

.promo-link {
    display: block;
    transition: opacity 0.2s;
    width: 100%;
}

.promo-link:hover {
    opacity: 0.9;
}

.promo-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    /* Unified radius */
    display: block;
    object-fit: cover;
    /* Ensure they mesh well if sizes differ slightly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Latest Section */
.latest-guide-section {
    width: 100%;
    max-width: 800px;
    /* Tighter focus for content */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-header-img {
    width: 100%;
    max-width: 600px;
    /* Don't let the text banner get too huge */
    height: auto;
}

.player-wrapper {
    width: 100%;
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Making the player pop a bit more */
}

/* Subscribe */
.subscribe-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sub-link img {
    height: 40px;
    width: auto;
    transition: transform 0.2s;
}

.sub-link:hover img {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    color: #888;
    font-size: 12px;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--primary-blue);
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #166e96;
    text-decoration: underline;
}

/* About Page Specifics */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-banner-container {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-banner {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-section {
    line-height: 1.6;
    font-size: 18px;
    color: #444;
}

.about-quote {
    font-style: italic;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.about-attribution {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-style: normal;
    color: #888;
}

.about-attribution a {
    color: var(--primary-blue);
    text-decoration: none;
}

.about-attribution a:hover {
    text-decoration: underline;
}

.about-description {
    margin-top: 30px;
    font-size: 18px;
}

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

/* Contact Page Specifics */
.contact-container {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.submit-button:hover {
    background-color: #1a7eb1;
}

.submit-button:active {
    transform: scale(0.98);
}