/* ===== GAMES PAGE COMPONENTS ===== */

/* Hero Games */
.hero-games {
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
}

/* Game Placeholder */
.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: scale(1.02);
}

.game-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.game-placeholder-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-placeholder-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.play-game-btn {
    background-color: #6B48FF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-game-btn:hover {
    background-color: #5a3fd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 72, 255, 0.3);
}

/* Games Overview */
.games-overview {
    padding: 80px 0;
}

.games-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.game-item {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.game-description {
    color: #333;
    line-height: 1.6;
}

.game-frame-container {
    width: 100%;
    height: 600px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.game-feature {
    background-color: #f8f9fa;
    color: #6B48FF;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #e9ecef;
}

/* Game Features Section */
.game-features-section {
    background-color: #f8f9fa;
}

.game-features-section .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* How to Play */
.how-to-play {
    background-color: white;
}

.how-to-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #6B48FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

.how-to-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* ===== ABOUT PAGE COMPONENTS ===== */

/* Hero About */
.hero-about {
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
}

/* About Summary */
.about-summary {
    text-align: center;
    padding: 80px 0;
}

.about-image {
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

/* Mission Section */
.mission-section {
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #6B48FF;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.mission-features {
    list-style: none;
    margin: 2rem 0;
}

.mission-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-check {
    color: #10B981;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Leadership Section */
.leadership-section {
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leadership-card {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.leadership-icon {
    width: 80px;
    height: 80px;
    background-color: #6B48FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.leadership-icon span {
    font-size: 2rem;
    color: white;
}

.leadership-title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #6B48FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon span {
    font-size: 2rem;
    color: white;
}

.value-title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* ===== CONTACT PAGE COMPONENTS ===== */

/* Hero Contact */
.hero-contact {
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    padding-left: 15px;
    resize: vertical;
    min-height: 120px;
}

.contact-right {
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    margin-top: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info-item {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-map {
    margin-top: 1.5rem;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Contact FAQ */
.contact-faq-section {
    padding: 80px 0;
}

.contact-faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ===== PRIVACY PAGE COMPONENTS ===== */

/* Hero Privacy */
.hero-privacy {
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
}

/* Privacy Content */
.privacy-content-section {
    padding: 80px 0;
}

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

.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-intro h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.last-updated {
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-section h4 {
    color: #1a1a1a;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #333;
}

.privacy-section code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #6B48FF;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* ===== THANK YOU PAGE COMPONENTS ===== */

/* Hero Thank You */
.hero-thankyou {
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
}

/* Thank You Content */
.thankyou-content-section {
    padding: 80px 0;
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-icon span {
    font-size: 4rem;
    color: #10B981;
}

.thankyou-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thankyou-description {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-details p {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thankyou-details ul {
    margin-left: 2rem;
}

.thankyou-details li {
    margin-bottom: 0.5rem;
    color: #333;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thankyou-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-contact h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-weight: 600;
    color: #6B48FF;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

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

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-faq-section .faq-grid {
        grid-template-columns: 1fr;
    }
}
