/* Global 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, #E8B4E3 0%, #C689C0 50%, #A465A8 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #E8B4E3 0%, #D1A3D6 100%);
    color: #2d1b69;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #2d1b69;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    background: rgba(45, 27, 105, 0.1);
    color: #1a0f3d;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d1b69;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.2rem;
    color: #4a3975;
    max-width: 600px;
    margin: 0 auto;
}

/* Game Section */
.game-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.game-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d1b69;
    font-size: 2.5rem;
}

.game-frame {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Fullwidth Game Section */
.game-section-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #fff;
    position: relative;
}

.game-section-fullwidth h2 {
    text-align: center;
    padding: 2rem 0 1rem;
    margin: 0;
    color: #2d1b69;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #E8B4E3 0%, #D1A3D6 100%);
}

.game-frame-fullwidth {
    width: 100%;
    height: 100vh;
}

.game-frame-fullwidth iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d1b69;
    font-size: 2.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.features-list {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.features-list h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(45, 27, 105, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✦";
    color: #C689C0;
    position: absolute;
    left: 0;
}

/* How to Play Section */
.how-to-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.how-to-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d1b69;
    font-size: 2.5rem;
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #C689C0 0%, #A465A8 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
}

.pro-tips {
    background: linear-gradient(135deg, #E8B4E3 0%, #D1A3D6 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.pro-tips h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pro-tips ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.pro-tips li {
    color: #2d1b69;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.pro-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d1b69;
    font-size: 2.5rem;
}

.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
    color: #E8B4E3;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    color: #C689C0;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 180, 227, 0.3);
    color: #C689C0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .game-frame iframe {
        height: 400px;
    }
    
    .game-section-fullwidth h2 {
        font-size: 2rem;
        padding: 1.5rem 0 0.5rem;
    }
    
    .game-frame-fullwidth {
        height: calc(100vh - 80px);
    }
    
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-row.reverse .feature-image,
    .feature-row.reverse .feature-content {
        order: unset;
    }
    
    .feature-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .features-section h2 {
        font-size: 2rem;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d1b69;
    font-size: 2.5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-row.reverse .feature-content {
    order: 2;
}

.feature-content h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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