/* Royal Rummy India - Vibrant Neon Design with Indian Ornaments */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables for Neon Color Scheme */
:root {
    /* Neon Colors */
    --neon-pink: #ff0080;
    --neon-blue: #00ffff;
    --neon-purple: #8000ff;
    --neon-orange: #ff8000;
    --neon-green: #00ff80;
    --neon-yellow: #ffff00;
    
    /* Indian Inspired Colors */
    --royal-gold: #ffd700;
    --deep-saffron: #ff9933;
    --india-green: #138808;
    --lotus-pink: #ff69b4;
    --peacock-blue: #005a9c;
    
    /* Background Colors */
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.9);
    --overlay-bg: rgba(0, 0, 0, 0.8);
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #333333;
    
    /* Fonts */
    --font-primary: 'Rajdhani', sans-serif;
    --font-accent: 'Orbitron', monospace;
}

/* Body and Basic Typography */
body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--neon-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--neon-blue) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--neon-pink) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: 100% 100%;
}

/* Indian Ornamental Patterns */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.3'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neon Text Effect */
.neon-text {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink),
        0 0 20px var(--neon-pink);
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink),
            0 0 15px var(--neon-pink),
            0 0 20px var(--neon-pink);
    }
    50% {
        text-shadow: 
            0 0 2px var(--neon-pink),
            0 0 5px var(--neon-pink),
            0 0 8px var(--neon-pink),
            0 0 12px var(--neon-pink);
    }
}

/* Age Restriction Banner */
.age-banner {
    background: linear-gradient(45deg, var(--neon-orange), var(--deep-saffron));
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid var(--royal-gold);
    box-shadow: 0 2px 20px rgba(255, 128, 0, 0.5);
}

.age-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.age-icon {
    font-size: 18px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--neon-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 900;
    color: var(--royal-gold);
    text-shadow: 
        0 0 10px var(--royal-gold),
        0 0 20px var(--royal-gold),
        0 0 30px var(--royal-gold);
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--neon-blue);
    display: block;
    margin-top: -5px;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
    color: var(--neon-pink);
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 
        0 0 10px rgba(255, 0, 128, 0.5),
        inset 0 0 10px rgba(255, 0, 128, 0.1);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(255, 0, 128, 0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 215, 0, 0.05) 2px,
        rgba(255, 215, 0, 0.05) 4px
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--royal-gold);
    font-weight: 600;
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--royal-gold));
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-light);
    box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.8),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.rummy-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-saffron));
    border-radius: 10px;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.3);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 60px;
    text-shadow: 0 0 20px var(--royal-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--royal-gold));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-blue);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Game Info Section */
.game-info {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 255, 128, 0.05), rgba(255, 128, 0, 0.05));
}

.game-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-info h2 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.game-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.tournament-list {
    list-style: none;
    margin-top: 20px;
}

.tournament-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.tournament-list strong {
    color: var(--royal-gold);
}

/* Game Preview */
.game-preview {
    position: relative;
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 30px rgba(128, 0, 255, 0.5),
        inset 0 0 20px rgba(128, 0, 255, 0.1);
}

.preview-screen {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    border-radius: 15px;
    padding: 20px;
    overflow: hidden;
}

.preview-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.preview-card {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-gold), var(--deep-saffron));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.preview-ui {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.ui-element {
    background: rgba(0, 255, 255, 0.2);
    color: var(--neon-blue);
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

/* Game Section (Play Page) */
.game-header {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.1));
    text-align: center;
}

.game-header h1 {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.game-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.game-info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.game-section {
    padding: 60px 0;
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.game-frame {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.game-frame iframe {
    width: 100%;
    border-radius: 15px;
    background: #000;
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.controls-section {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--neon-purple);
}

.controls-section h3 {
    color: var(--royal-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--royal-gold);
}

.tournament-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tournament-btn {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.tournament-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
}

.leaderboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
}

.rank {
    color: var(--royal-gold);
    font-weight: 700;
    min-width: 30px;
}

.name {
    color: var(--text-light);
    flex: 1;
    margin: 0 10px;
}

.winnings {
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Live Statistics */
.live-stats {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 25px rgba(0, 255, 128, 0.3);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.stat-card .stat-number {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Rules Page Specific Styles */
.rules-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(255, 215, 0, 0.1));
    text-align: center;
}

.rules-content {
    padding: 60px 0;
}

.rules-section {
    margin-bottom: 80px;
}

.rules-section h2 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--royal-gold);
}

.rules-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--neon-pink);
    margin: 30px 0;
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.3);
}

