:root {
    --primary-color: #ee3152;
    --secondary-color: #674090;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --bg-dark: #1a1a2e;
    --bg-medium: #16213e;
    --bg-light: #0f3460;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(238, 49, 82, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--secondary-color);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-large {
    padding: 16px 48px;
    font-size: 20px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Start Screen */
.start-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.logo h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 800px;
}

.feature {
    background: var(--bg-medium);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

/* Setup Players */
.setup-screen {
    max-width: 800px;
    margin: 40px auto;
}

.setup-screen h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.players-list {
    margin: 30px 0;
}

.player-card {
    background: var(--bg-medium);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
}

.player-card:hover {
    border-color: var(--primary-color);
}

.player-number {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 80px;
}

.player-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-name {
    padding: 12px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    background: var(--bg-dark);
    color: white;
    font-size: 16px;
    width: 100%;
}

.player-name:focus {
    outline: none;
    border-color: var(--primary-color);
}

.gender-select {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-option {
    flex: 1;
    min-width: 100px;
    padding: 10px;
    background: var(--bg-dark);
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gender-option:hover {
    border-color: var(--primary-color);
}

.gender-option input[type="radio"] {
    margin: 0;
}

.gender-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-remove {
    background: var(--danger-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.btn-remove:hover {
    transform: scale(1.1);
}

#add-player-btn {
    width: 100%;
    margin: 20px 0;
}

.actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Categories */
.categories-screen {
    max-width: 1200px;
    margin: 40px auto;
}

.categories-screen h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-group {
    margin: 40px 0;
}

.group-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.category-card input[type="checkbox"] {
    display: none;
}

.category-content {
    background: var(--bg-medium);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 3px solid var(--bg-light);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover .category-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.category-card input:checked ~ .category-content {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.category-header h3 {
    flex: 1;
    font-size: 1.2rem;
}

.premium-badge, .new-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.premium-badge {
    background: gold;
    color: black;
}

.new-badge {
    background: var(--primary-color);
    color: white;
}

.category-description {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
}

.category-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    background: var(--bg-dark);
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--bg-light);
}

.checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.category-card input:checked ~ .checkmark {
    opacity: 1;
    transform: scale(1);
}

.error-message {
    background: var(--danger-color);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

/* Game Play */
.game-layout {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 20px;
}

.game-screen {
    flex: 1;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.round-info {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-controls .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.challenge-container {
    min-height: auto; /* Adjust height to fit content */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Player Turn Info */
.player-turn-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.player-turn-name {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px;
}

.choice-screen {
    text-align: center;
    width: 100%;
}

.choice-screen h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.choice-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.choice-btn {
    background: var(--bg-medium);
    border: 3px solid var(--bg-light);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.choice-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.truth-btn {
    border-color: #3b82f6;
}

.truth-btn:hover {
    background: linear-gradient(135deg, var(--bg-medium), #3b82f6);
}

.dare-btn {
    border-color: var(--primary-color);
}

.dare-btn:hover {
    background: linear-gradient(135deg, var(--bg-medium), var(--primary-color));
}

.choice-icon {
    font-size: 4rem;
}

.choice-text {
    font-size: 2rem;
    font-weight: bold;
}

.choice-desc {
    font-size: 1rem;
    color: var(--text-gray);
}

.challenge-card {
    background: var(--bg-medium);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 3px solid var(--bg-light);
    text-align: center;
}

.challenge-card.hidden {
    display: none;
}

.choice-screen.hidden {
    display: none;
}

.challenge-type {
    margin-bottom: 20px;
}

.truth-badge, .dare-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.truth-badge {
    background: #3b82f6;
    color: white;
}

.dare-badge {
    background: var(--primary-color);
    color: white;
}

.timer-display {
    font-size: 2rem;
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    display: inline-block;
}

.timer-display.hidden {
    display: none;
}

.timer-display.timer-finished {
    animation: pulse 0.5s ease-in-out infinite;
    background: var(--danger-color);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.challenge-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 30px 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-text b {
    color: var(--primary-color);
}

.challenge-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* End Screen */
.end-screen {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

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

.stats-section {
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-medium);
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-light);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-card.success {
    border-color: var(--success-color);
}

.stat-card.danger {
    border-color: var(--danger-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card.success .stat-number {
    color: var(--success-color);
}

.stat-card.danger .stat-number {
    color: var(--danger-color);
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Truth vs Dare Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.truth-card {
    border-color: #3b82f6;
}

.dare-card {
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.stat-percent {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-top: 10px;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    transition: width 1s ease;
}

.truth-progress {
    background: #3b82f6;
}

.dare-progress {
    background: var(--primary-color);
}

.success-progress {
    background: var(--success-color);
}

.category-progress {
    background: var(--secondary-color);
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.award-card {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid gold;
    transition: var(--transition);
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.award-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: gold;
    margin-bottom: 10px;
}

.award-description {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Player Stats */
.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.player-stat-card {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-light);
    text-align: left;
    transition: var(--transition);
}

.player-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.player-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.player-stat-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.gender-badge {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-light);
}

.gender-badge.male {
    background: #3b82f6;
    border-color: #3b82f6;
}

.gender-badge.female {
    background: #ec4899;
    border-color: #ec4899;
}

.gender-badge.diverse {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.player-stat-details {
    margin: 15px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
}

.detail-row.success {
    color: var(--success-color);
}

.detail-row.danger {
    color: var(--danger-color);
}

.detail-label {
    font-weight: 500;
}

.detail-value {
    font-weight: bold;
}

/* Category Stats */
.category-stats-list {
    margin: 20px 0;
}

.category-stat-item {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
}

.category-stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / -1;
}

.category-stat-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.category-stat-count {
    color: var(--text-gray);
}

.category-stat-percent {
    font-weight: bold;
    color: var(--secondary-color);
    min-width: 60px;
    text-align: right;
}

/* History List */
.history-list {
    margin: 20px 0;
    text-align: left;
}

.history-item {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 2px solid var(--bg-light);
}

.history-item.completed {
    border-color: var(--success-color);
}

.history-item.failed {
    border-color: var(--danger-color);
}

.history-badge {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-medium);
    border-radius: 50%;
}

.history-content {
    flex: 1;
}

.history-text {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.history-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.history-players {
    font-weight: 500;
    color: var(--primary-color);
}

.history-status {
    font-weight: bold;
}

/* Ensure hidden elements do not occupy space */
.hidden {
    display: none !important;
    visibility: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

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

    .choice-buttons {
        grid-template-columns: 1fr;
    }

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

    .player-turn-name {
        font-size: 2.2rem;
    }

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

    .challenge-actions {
        flex-direction: column;
    }

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }

    .game-layout {
        flex-direction: column;
    }

    .game-screen {
        max-width: 100%;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.lang-btn {
    background: var(--bg-medium);
    border: 2px solid var(--bg-light);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================
   Site Header & Navigation
   ========================================== */
.site-header {
    background: var(--bg-dark);
    border-bottom: 2px solid var(--primary-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.main-nav .logo:hover {
    color: #ff4757;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn-play {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav-links .btn-play:hover {
    background: #ff4757;
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   Site Footer
   ========================================== */
.site-footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--bg-light);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.site-footer .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.site-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.site-footer .footer-section ul li a:hover {
    color: var(--primary-color);
}

.site-footer .footer-section ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================
   Info Pages (Rules, About, Privacy, Imprint)
   ========================================== */
.info-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.info-page h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-page h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.info-page h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.info-page p {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.info-page ul,
.info-page ol {
    color: var(--text-gray);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-page li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-page strong {
    color: var(--text-light);
}

/* Rules Page */
.rules-section,
.about-section,
.legal-section {
    background: var(--bg-medium);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 2px solid var(--bg-light);
}

.rules-list {
    counter-reset: none;
}

.rules-list li {
    margin-bottom: 1rem;
}

.tips-list li {
    position: relative;
    padding-left: 0.5rem;
}

/* Features List */
.features-list li {
    margin-bottom: 0.75rem;
}

/* CTA Section in Info Pages */
.info-page .cta-section {
    text-align: center;
    margin: 3rem 0 2rem;
}

/* ==========================================
   Responsive Adjustments for Header/Footer
   ========================================== */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }

    .main-nav .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a:not(.btn-play) {
        display: none;
    }

    .site-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-page h1 {
        font-size: 2rem;
    }

    .rules-section,
    .about-section,
    .legal-section {
        padding: 1.5rem;
    }
}

/* ==========================================
   Main Content Area Adjustment
   ========================================== */
.main-content {
    min-height: calc(100vh - 200px);
}

.main-content .container {
    min-height: auto;
}
