/* General Body Styles */
:root {
    --text-color-primary: #8B4513; /* A soft, dark brown */
    --text-color-secondary: #A0522D; /* A lighter, friendly brown */
    --background-color-main: #FFF0F5; /* Lavender Blush - a soft pink */
    --background-color-secondary: #FFFFFF;
    --link-color: #FF69B4; /* Hot Pink for accents */
    --border-color: #FFC0CB; /* Pink for borders */
}

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    color: var(--text-color-primary);
    background-color: var(--background-color-main);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2em;
    font-weight: 400;
    color: var(--text-color-primary);
    text-decoration: none;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color-secondary);
    font-size: 1em;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--link-color);
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Game Section */
.game-section {
    text-align: center;
    padding-bottom: 40px;
}

.game-intro h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin: 20px 0 10px;
    color: var(--link-color);
}

.game-intro .subtitle {
    font-size: 1.5rem;
    color: var(--text-color-secondary);
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color-primary);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* About Section */
.about-section {
    background-color: var(--background-color-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    line-height: 1.7;
}

.about-content ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}

.about-content li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-color-secondary);
    font-size: 0.9em;
    background-color: var(--background-color-secondary);
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-intro h1 {
        font-size: 2.5rem;
    }

    .game-intro .subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .main-nav {
        display: none; /* Simplification for mobile */
    }
} 