/* 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: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #6c5ce7;
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.logo-icon {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(108, 92, 231, 0.3));
}

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

.tagline {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav a:hover {
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
}

/* Age Warning */
.age-warning {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slot Machine Animation */
.game-preview {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.slot-machine {
    background: linear-gradient(145deg, #2d3748, #4a5568);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffd700;
}

.reels {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reel {
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 10px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: spin 2s infinite linear;
}

.reel:nth-child(2) {
    animation-delay: 0.3s;
}

.reel:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes spin {
    0%, 70%, 100% { transform: rotateY(0deg); }
    35% { transform: rotateY(180deg); }
}

.slot-display {
    background: #000;
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    font-family: 'Courier New', monospace;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h4 {
    color: #6c5ce7;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Game Details */
.game-details {
    padding: 4rem 0;
}

.game-details h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.details-content {
    max-width: 800px;
    margin: 0 auto;
}

.details-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.game-features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.game-features-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

/* Pricing Info */
.pricing-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.pricing-info h4 {
    color: #6c5ce7;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.price-item {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
    font-weight: 600;
}

/* Disclaimers */
.disclaimers {
    padding: 3rem 0;
    background: #fff3cd;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
}

.disclaimer-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-list {
    list-style: none;
}

.disclaimer-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.disclaimer-list li:last-child {
    border-bottom: none;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 4rem 0;
    background: #e8f5e8;
    text-align: center;
}

.responsible-gaming h3 {
    color: #28a745;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.responsible-gaming p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #333;
}

.help-resources {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.help-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.help-links a {
    background: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.help-links a:hover {
    background: #218838;
}

.responsible-link {
    display: inline-block;
    margin-top: 1rem;
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.responsible-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.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;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.final-disclaimer {
    margin-top: 1rem;
    font-weight: bold;
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .reels {
        gap: 0.5rem;
    }
    
    .reel {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .features h3,
    .game-details h3 {
        font-size: 2rem;
    }
    
    .price-list {
        flex-direction: column;
    }
    
    .help-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #cbd5e0;
    border: 2px solid #cbd5e0;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-decline:hover {
    background: #cbd5e0;
    color: #2d3748;
    transform: translateY(-2px);
}

.cookie-policy {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-policy:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-accept,
    .cookie-decline {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .features,
    .game-details,
    .disclaimers,
    .responsible-gaming {
        padding: 2rem 0;
    }
}