/* 全体設定 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    background-color: #2c2f33; /* Discord風の背景色 */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-img i {
    font-size: 80px;
    color: #ccc;
    margin-bottom: 10px;
}

/* ヘッダー */
header {
    background-color: #23272a;
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #99aab5;
    margin-bottom: 30px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    margin: 10px;
}

.btn-primary {
    background-color: #5865F2; /* Discordパープル */
    color: white;
}

.btn-primary-sns {
    background-color: #84C98B; /* Discordパープル */
    color: white;
}

.btn-primary-sns:hover {
    background-color: #84C98B;
}

.btn-secondary {
    background-color: #4f545c;
    color: white;
}

.btn-botstatus {
    background-color: #6658A6;
    color: white;
}

.btn-secondary:hover {
    background-color: #686d73;
}

/* 特徴カード */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #36393f;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* テーブル */
.bg-light {
    background-color: #23272a;
}

.command-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.command-table th, .command-table td {
    border-bottom: 1px solid #4f545c;
    padding: 15px;
    text-align: left;
}

code {
    background-color: #2f3136;
    padding: 2px 6px;
    border-radius: 4px;
    color: #00b0f4;
}

/* フッター */
footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #72767d;
}

/* ステータスバー（固定＆カード風デザイン） */
.bot-status-bar {
    position: fixed; /* 常に画面上部に表示 */
    top: 20px;       /* 画面の一番上から少し隙間をあける */
    left: 50%;
    transform: translateX(-50%); /* 中央寄せ */
    z-index: 1000;   /* 他の要素より上に表示 */
    width: 90%;
    max-width: 400px; /* あまり広がりすぎないように制限 */
}

.status-flex {
    background-color: #36393f; /* 画像のようなカードの色 */
    padding: 15px 25px !important;
    border-radius: 12px;       /* 角丸 */
    box-shadow: 0 8px 24px rgba(0,0,0,0.5); /* 浮き出た影 */
    display: flex;
    flex-direction: column;    /* 縦並びに配置 */
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.05); /* 微かな縁取り */
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
}

/* 画像にあった「盾」のようなアイコンを模したドット */
#status-dot {
    width: 14px;
    height: 14px;
    border-radius: 3px; /* 少し四角に近い角丸 */
    margin-right: 10px;
}

.dot-online { background-color: #43b581; box-shadow: 0 0 10px #43b581; }
.dot-offline { background-color: #f04747; }

#guild-count {
    color: #00b0f4; /* サーバー数は少し目立つ色に */
    font-size: 1.1rem;
}