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

:root {
    --primary-color: #003580;
    --primary-hover: #002060;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --finland-blue: #003580;
    --finland-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    min-height: 100vh;
}

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

.age-badge {
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--error-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.coin-bar {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.coin-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

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

.coin-amount {
    font-size: 20px;
    margin-left: auto;
}

.jackpot-ticker {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: var(--shadow);
}

.jackpot-amount {
    color: #fbbf24;
    font-size: 22px;
    margin: 0 8px;
}

.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 997;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: bold;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn-large {
    padding: 14px 28px;
    font-size: 18px;
}

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

.btn-login {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.btn-register {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
}

.btn-register:hover {
    background: var(--primary-hover);
}

.btn-logout {
    color: var(--error-color) !important;
}

main {
    min-height: calc(100vh - 300px);
    padding: 40px 20px;
}

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

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.no-money-badge {
    display: inline-block;
    background: var(--error-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin: 20px 0;
}

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

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.game-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.game-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.game-info {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.info-badge {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
}

.game-card .btn {
    margin: 5px;
}

.games-disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.games-disclaimer h3 {
    margin-bottom: 15px;
}

.games-disclaimer ul {
    margin-left: 20px;
}

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 400px);
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

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

.auth-box h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

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

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--error-color);
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.age-verify-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.age-verify-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.age-verify-box {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.age-verify-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-verify-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.age-verify-text {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.age-verify-subtext {
    color: var(--text-light);
    margin-bottom: 40px;
}

.age-verify-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.age-verify-disclaimer {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--warning-color);
}

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

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

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

.game-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.game-board {
    margin: 30px 0;
}

.slot-machine {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

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

.reel {
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    box-shadow: var(--shadow-lg);
}

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

.slot-result.win {
    color: #22c55e;
}

.slot-result.lose {
    color: #ef4444;
}

.game-controls {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.bet-controls label {
    font-weight: 600;
}

.bet-controls input {
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    width: 150px;
}

.game-info-panel {
    margin-top: 30px;
}

.payout-table {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

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

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

.payout-table .payout {
    text-align: right;
    font-weight: 600;
    color: var(--success-color);
}

.game-disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    border-radius: 8px;
}

.roulette-table {
    margin: 30px 0;
}

.betting-grid, .outside-bets {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 10px;
}

.bet-number {
    padding: 15px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.bet-number.red {
    background: #fee2e2;
    border-color: #ef4444;
}

.bet-number.black {
    background: #1e293b;
    color: white;
    border-color: #0f172a;
}

.bet-number.green {
    background: #d1fae5;
    border-color: #22c55e;
}

.bet-number:hover, .bet-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.bet-number.selected, .bet-btn.selected {
    box-shadow: 0 0 0 3px var(--primary-color);
}

.outside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

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

.bet-btn.red-btn {
    background: #fee2e2;
    border-color: #ef4444;
}

.bet-btn.black-btn {
    background: #1e293b;
    color: white;
    border-color: #0f172a;
}

.wheel-result {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.wheel-result.spinning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.wheel-result.win {
    background: #d1fae5;
    color: #065f46;
}

.wheel-result.lose {
    background: #fee2e2;
    color: #991b1b;
}

.current-bet {
    margin-bottom: 20px;
    font-size: 18px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.blackjack-table {
    background: #059669;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.dealer-section, .player-section {
    margin-bottom: 30px;
}

.dealer-section h3, .player-section h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.card-hand {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 120px;
}

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

.card-red {
    color: #ef4444;
}

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

.card-back {
    background: linear-gradient(135deg, #3730a3 0%, #1e3a8a 100%);
    color: white;
    font-size: 48px;
}

.game-message {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-top: 20px;
}

.game-message.win {
    background: #d1fae5;
    color: #065f46;
}

.game-message.lose {
    background: #fee2e2;
    color: #991b1b;
}

.game-message.push {
    background: #fef3c7;
    color: #92400e;
}

.play-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.rules-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.rules-box ul {
    margin-left: 20px;
}

.profile-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

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

.profile-card h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.profile-info, .info-row {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
}

.info-value {
    color: var(--text-dark);
}

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

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.balance-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.balance-icon {
    font-size: 64px;
}

.balance-label {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 48px;
    font-weight: bold;
}

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

.wallet-transactions h2 {
    margin-bottom: 20px;
}

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

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

.transactions-table thead {
    background: var(--bg-light);
}

.transactions-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

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

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

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

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

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

.no-transactions {
    text-align: center;
    color: var(--text-light);
    padding: 40px;
}

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

.leaderboard-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.leaderboard-table thead {
    background: var(--bg-light);
}

.leaderboard-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

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

.top-rank {
    background: linear-gradient(to right, #fef3c7 0%, #ffffff 100%);
}

.rank-cell {
    font-weight: bold;
    font-size: 18px;
}

.rank-medal {
    font-size: 24px;
}

.player-name {
    font-weight: 600;
}

.coins-earned {
    color: var(--success-color);
    font-weight: 600;
}

.leaderboard-note {
    background: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

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

.policy-page .container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policy-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.policy-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-page h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.policy-page ul {
    margin-left: 30px;
    margin-top: 10px;
}

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

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

.page-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.warning-box {
    background: #fee2e2;
    border: 3px solid var(--error-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.warning-message {
    font-size: 20px;
    color: var(--error-color);
    font-weight: 600;
    margin-top: 15px;
}

.exit-buttons {
    text-align: center;
    margin-top: 30px;
}

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

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

.cookie-table thead {
    background: var(--bg-light);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

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

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.modal-benefits ul {
    list-style: none;
    margin: 20px 0;
}

.modal-benefits li {
    padding: 10px 0;
    font-size: 16px;
}

.modal-privacy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.age-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.age-badge-footer {
    background: var(--error-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 32px;
    }

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

    .slot-reels {
        flex-direction: column;
        align-items: center;
    }

    .number-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

.demo-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.5s ease-out;
}

.demo-notice p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.demo-notice a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.demo-notice a:hover {
    text-decoration: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
