/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #080C0D; /* ダーク背景 */
    color: #EFEBF2; /* 文字 */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #1E2526; /* サブダーク背景文字 (Header/Footer Background) */
    color: #EFEBF2; /* 文字 */
    padding-top: 20px;
    min-height: 80px;
    border-bottom: #23798C 3px solid; /* メインライト背景 (Accent) */
}

header h1 {
    float: left;
    margin: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    color: #EFEBF2; /* 文字 */
}

#game-logo {
    height:50px; /* Adjust as needed */
    margin-right: 15px;
}

.game-logo-big {
    height: 200px; /* Adjust as needed */
    margin-right: 15px;
}

header nav {
    float: right;
    margin-top: 15px; /* Align with h1 */
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #EFEBF2; /* 文字 */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
}

header a:hover, header nav a.active {
    color: #91D7F2; /* ハイライト文字 */
    font-weight: bold;
}

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

/* Hero Section (index.html) */
#hero {
    background-color: #2a9cb5; /* サブライト背景 */
    color: #080C0D; /* ダーク背景 (Text on light hero) */
    padding: 60px 0;
    text-align: center;
    border-bottom: #23798C 1px solid; /* メインライト背景 (Accent) */
}

#hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #080C0D; /* ダーク背景 (Text on light hero) */
}

#hero p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1E2526; /* サブダーク背景文字 (Slightly darker text on light hero) */
}

.cta-container {
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background-color: #23798C; /* メインライト背景 (Accent) */
    color: #EFEBF2; /* 文字 */
    padding: 15px 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #91D7F2; /* ハイライト文字 (as button background) */
    color: #080C0D; /* ダーク背景 (Text for contrast) */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    border-color: #23798C;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
section {
    padding: 40px 0;
    border-bottom: 1px solid #1E2526; /* サブダーク背景文字 (Separator) */
}

section:last-child {
    border-bottom: none;
}

section h3 {
    color: #91D7F2; /* ハイライト文字 (Subheadings) */
    font-size: 24px;
    margin-bottom: 20px;
}

.game-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
    border: 2px solid #1E2526; /* サブダーク背景文字 (Border) */
}

/* Content Page Styles (Terms, Privacy, Contact) */
.content-page h2 {
    color: #91D7F2; /* ハイライト文字 */
    margin-bottom: 20px;
    border-bottom: 2px solid #23798C; /* メインライト背景 (Accent) */
    padding-bottom: 10px;
}

.content-page h3 {
    color: #91D7F2; /* ハイライト文字 (Lighter than main text on dark bg) */
    font-size: 20px;
    margin-top: 30px;
}

.content-page p, .content-page ul {
    margin-bottom: 15px;
    color: #EFEBF2; /* 文字 */
}

.content-page ul {
    list-style: disc;
    padding-left: 20px;
}

.content-page a {
    color: #91D7F2; /* ハイライト文字 */
    text-decoration: none;
}

.content-page a:hover {
    text-decoration: underline;
    color: #23798C; /* メインライト背景 (Accent for hover) */
}

/* Footer Styles */
footer {
    background-color: #1E2526; /* サブダーク背景文字 (Footer Background) */
    color: #757575; /* サブ文字 */
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
    border-top: #23798C 3px solid; /* メインライト背景 (Accent) */
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #757575; /* サブ文字 */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #EFEBF2; /* 文字 */
}

/* Form Styles (for contact page, if used) */
form div {
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #EFEBF2; /* 文字 */
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #757575; /* サブ文字 (Border for inputs) */
    border-radius: 5px;
    background-color: #080C0D; /* ダーク背景 (Input background) */
    color: #EFEBF2; /* 文字 */
    box-sizing: border-box; /* Added for better width calculation */
}

form textarea {
    resize: vertical;
}

/* Utility Classes */
/* Add any utility classes here if needed */

/* ライセンスページ用の追加スタイル */
.license-section {
    margin-bottom: 40px;
    background-color: rgba(30, 37, 38, 0.7); /* サブダーク背景文字 (少し透過) */
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #23798C; /* メインライト背景 (Accent) */
}

.license-section h4 {
    color: #91D7F2; /* ハイライト文字 */
    margin-top: 20px;
    margin-bottom: 10px;
}

.license-section ul {
    list-style: none;
    padding-left: 0;
}

.license-section li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.license-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #23798C; /* メインライト背景 (Accent) */
} 