@charset "UTF-8";

:root {
    --bg-color: #121417;       /* 全体の背景色 */
    --card-bg: #1e2126;        /* カードの背景色 */
    --accent-color: #06c2a6;   /* アクセントカラー (VRChat風) */
    --text-main: #ffffff;      /* メイン文字色 */
    --text-sub: #b0b0b0;       /* サブ文字色 */
    --border-color: #333333;
}

/* --- リセット & 基本設定 --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul, ol {
    list-style-position: inside;
    margin-left: 1rem;
}

/* --- 共通コンポーネント --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity 0.3s, transform 0.1s;
}
.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }

/* --- ヘッダー (Hero Section) --- */
.hero {
    text-align: center;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, rgba(6,194,166,0.1) 0%, rgba(18,20,23,0) 100%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero p {
    color: var(--text-sub);
    font-size: 1.2rem;
}

/* --- ガイドライン準拠バッジ --- */
.compliance-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 30px auto;
    font-size: 0.9rem;
    max-width: 600px;
}
.compliance-badge a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* --- 特徴セクション --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
.feature-card:hover {
    border-color: var(--accent-color);
}
.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--accent-color);
}

/* --- スクリーンショット --- */
.screenshots-bg {
    background-color: #181a1f;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.mockup-wrapper {
    text-align: center;
}

.phone-mockup {
    width: 260px;
    height: 540px;
    background-color: #000;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    margin-bottom: 15px;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    color: var(--text-sub);
    font-size: 0.9rem;
    font-weight: bold;
}

/* --- ドキュメントページ (規約・ポリシー) --- */
.doc-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}
.doc-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.doc-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.doc-content p {
    margin-bottom: 15px;
    color: #ddd;
}
.doc-meta {
    margin-bottom: 30px;
    color: var(--text-sub);
    font-size: 0.9rem;
}

/* --- フッター --- */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    color: var(--text-sub);
}
.footer-nav {
    margin-bottom: 20px;
}
.footer-nav a {
    margin: 0 15px;
    font-weight: bold;
}
.footer-nav a:hover { color: var(--accent-color); }
.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}