/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.main-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
}

.nav-brand a {
    color: #ffd700;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-icon i {
    position: absolute;
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo-icon .fa-gamepad {
    transform: translate(-3px, -3px);
}

.logo-icon .fa-dice {
    transform: translate(3px, 3px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-sub {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo span {
    font-weight: bold;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

.balance {
    background: linear-gradient(45deg, #28a745, #20c997);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
                url('https://images.pexels.com/photos/1108117/pexels-photo-1108117.jpeg') center/cover;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

.disclaimer-badge {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

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

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Games Grid */
.featured-games {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.game-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #aaaaaa;
}

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

.game-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.game-card-large:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-image {
    flex-shrink: 0;
}

.game-icon-large {
    font-size: 4rem;
    color: #ffd700;
}

.game-content {
    flex: 1;
}

.game-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.game-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Promotions */
.promotions {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.promo-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.promo-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.auth-logo i {
    font-size: 2rem;
    color: #ffd700;
}

.auth-logo h1 {
    color: #ffd700;
    font-size: 1.8rem;
}

.auth-header h2 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.auth-header p {
    color: #cccccc;
}

.auth-form {
    margin-bottom: 2rem;
}

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

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ffd700;
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 53, 69, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(40, 167, 69, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-footer {
    text-align: center;
}

.auth-footer p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.auth-footer a {
    color: #ffd700;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Game Specific Styles */
.game-main {
    padding: 2rem 0;
    min-height: 80vh;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.game-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

/* Slot Machine */
.slot-machine {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.slot-display {
    background: #000;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 3px solid #ffd700;
}

.reels {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.reel {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.game-controls {
    margin-bottom: 2rem;
}

.bet-controls {
    margin-bottom: 2rem;
}

.bet-controls label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #ffd700;
}

.bet-controls input {
    width: 150px;
    padding: 0.5rem;
    border: 2px solid #ffd700;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.bet-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bet-buttons button {
    padding: 0.5rem 1rem;
    border: 1px solid #ffd700;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-buttons button:hover {
    background: rgba(255, 215, 0, 0.4);
}

.btn-spin {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-spin:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

.game-message {
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.game-message.win {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.paytable {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.paytable h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.paytable-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.symbols {
    font-size: 1.2rem;
}

.payout {
    color: #ffd700;
    font-weight: bold;
}

/* Blackjack */
.blackjack-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.dealer-section,
.player-section {
    margin-bottom: 3rem;
    text-align: center;
}

.dealer-section h3,
.player-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.card {
    width: 80px;
    height: 110px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card.hidden {
    background: #ff6b6b;
    color: white;
}

.score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

.btn-deal {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-deal:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

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

.rules {
    margin-top: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.rules h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.rules ul {
    list-style: none;
    padding: 0;
}

.rules li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.rules li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: auto;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

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

.footer-disclaimer {
    color: #aaaaaa;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-disclaimer p:first-child {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: #ff6b6b;
    font-weight: bold;
}

.age-verification {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.age-verification h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.age-verification p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.age-input-group label {
    color: #ffffff;
    font-weight: bold;
}

.age-input-group input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #ff6b6b;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

.age-error {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 0.5rem;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

/* Age Verification Modal Styles */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-modal-content {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.age-verification-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 107, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.age-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.age-logo i {
    font-size: 3rem;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.age-logo h1 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
}

.age-header h2 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.age-header p {
    color: #ffffff;
    font-size: 1.1rem;
}

.age-disclaimer {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.age-disclaimer h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-content p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: bold;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.disclaimer-content li {
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.warning-text {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 10px;
    padding: 1rem;
    color: #ff6b6b !important;
    font-weight: bold !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.age-input-section {
    text-align: center;
}

.age-input-section label {
    display: block;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.age-input-section input {
    width: 120px;
    padding: 1rem;
    border: 3px solid #ccc;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.age-input-section input:focus {
    outline: none;
    border-color: #ffd700;
}

.age-error {
    color: #ff6b6b;
    font-weight: bold;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 5px;
}

.age-input-section .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 150px;
}

.btn-danger {
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    cursor: not-allowed;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #ff5252, #ff6b6b);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid-large {
        grid-template-columns: 1fr;
    }
    
    .game-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .reels {
        gap: 1rem;
    }
    
    .reel {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cards {
        gap: 0.5rem;
    }
    
    .card {
        width: 60px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .slot-machine,
    .blackjack-table {
        padding: 1.5rem;
    }
    
    .age-verification-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .age-logo h1 {
        font-size: 1.4rem;
    }
    
    .age-header h2 {
        font-size: 1.5rem;
    }
    
    .age-input-section .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}