@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

:root {
    --green-background: #96fab3;
    --body-color: #fcfff5;
    --body-shadow: #bab5d3;
    --yellow-rimlight: #dbdeb8;
    --keyboard-body: #5a567e;
    --text-dark: #333;
    --text-light: #666;
    --accent-color: #7c4dff;
    --card-shadow: 0 8px 32px rgba(90, 86, 126, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--body-color);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--green-background) 0%, #a8f5c3 100%);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(90, 86, 126, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--keyboard-body);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    font-family: 'Yuji Syuku', serif;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--keyboard-body);
    letter-spacing: -0.5px;
    font-family: 'Yuji Syuku', serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--keyboard-body);
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.2s ease;
    font-family: 'Yuji Syuku', serif;
}

nav ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    display: inline-block;
}

main {
    flex: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.garlic-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.hero-section {
    flex: 1;
    padding: 50px 0;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.8em;
    color: var(--keyboard-body);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Yuji Syuku', serif;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.primary-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--keyboard-body);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--keyboard-body);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--keyboard-body);
    cursor: pointer;
    margin-left: 10px;
}

.secondary-button:hover {
    background-color: var(--keyboard-body);
    color: white;
}

h2.section-title {
    font-size: 2.2em;
    color: var(--keyboard-body);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Yuji Syuku', serif;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--green-background);
    border-radius: 2px;
}

/* --- News Section Styles --- */
.news-section {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(90, 86, 126, 0.15);
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    font-size: 0.85em;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.news-title {
    font-size: 1.6em;
    color: var(--keyboard-body);
    margin-bottom: 15px;
    font-family: 'Yuji Syuku', serif;
    line-height: 1.3;
}

.news-content {
    color: var(--text-dark);
    font-size: 1em;
    line-height: 1.7;
}

.news-footer {
    text-align: center;
    margin-top: 40px;
}
/* --------------------------- */

.showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 200px;
    background-color: var(--body-shadow); 
    object-fit: cover;
    border-radius: var(--border-radius);
}

.game-content {
    padding: 25px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-size: 1.4em;
    color: var(--keyboard-body);
    margin-bottom: 10px;
    font-family: 'Yuji Syuku', serif;
}

.game-description {
    color: var(--text-light);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex: 1; 
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--keyboard-body);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

footer {
    background-color: var(--keyboard-body);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    list-style: none;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--green-background);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* --- Booty Share & Text Page Styles --- */
.page-header {
    margin-bottom: 40px;
    padding: 40px 0 20px 0;
}

.text-center {
    text-align: center;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.booty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.booty-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.booty-card-header {
    border-bottom: 2px solid rgba(150, 250, 179, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.booty-eligibility {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booty-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.booty-tiers-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booty-tiers-list li {
    background: var(--body-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booty-tiers-list li strong {
    color: var(--keyboard-body);
    font-size: 1.1em;
}

.booty-tiers-list li strong i {
    color: var(--green-background);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-right: 8px;
}

.thicc-card {
    border: 2px solid var(--accent-color);
}

.thicc-note {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--text-light);
    background: rgba(124, 77, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
}

.faq-item h4 {
    font-family: 'Yuji Syuku', serif;
    font-size: 1.2em;
    color: var(--keyboard-body);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95em;
}

.inline-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .logo {
        font-size: 1.5em;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .garlic-image {
        max-width: 100%;
    }

    .secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .error-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    }

    .error-image {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: var(--border-radius);
    margin: 0 auto;
    display: block;
    }

}