/* SocialCasinos.Casino - Main Stylesheet */

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #16a34a;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --dark: #1e293b;
    --light: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--warning-color);
    text-decoration: underline;
}

/* Jackpot Ticker */
.jackpot-ticker {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--dark);
    padding: 0.75rem 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jackpot-ticker .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jackpot-amount {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

/* Header */
.main-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.age-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coin-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.coin-icon {
    font-size: 1.2rem;
}

.user-menu {
    position: relative;
}

.user-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    overflow: hidden;
}

.user-dropdown.active {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s;
}

.user-dropdown a:hover {
    background: var(--light);
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

/* Coin Progress Bar */
.coin-progress-bar {
    height: 4px;
    background: var(--light);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    width: 0%;
    transition: width 0.5s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

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

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

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

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

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.badge-primary {
    background: rgba(255,255,255,0.2);
    color: white;
}

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

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.game-image {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    font-size: 5rem;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Game Page Styles */
.game-page {
    padding: 2rem 0;
    min-height: calc(100vh - 400px);
}

.game-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

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

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card, .disclaimer-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.disclaimer-card {
    background: #fef3c7;
    border-left: 4px solid var(--warning-color);
}

/* Slot Machine */
.slot-machine {
    text-align: center;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slot-reels {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.reel {
    background: white;
    border: 3px solid var(--dark);
    border-radius: 12px;
    padding: 1rem;
    width: 120px;
}

.symbol {
    font-size: 4rem;
    padding: 0.5rem 0;
}

@keyframes spin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.slot-result {
    min-height: 60px;
    margin: 1rem 0;
}

.slot-controls {
    margin-top: 2rem;
}

.bet-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-bet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

#betAmount {
    width: 100px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
}

.paytable {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payout-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--light);
    border-radius: 6px;
}

/* Roulette */
.roulette-wheel {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px #fbbf24;
}

.wheel-center {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.wheel-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.betting-grid {
    margin-top: 2rem;
}

.outside-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bet-btn {
    padding: 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.bet-btn:hover {
    background: var(--light);
    transform: scale(1.02);
}

.red-btn {
    background: #fee2e2;
    border-color: var(--danger-color);
}

.black-btn {
    background: #f1f5f9;
    border-color: var(--dark);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 0.25rem;
}

.number-btn {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.number-btn.red {
    background: #dc2626;
    color: white;
}

.number-btn.black {
    background: #1e293b;
    color: white;
}

.number-btn.green {
    background: #16a34a;
    color: white;
}

.number-btn:hover {
    transform: scale(1.1);
    z-index: 10;
}

/* Blackjack */
.blackjack-table {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.dealer-section, .player-section {
    margin-bottom: 2rem;
}

.dealer-section h3, .player-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cards {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    min-height: 100px;
}

.card {
    width: 80px;
    height: 112px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.card-back {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
}

.blackjack-controls {
    margin-top: 2rem;
}

.playing-phase {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Messages */
.win-message {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    animation: slideIn 0.5s;
}

.lose-message {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Forms */
.auth-page {
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
}

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

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

.auth-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

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

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

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

.alert ul {
    margin-left: 1.5rem;
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.disclaimer-section {
    padding: 2rem 0;
    background: #fef3c7;
}

.disclaimer-content ul {
    margin-left: 2rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

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

.modal-body {
    padding: 2rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Age Gate */
.age-gate-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.age-gate-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.age-gate-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.age-gate-icon {
    margin: 2rem 0;
}

.age-badge-xl {
    background: var(--danger-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.age-gate-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Telegram Promo Banner - MAIN ATTRACTION */
.telegram-promo-banner {
    margin: 2.5rem 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.9), 0 0 80px rgba(245, 158, 11, 0.5);
    }
}

.telegram-promo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 4px solid #fbbf24;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.telegram-promo-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.telegram-promo-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.6);
    border-color: #fcd34d;
}

.telegram-logo-wrapper {
    position: relative;
    animation: bounce 2s infinite, rotate 4s linear infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.telegram-logo {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.telegram-promo-text {
    text-align: center;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.telegram-main-cta {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    animation: textPulse 1.5s ease-in-out infinite;
    color: #ffffff;
    word-break: break-word;
}

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

.telegram-sub-text {
    font-size: 1.25rem;
    opacity: 1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

/* Small text for age gate elements */
.age-gate-small-title {
    font-size: 0.65rem;
    margin: 2rem 0 0.25rem;
    color: #999;
    font-weight: 400;
}

.age-gate-description-small {
    font-size: 0.55rem;
    color: #999;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.age-gate-disclaimer-small {
    font-size: 0.5rem;
    color: #999;
    padding: 0.3rem;
    background: transparent;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.age-gate-disclaimer-small p {
    margin: 0;
}

.age-btn-compact {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 3rem;
    min-width: 150px;
}

.age-gate-footer-small {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.age-gate-footer-small p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
}

.age-gate-footer-small a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.age-gate-footer-small a:hover {
    color: var(--primary-color);
}

.age-gate-logo h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.age-gate-icon {
    margin: 1rem 0;
}

.age-badge-xl {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.age-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.age-badge-large {
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: bold;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.responsible-gaming-links {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.responsible-gaming-links a {
    color: var(--warning-color);
}

.no-money-badge {
    background: var(--warning-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

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

.leaderboard-table th {
    background: var(--light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

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

.leaderboard-table tr.current-user {
    background: #dbeafe;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

/* Wallet/Transactions */
.wallet-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-icon {
    font-size: 3rem;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

.transaction-amount.negative {
    color: var(--danger-color);
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Policy Pages */
.policy-page {
    padding: 2rem 0;
    min-height: calc(100vh - 400px);
}

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

.policy-content h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.policy-content section {
    margin: 2rem 0;
}

.policy-content h2 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.policy-content ul {
    margin-left: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

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

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

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

    .number-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .age-gate-buttons {
        flex-direction: column;
    }

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

    .policy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
    }

    .betting-grid {
        font-size: 0.875rem;
    }

    .slot-reels {
        gap: 0.5rem;
    }

    .reel {
        width: 80px;
    }

    .symbol {
        font-size: 2.5rem;
    }
}

.login-prompt {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Mobile Responsive for Telegram Banner */
@media (max-width: 768px) {
    .telegram-promo-link {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .telegram-logo {
        width: 60px;
        height: 60px;
    }

    .telegram-main-cta {
        font-size: 2rem;
    }

    .telegram-sub-text {
        font-size: 1rem;
    }

    .age-btn-compact {
        font-size: 1.25rem;
        padding: 0.75rem 2rem;
        min-width: 120px;
    }

    .age-gate-content {
        padding: 2rem 1.5rem;
    }

    .age-gate-container {
        padding: 1rem;
    }

    .age-gate-small-title {
        font-size: 0.6rem;
        margin-top: 2.5rem;
    }

    .age-gate-description-small {
        font-size: 0.5rem;
    }

    .age-gate-disclaimer-small {
        font-size: 0.45rem;
    }
}

@media (max-width: 480px) {
    .telegram-main-cta {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .telegram-sub-text {
        font-size: 0.9rem;
    }

    .telegram-promo-link {
        padding: 1.5rem 1rem;
    }

    .telegram-logo {
        width: 50px;
        height: 50px;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .age-btn-compact {
        width: 100%;
        font-size: 1.1rem;
        padding: 0.65rem 1.5rem;
    }

    .age-gate-content {
        padding: 1.5rem 1rem;
    }

    .age-gate-container {
        padding: 0.5rem;
    }

    .age-gate-small-title {
        font-size: 0.55rem;
        margin-top: 2rem;
    }

    .age-gate-description-small {
        font-size: 0.48rem;
    }

    .age-gate-disclaimer-small {
        font-size: 0.42rem;
        padding: 0.25rem;
    }

    .age-gate-footer-small p {
        font-size: 0.55rem;
    }
}
