/* ナビゲーション */
.nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    background: #fff;
    color: #c00;
    transform: scale(1.05);
}

/* アバウトコンテンツ */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.about-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
}

.section-text strong {
    color: #fff;
    font-size: 1.2em;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
}

/* ハイライトボックス */
.highlight-box {
    background: rgba(255, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 40px;
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.highlight-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-shadow:
        0 0 15px rgba(255, 0, 0, 0.9),
        0 0 25px rgba(255, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.highlight-subtext {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.highlight-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.highlight-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    text-shadow:
        0 0 15px rgba(255, 0, 0, 0.9),
        0 0 25px rgba(255, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
}

/* インセンティブイントロ */
.incentive-intro {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* RTP注釈 */
.rtp-note {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic;
    margin-bottom: 30px !important;
}

/* 加速テキスト */
.acceleration-text {
    font-size: 1.4rem !important;
    font-weight: bold;
    margin-top: 40px !important;
    padding: 20px;
    background: rgba(255, 100, 0, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 100, 0, 0.4);
    text-shadow:
        0 0 10px rgba(255, 100, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* 召喚インセンティブグリッド */
.incentive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.incentive-card {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.incentive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff6666);
}

.incentive-card.hologram::before {
    background: linear-gradient(90deg, #00ffff, #0099ff);
}

.incentive-card.rainbow::before {
    background: linear-gradient(90deg, #ff0000, #ff9900, #ffff00, #00ff00, #0099ff, #9900ff);
}

.incentive-card.warlord::before {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.incentive-card.grandslam::before {
    height: 8px;
    background: linear-gradient(90deg, #ff0000, #ff9900, #ffff00, #00ff00, #0099ff, #9900ff, #ff0000);
    animation: rainbow-shift 3s linear infinite;
}

@keyframes rainbow-shift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.incentive-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 0 30px rgba(255, 0, 0, 0.5),
        0 0 50px rgba(255, 0, 0, 0.3);
}

.card-image {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.card-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow:
        0 0 15px rgba(255, 0, 0, 0.8),
        0 0 25px rgba(255, 0, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card-body.grand {
    gap: 20px;
}

.cost {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reward {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    padding: 12px 25px;
    border-radius: 12px;
    text-shadow:
        0 0 15px rgba(0, 255, 0, 0.9),
        0 0 25px rgba(0, 255, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.reward-list {
    text-align: center;
}

.reward-item {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffff00;
    text-shadow:
        0 0 10px rgba(255, 255, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 8px 0;
}

.grand-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 試験運用バッジ */
.trial-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 165, 0, 0.6);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

/* ボーナスセクション */
.bonus-section {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 35px;
    max-width: 700px;
    margin: 30px auto 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ranking-section {
    max-width: 650px;
}

.bonus-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ランキングリスト */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rank-item.gold {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.7);
}

.rank-item.silver {
    background: rgba(192, 192, 192, 0.25);
    border-color: rgba(192, 192, 192, 0.7);
}

.rank-item.bronze {
    background: rgba(205, 127, 50, 0.25);
    border-color: rgba(205, 127, 50, 0.7);
}

.rank-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.rank-icon {
    font-size: 2rem;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    flex: 1;
}

.rank-reward {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.15);
    padding: 8px 18px;
    border-radius: 10px;
    text-shadow:
        0 0 12px rgba(0, 255, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

/* マイルストーンリスト */
.milestone-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.milestone-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.milestone-number {
    min-width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.milestone-text {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    flex: 1;
    font-weight: 500;
}

.milestone-reward {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.15);
    padding: 8px 18px;
    border-radius: 10px;
    text-shadow:
        0 0 12px rgba(0, 255, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

/* 配分イントロ */
.distribution-intro {
    margin-bottom: 40px;
}

/* 配分グリッド */
.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.distribution-card {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.distribution-card.special {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.distribution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.card-icon-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-image img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.distribution-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-shadow:
        0 0 15px rgba(255, 0, 0, 0.7),
        0 0 25px rgba(255, 0, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.05em;
}

.distribution-amount {
    font-size: 2.3rem;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 20px;
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 20px;
    border-radius: 10px;
    display: inline-block;
    text-shadow:
        0 0 15px rgba(0, 255, 0, 0.9),
        0 0 25px rgba(0, 255, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.distribution-method {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.distribution-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.distribution-details p {
    font-size: 1rem;
    color: #fff;
    margin: 8px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.benefit {
    color: #ffff00 !important;
    font-weight: bold;
    font-size: 1.05rem !important;
    text-shadow:
        0 0 10px rgba(255, 255, 0, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8) !important;
}

.benefit-sub {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    font-weight: normal;
    margin-top: 8px;
}

/* 配分ビジュアル */
.distribution-visual {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.visual-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* パイチャート */
.pie-chart {
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background: conic-gradient(
        #ff4444 0deg 108.11deg,      /* コンプ者枠: 100/333 ≈ 30.03% → 108.11° */
        #4488ff 108.11deg 216.22deg, /* ホルダー枠: 100/333 ≈ 30.03% → 108.11° */
        #44ff44 216.22deg 324.33deg, /* RTP保有枠: 100/333 ≈ 30.03% → 108.11° */
        #ffaa00 324.33deg 360deg      /* 余剰分: 33/333 ≈ 9.91% → 35.67° */
    );
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pie-chart::after {
    content: '333';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* 凡例 */
.pie-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.legend-color.color-1 {
    background: #ff4444;
}

.legend-color.color-2 {
    background: #4488ff;
}

.legend-color.color-3 {
    background: #44ff44;
}

.legend-color.color-4 {
    background: #ffaa00;
}

.legend-text {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* リンクグリッド */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.link-card {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff6666);
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 25px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.3);
}

.link-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.link-image {
    margin-bottom: 20px;
    padding: 10px;
}

.link-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.link-card:hover .link-image img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.link-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.link-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 注意事項セクション */
.disclaimer-section {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
}

.disclaimer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

/* CTAセクション */
.cta-section {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 3px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .highlight-text {
        font-size: 1.5rem;
    }

    .highlight-subtext {
        font-size: 1.2rem;
    }

    .highlight-description {
        font-size: 1rem;
    }

    .acceleration-text {
        font-size: 1.2rem !important;
    }

    .incentive-grid {
        grid-template-columns: 1fr;
    }

    .distribution-grid {
        grid-template-columns: 1fr;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

    .pie-chart::after {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .pie-legend {
        grid-template-columns: 1fr;
    }

    .milestone-item {
        flex-direction: column;
        text-align: center;
    }

    .rank-item {
        gap: 10px;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        position: static;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .acceleration-text {
        font-size: 1.1rem !important;
        padding: 15px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .bonus-title {
        font-size: 1.3rem;
    }

    .distribution-title {
        font-size: 1.3rem;
    }

    .pie-chart {
        width: 200px;
        height: 200px;
    }

    .pie-chart::after {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .rank-icon {
        font-size: 1.5rem;
    }

    .rank-number {
        font-size: 1.2rem;
    }

    .rank-reward {
        font-size: 1.1rem;
    }

    .milestone-number {
        min-width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .cost {
        font-size: 1.3rem;
        padding: 8px 15px;
    }

    .reward {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .card-title {
        font-size: 1.7rem;
    }

    .distribution-amount {
        font-size: 2rem;
        padding: 6px 15px;
    }

    .rank-reward,
    .milestone-reward {
        font-size: 1.3rem;
        padding: 6px 15px;
    }
}
