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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 50%, #8B5CF6 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #F59E0B, #EAB308);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    font-size: 40px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1f2937;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #4b5563;
}

.about-features {
    display: grid;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
    line-height: 1.5;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #6B46C1, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-placeholder {
    font-size: 48px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-info {
    padding: 24px;
}

.game-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.game-info p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.play-button {
    display: inline-block;
    background: linear-gradient(45deg, #6B46C1, #3B82F6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3);
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.4);
}

/* Gaming Preferences Section */
.preferences {
    padding: 80px 0;
    background: white;
}

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

.preference-question {
    margin-bottom: 48px;
    text-align: center;
}

.preference-question h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.preference-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.preference-btn {
    background: linear-gradient(45deg, #6B46C1, #3B82F6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.2);
}

.preference-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.3);
}

.preference-input {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.boss-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.boss-input:focus {
    outline: none;
    border-color: #6B46C1;
}

.submit-btn {
    background: linear-gradient(45deg, #F59E0B, #EAB308);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6B46C1, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-info span {
    color: #6b7280;
    font-size: 14px;
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer-content strong {
    color: #F59E0B;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 64px 0 32px;
}

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

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #F59E0B;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: #F59E0B;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: #F59E0B;
    text-decoration: none;
}

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

/* Page Styles */
.page-hero {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.contact-methods {
    display: grid;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.method-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.method-info h3 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.method-info p {
    color: #6b7280;
    margin-bottom: 4px;
}

.method-info small {
    color: #9ca3af;
}

.contact-form-container {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B46C1;
}

.submit-button {
    background: linear-gradient(45deg, #6B46C1, #3B82F6);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.4);
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1f2937;
    text-align: center;
}

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

.faq-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.5;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 24px 0;
    color: #1f2937;
    border-bottom: 2px solid #6B46C1;
    padding-bottom: 8px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #374151;
}

.legal-document p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4b5563;
}

.legal-document ul {
    margin: 16px 0 16px 32px;
    color: #4b5563;
}

.legal-document ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-document a {
    color: #6B46C1;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

.legal-notice {
    background: linear-gradient(135deg, #6B46C1, #3B82F6);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin: 48px 0;
    text-align: center;
}

.legal-notice h3 {
    color: white;
    margin-bottom: 16px;
}

.legal-notice p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Game Pages */
.game-header {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    padding: 120px 0 64px;
    color: white;
}

.game-info {
    text-align: center;
}

.game-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.game-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.back-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.game-play {
    padding: 80px 0;
    background: white;
}

.game-container {
    margin-bottom: 64px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.game-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.game-details p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.game-features {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.game-features h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.game-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.game-features ul li {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-weight: 500;
}

.game-notice {
    background: linear-gradient(135deg, #6B46C1, #3B82F6);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.game-notice p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .preference-options {
        flex-direction: column;
        align-items: center;
    }
    
    .preference-input {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .page-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .legal-document {
        padding: 0 8px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #6B46C1;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .floating-card,
    .game-iframe {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    * {
        box-shadow: none !important;
    }
}