/* ==========================================
   index専用スタイル（完全版・最終調整済）
   ========================================== */

/* ===== body ===== */
body {
    margin: 0;
    background: transparent;
    color: white;

    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

/* ===== メイン ===== */
.indexmain_container {
    position: relative;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;

    height: 90vh;
}

/* ===== ロゴ中央 ===== */
.indexlogo_center {
    margin-top: 60px;
    margin-bottom: 30px;
}

/* ===== ロゴ（青オーラ） ===== */
.indexlogo_img {
    width: 520px;

    filter:
        drop-shadow(0 0 10px #00eaff)
        drop-shadow(0 0 20px #00ccff)
        drop-shadow(0 0 40px #0099ff);

    animation: logoFloat 4s ease-in-out infinite,
               logoAura 3s ease-in-out infinite alternate;
}

/* 浮遊 */
@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* オーラ */
@keyframes logoAura {
    from {
        filter:
            drop-shadow(0 0 8px #00eaff)
            drop-shadow(0 0 15px #00ccff);
    }
    to {
        filter:
            drop-shadow(0 0 20px #00eaff)
            drop-shadow(0 0 50px #0099ff);
    }
}

/* ===== 横並び（重要：比率調整済） ===== */
.indexcontent_row {
    display: flex;
    gap: 40px;
    margin-top: 0px;
    align-items: stretch;
}

/* 左：ダウンロード */
.indexbox_left {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
}

/* 中央：ニュース（主役） */
.indexbox_center {
    flex: 2.2;
    min-width: 600px;
    max-width: 600px;
}

/* 右：ログイン */
.indexbox_right {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
}

/* ===== ボックス共通 ===== */
.indexbox_left,
.indexbox_center,
.indexbox_right {
    padding: 20px;

    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);

    transition: 0.3s;
}

/* ホバー */
.indexbox_left:hover,
.indexbox_center:hover,
.indexbox_right:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

/* ===== タイトル（MMO風） ===== */
.indexbox_left h2,
.indexbox_center h2,
.indexbox_right h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* ===== ニュース ===== */
.indexnews_item {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 300;
}

/* ===== 入力（完全修正版） ===== */
.indexinput {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;

    background: rgba(10, 10, 10, 0.8); /* ←しっかり黒 */
    border: 1px solid rgba(255,255,255,0.25);

    color: #ffffff;
    font-size: 14px;

    outline: none;
    box-sizing: border-box;

    transition: 0.2s;
}

/* フォーカス時 */
.indexinput:focus {
    border: 1px solid #00ffff;
    box-shadow: 0 0 8px rgba(0,255,255,0.5);
}

/* プレースホルダー */
.indexinput::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ===== ボタン ===== */
.indexbtn_download,
.indexbtn_login {
    width: 100%;
    padding: 12px;

    border: none;
    cursor: pointer;

    background: linear-gradient(90deg, #00ffff, #0088ff);
    color: black;

    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;

    transition: 0.3s;
}

/* ホバー */
.indexbtn_download:hover,
.indexbtn_login:hover {
    box-shadow: 0 0 20px #00ffff;
    transform: scale(1.05);
}