.highlight-box h3 {
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--neon-blue);
    position: relative;
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.rule-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.rule-card h3 {
    color: var(--neon-blue);
    margin: 20px 0 15px 0;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

.scoring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.scoring-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--neon-green);
}

.scoring-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.scoring-table td:first-child {
    color: var(--royal-gold);
    font-weight: 600;
}

.scoring-rules ul {
    list-style: none;
}

.scoring-rules li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.scoring-rules strong {
    color: var(--neon-green);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
}

.strategy-card h3 {
    color: var(--royal-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--royal-gold);
}

.strategy-card ul {
    list-style: none;
}

.strategy-card li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tournament-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tournament-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    background: rgba(0, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    color: var(--text-gray);
}

.detail-item strong {
    color: var(--neon-blue);
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mistake-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 128, 0, 0.1));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.3);
}

.mistake-card h3 {
    color: var(--neon-orange);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-orange);
}

.rules-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--royal-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--royal-gold);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Privacy Page Specific Styles */
.privacy-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(128, 0, 255, 0.1));
    text-align: center;
}

.last-updated {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid var(--neon-blue);
}

.privacy-content {
    padding: 60px 0;
}

.privacy-section {
    margin-bottom: 60px;
}

.privacy-section h2 {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 25px;
    text-shadow: 0 0 15px var(--neon-blue);
}

.privacy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.info-category {
    margin-bottom: 30px;
}

.info-category h3 {
    color: var(--royal-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--royal-gold);
}

.info-category ul {
    list-style: none;
}

.info-category li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.info-category strong {
    color: var(--neon-green);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.usage-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.3);
}

.usage-card h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-green);
}

.sharing-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sharing-category {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
}

.sharing-category h3 {
    color: var(--neon-purple);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-purple);
}

.no-sharing {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 128, 0, 0.1));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.3);
}

.no-sharing h3 {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-measure {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.security-measure h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-blue);
}

.rights-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.right-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--royal-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.right-item h3 {
    color: var(--royal-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--royal-gold);
}

.cookies-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cookie-type {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--neon-pink);
}

.cookie-type h3 {
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--neon-pink);
}

.retention-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.retention-list {
    list-style: none;
    margin-top: 20px;
}

.retention-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.retention-list strong {
    color: var(--neon-green);
}

.children-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.age-restriction {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 128, 0, 0.1));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-orange);
}

.age-restriction h3 {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
}

.protection-measures {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-blue);
}

.protection-measures h3 {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.transfer-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.transfer-content ul {
    list-style: none;
    margin: 20px 0;
}

.transfer-content li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    text-align: center;
}

.contact-method h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-green);
}

.response-time {
    background: rgba(0, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    margin-top: 20px;
    text-align: center;
    color: var(--neon-blue);
}

.updates-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.updates-content ul {
    list-style: none;
    margin: 20px 0;
}

.updates-content li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(255, 0, 0, 0.1));
    border-top: 2px solid var(--neon-orange);
}

.responsible-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-content h3 {
    color: var(--neon-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--neon-orange);
}

.responsible-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.responsible-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.resp-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--royal-gold);
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid var(--royal-gold);
}

.resp-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px var(--royal-gold));
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.resp-link {
    color: var(--neon-orange);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--neon-orange);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.resp-link:hover {
    background: rgba(255, 128, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.5);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px 0;
    border-top: 2px solid var(--neon-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--royal-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--royal-gold);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.disclaimer {
    color: var(--neon-orange) !important;
    font-weight: 600;
    text-shadow: 0 0 8px var(--neon-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-container {
        grid-template-columns: 1fr;
    }
    
    .game-info-content,
    .scoring-content,
    .tournament-info,
    .children-content {
        grid-template-columns: 1fr;
    }
    
    .hero-features,
    .game-stats,
    .game-info-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .responsible-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .age-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
}