/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd100, #7bc043);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    color: #fff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Banner */
.age-banner {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 10px 0;
    text-align: center;
    border-bottom: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.age-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.age-icon {
    font-size: 2rem;
}

.age-text {
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.age-warning {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Header */
.header {
    background: linear-gradient(135deg, #8e44ad, #9b59b6, #e91e63);
    padding: 20px 0;
    border-bottom: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
}

/* Optional: Add logo image before text */
.logo h1::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url('images/logo.png') center/contain no-repeat;
    vertical-align: middle;
    margin-right: 10px;
    /* Fallback if logo image not available */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect width="40" height="40" fill="gold"/><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="red" font-size="20">🎰</text></svg>');
}

.tagline {
    font-size: 1rem;
    margin-top: 5px;
    opacity: 0.9;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #ffd700; }
    to { text-shadow: 0 0 30px #ffed4e, 0 0 40px #ffd700; }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 25px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: bounceIn 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.warning-box {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #fff;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: shake 3s infinite;
}

.warning-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Games Section */
.games-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.game-card:nth-child(even) {
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.game-header {
    padding: 20px;
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    text-align: center;
    border-bottom: 3px solid #fff;
}

.game-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #fff;
}

.badge.demo {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.game-description {
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.game-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Game Image Styles */
.game-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px 0;
}

.game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: block;
}

.game-image:hover {
    transform: scale(1.05);
}

.game-image-container:hover .game-image {
    transform: scale(1.05);
}

/* Game backgrounds using real images */
.myth-of-dead-bg {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('images/myth-of-dead.jpg') center/cover;
    /* Fallback gradient if image not found */
    background: linear-gradient(135deg, #8B4513, #D2691E, #F4A460), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%238B4513"/><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="gold" font-size="16">⚰️👑</text></svg>');
    background-blend-mode: multiply;
}

.tomb-of-gold-bg {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('images/tomb-of-gold-2.jpg') center/cover;
    /* Fallback gradient if image not found */
    background: linear-gradient(135deg, #DAA520, #B8860B, #FFD700), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23DAA520"/><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="darkred" font-size="16">🏺💰</text></svg>');
    background-blend-mode: multiply;
}

.fire-joker-bg {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('images/fire-joker-100.jpg') center/cover;
    /* Fallback gradient if image not found */
    background: linear-gradient(135deg, #FF4500, #FF6347, #FF8C00), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23FF4500"/><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="yellow" font-size="16">🃏🔥</text></svg>');
    background-blend-mode: multiply;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    border-radius: 10px;
}

.game-image-container:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.play-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Full Game Description Styles */
.game-description-full {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    border-radius: 10px;
    margin: 15px 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.game-description-full h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.game-description-full h5 {
    color: #ffed4e;
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    font-weight: bold;
}

.game-description-full p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #fff;
}

.game-description-full ul {
    margin: 10px 0 15px 20px;
    color: #fff;
}

.game-description-full li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.game-description-full strong {
    color: #ffd700;
}

/* Play Button Styles */
.play-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.play-button:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    text-decoration: none;
    color: #fff;
}

/* Game Page Styles */
.game-page-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.game-page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.game-play-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.game-container {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.full-game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    margin-top: 20px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #fff;
}

.game-footer {
    padding: 15px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    text-align: center;
    border-top: 3px solid #fff;
}

.disclaimer {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 5px solid #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #fff;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .nav ul {
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title, .game-page-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-frame, .full-game-frame {
        height: 300px;
    }
    
    .game-image {
        height: 250px;
    }
    
    .play-icon {
        font-size: 3rem;
    }
    
    .play-text {
        font-size: 1rem;
    }
    
    .game-description-full {
        padding: 15px;
    }
    
    .game-description-full h4 {
        font-size: 1.2rem;
    }
    
    .game-description-full h5 {
        font-size: 1rem;
    }
    
    .warning-box {
        padding: 20px;
    }
    
    .warning-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-button, .play-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .age-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .age-icon, .age-text {
        font-size: 1.5rem;
    }
    
    .age-warning {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero, .privacy-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.last-updated {
    background: linear-gradient(45deg, #3498db, #2980b9);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #fff;
    display: inline-block;
    margin-top: 20px;
}

.contact-content, .privacy-content {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    margin: 30px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2, .contact-form h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contact-item {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.contact-item small {
    opacity: 0.8;
    font-style: italic;
}

.warning-contact {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #fff;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.warning-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.warning-contact ul {
    margin: 15px 0;
    padding-left: 20px;
}

.no-money {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 10px;
}

/* Form Styles */
.form {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffd700;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #fff !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* FAQ Styles */
.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #fff;
}

.faq-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135px, #e91e63, #ad1457);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

/* Privacy Page Specific Styles */
.warning-box-privacy {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #fff;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.warning-box-privacy h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.warning-box-privacy ul {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
}

.privacy-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.3);
}

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
    color: #ffed4e;
}

.highlight-box, .important-note, .no-commercial, .security-note {
    background: linear-gradient(45deg, #3498db, #2980b9);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    margin: 20px 0;
}

.important-note, .no-commercial {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.right-item {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    text-align: center;
}

.right-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.minors-protection {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #fff;
    margin: 20px 0;
}

.minors-protection h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.retention-table {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    align-items: center;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-type {
    font-weight: bold;
}

.retention-time {
    text-align: right;
    color: #ffd700;
}

.contact-privacy {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    margin: 20px 0;
}

.final-disclaimer {
    margin-top: 40px;
    text-align: center;
}

.disclaimer-box {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.disclaimer-box ul {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retention-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .retention-time {
        text-align: center;
    }
    
    .contact-content, .privacy-content {
        padding: 40px 0;
        margin: 20px 10px;
    }
    
    .privacy-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero, .games-section, .info-section {
        margin: 20px 10px;
        padding: 40px 0;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-title, .section-title, .game-page-title, .page-title {
        font-size: 1.8rem;
    }
    
    .game-frame, .full-game-frame {
        height: 250px;
    }
    
    .game-image {
        height: 200px;
    }
    
    .play-icon {
        font-size: 2.5rem;
    }
    
    .play-text {
        font-size: 0.9rem;
    }
    
    .game-description-full {
        padding: 12px;
    }
    
    .game-description-full h4 {
        font-size: 1.1rem;
    }
    
    .game-description-full h5 {
        font-size: 0.95rem;
    }
    
    .game-description-full p, .game-description-full li {
        font-size: 0.9rem;
    }
    
    .nav ul {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .form {
        padding: 20px;
    }
    
    .contact-item, .faq-item {
        padding: 20px;
    }
    
    .warning-box-privacy, .disclaimer-box {
        padding: 20px;
    }
    
    .play-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
