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

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-bg);
}

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

.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-age {
    background: #dc2626;
    color: white;
}

.badge-virtual {
    background: #10b981;
    color: white;
}

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

.badge-large {
    padding: 8px 16px;
    font-size: 14px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.coin-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-bar {
    background: white;
    border: 2px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-icon {
    font-size: 20px;
}

.coin-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.coin-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.demo-badge {
    background: var(--warning-color);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.jackpot-ticker {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    margin-top: 8px;
}

.jackpot-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jackpot-label {
    font-weight: 600;
    color: white;
}

.jackpot-amount {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.jackpot-coins {
    color: white;
}

.jackpot-note {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: #1d4ed8;
}

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

.btn-secondary:hover {
    background: #475569;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 18px;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 20px;
}

.btn-block {
    display: block;
    width: 100%;
}

.site-main {
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.features-section {
    margin: 60px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.games-preview {
    margin: 60px 0;
}

.games-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-preview-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.game-preview-image {
    font-size: 72px;
    margin-bottom: 16px;
}

.disclaimer-section {
    margin: 60px 0;
}

.disclaimer-box {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    padding: 30px;
    border-radius: 12px;
}

.disclaimer-box h3 {
    margin-bottom: 16px;
    color: #92400e;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #60a5fa;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.demo-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.games-list {
    display: grid;
    gap: 30px;
}

.game-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.game-card-header {
    background: var(--dark-bg);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.game-icon {
    font-size: 48px;
}

.game-card-body {
    padding: 24px;
}

.game-info {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.game-info-item {
    flex: 1;
    min-width: 150px;
}

.game-card-footer {
    padding: 24px;
    background: var(--light-bg);
}

.auth-page {
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.auth-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 14px;
}

.benefits-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.benefits-box h3 {
    margin-bottom: 12px;
}

.benefits-box ul {
    list-style: none;
    padding-left: 0;
}

.benefits-box li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
}

.auth-disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 32px 32px 16px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-top: 8px;
}

.modal-body {
    padding: 16px 32px;
}

.modal-footer {
    padding: 16px 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.age-gate-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.age-gate-subtext {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.age-gate-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.benefits-list {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    margin-bottom: 8px;
    border-radius: 8px;
}

.benefit-icon {
    color: var(--success-color);
    font-size: 20px;
    font-weight: bold;
}

.quick-register-form .form-group {
    margin-bottom: 16px;
}

.modal-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.modal-footer-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.noscript-warning {
    background: var(--warning-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.game-page {
    max-width: 1400px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 32px;
}

.game-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.game-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 968px) {
    .game-layout {
        grid-template-columns: 1fr;
    }
}

.game-main {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-info-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.game-info-card h3 {
    margin-bottom: 12px;
}

.game-disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
}

.payout-table {
    width: 100%;
    border-collapse: collapse;
}

.payout-table td {
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
}

.payout-table tr:last-child td {
    border-bottom: none;
}

.slot-machine {
    margin-bottom: 30px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.slot-reel {
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-symbol {
    font-size: 64px;
}

.slot-result {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    min-height: 40px;
}

.win {
    color: var(--success-color);
}

.lose {
    color: var(--text-secondary);
}

.game-controls {
    text-align: center;
}

.bet-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bet-input {
    width: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.game-balance {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

.roulette-wheel {
    text-align: center;
    margin-bottom: 30px;
}

.wheel-result {
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.result-number {
    font-size: 48px;
    font-weight: 800;
}

.result-number.red {
    color: #dc2626;
}

.result-number.black {
    color: #1f2937;
}

.result-number.green {
    color: #10b981;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.bet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.bet-btn {
    padding: 12px;
    border: 2px solid var(--primary-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.bet-btn:hover {
    background: var(--primary-color);
    color: white;
}

.bet-red {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.bet-red:hover {
    background: #b91c1c;
}

.bet-black {
    background: #1f2937;
    color: white;
    border-color: #1f2937;
}

.bet-black:hover {
    background: #111827;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.number-btn {
    padding: 12px 8px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.number-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.current-bet {
    background: var(--light-bg);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 50px;
}

.blackjack-table {
    margin-bottom: 30px;
}

.dealer-hand,
.player-hand {
    margin-bottom: 24px;
}

.cards {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    min-height: 120px;
}

.card {
    width: 80px;
    height: 112px;
    background: white;
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.card-red {
    color: #dc2626;
}

.card-black {
    color: #1f2937;
}

.card-back {
    background: var(--primary-color);
    color: white;
}

.game-message {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0;
    min-height: 40px;
    color: var(--primary-color);
}

.action-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.profile-page {
    max-width: 900px;
    margin: 0 auto;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.profile-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.profile-actions,
.quick-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wallet-page,
.leaderboard-page {
    max-width: 1000px;
    margin: 0 auto;
}

.wallet-balance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.balance-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.balance-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.transactions-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.transactions-table {
    overflow-x: auto;
}

.transactions-table table {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th,
.transactions-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.transactions-table th {
    font-weight: 600;
    background: var(--light-bg);
}

.transactions-table .positive {
    color: var(--success-color);
    font-weight: 600;
}

.transactions-table .negative {
    color: var(--error-color);
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.page-info {
    font-weight: 600;
}

.wallet-info,
.leaderboard-info {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.leaderboard-table {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow-x: auto;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table th {
    font-weight: 600;
    background: var(--light-bg);
}

.highlight-row {
    background: #fef3c7;
}

.medal {
    font-size: 24px;
}

.you-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    margin-left: 8px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.policy-page {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policy-page h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.policy-page h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-page section {
    margin-bottom: 32px;
}

.policy-page ul,
.policy-page ol {
    margin-left: 24px;
    margin-top: 12px;
}

.policy-page li {
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.important-notice {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.large-text {
    font-size: 24px;
    font-weight: 600;
}

.warning-box {
    background: #fee2e2;
    border: 3px solid #dc2626;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
}

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

.tip-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.help-resources {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.resource-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.help-note {
    margin-top: 24px;
    padding: 16px;
    background: #dbeafe;
    border-radius: 8px;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.browser-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

.age-restriction-page .action-buttons {
    text-align: center;
    margin-top: 40px;
}

.site-footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact {
    font-size: 14px;
    margin-top: 12px;
    opacity: 0.9;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .game-layout {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
