/* ベース設定 */
body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* ダーク背景 */
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    background: #1e1e1e;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* ヘッダー */
h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff8a00, #e52e71); /* Q Shopらしいアクセント */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #aaaaaa;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* 統計情報（メンバー数・在庫数） */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    gap: 20px;
}

.stat-box {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid #444;
}

.stat-box h3 {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box .number {
    margin: 10px 0 0 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

/* ボタンエリア */
.discord-btn {
    display: inline-block;
    background-color: #5865F2; /* Discord Color */
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #444;
}