/* 基本のフォント設定 */
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    /* 背景画像とグラデーションを重ねて表示 */
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.85)), url('small-STOCKS-COMBAT-Banner_.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #111827; /* フォールバック用の背景色 */
}
/* ヒーローセクションの背景画像 */
.hero-bg {
    /* 背景はbodyで指定。ここではテキストが読みやすいように少しだけ暗くする */
    background-color: rgba(17, 24, 39, 0.2);
}
/* セクションタイトルのスタイル */
.section-title {
    font-weight: 900;
    color: #38bdf8; /* text-sky-400 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-left: 4px solid #38bdf8;
    padding-left: 1rem;
}
/* カードコンポーネントのスタイル */
.card {
    /* Glassmorphism Effect */
    background-color: rgba(31, 41, 55, 0.6); /* bg-gray-800 with 60% opacity */
    border: 1px solid rgba(55, 65, 81, 0.5); /* border-gray-700 with 50% opacity */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
/* エントリーボタンのスタイル */
.btn-entry {
    background-color: #0ea5e9; /* bg-sky-500 */
    color: white;
    transition: all 0.3s ease;
}
.btn-entry:hover:not(:disabled) {
    background-color: #0284c7; /* bg-sky-600 */
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}
.btn-entry:disabled {
    background-color: #4b5563; /* bg-gray-600 */
    cursor: not-allowed;
    opacity: 0.7;
}
/* 強調したいテキストのスタイル */
.highlight {
    color: #f59e0b; /* text-amber-500 */
}

/* フォーム入力欄のスタイル */
.form-input {
    width: 100%;
    background-color: rgba(17, 24, 39, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
}
.form-checkbox {
    margin-right: 0.5rem;
    background-color: rgba(17, 24, 39, 0.8);
    border: 1px solid #4b5563;
}