/* GetPlayPops.world - Egyptian Desert Gaming Theme */

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

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    color: #2D1B14;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 25%, #E6D29A 50%, #CD853F 75%, #B8860B 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino', serif;
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 { font-size: 2.5rem; font-weight: bold; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #3C2817;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    border-bottom: 3px solid #D4AF37;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F4E4BC;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

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

.nav-menu li a {
    color: #F4E4BC;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(212, 175, 55, 0.2);
    color: #FFE4B5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F4E4BC;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: url('ero.jpg') center/cover no-repeat;
    margin-bottom: 3rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-section > .container,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #A0522D;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 3px solid #D4AF37;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #2D1B14;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #DEB887, #F4E4BC);
    border: 2px solid #CD853F;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.2);
    position: relative;
}

.disclaimer-section::before {
    content: "⚠️";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CD853F;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
}

.disclaimer-title {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-text {
    color: #5D4E37;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Game Section */
.game-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 0;
    text-align: center;
    margin: 3rem 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-title {
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 506px; /* 16:9 aspect ratio for 900px width */
    border: 3px solid #D4AF37;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #F4E4BC;
}

/* About Section */
.about-section {
    background: rgba(244, 228, 188, 0.8);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid #DEB887;
}

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

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 2px solid #CD853F;
}

.about-content h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #5D4E37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #F4E4BC, #DEB887);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid #CD853F;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-rating {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #5D4E37;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    color: #8B4513;
    font-weight: bold;
    text-align: right;
}

/* Features Section */
.features-section {
    background: rgba(222, 184, 135, 0.6);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid #CD853F;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #D4AF37;
    transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #5D4E37;
    font-size: 0.95rem;
}

/* Content Pages */
.content-page {
    padding: 3rem 0;
}

.content-page h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.content-section {
    background: rgba(244, 228, 188, 0.9);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #DEB887;
}

.content-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: #A0522D;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

.content-section li {
    margin-bottom: 0.5rem;
    color: #5D4E37;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: rgba(244, 228, 188, 0.9);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #CD853F;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #DEB887;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.contact-info {
    background: rgba(222, 184, 135, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #CD853F;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #D4AF37;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #F4E4BC;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 4px solid #D4AF37;
}

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

.footer-section h3 {
    color: #FFE4B5;
    margin-bottom: 1rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
}

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

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

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

.footer-section a:hover {
    color: #FFE4B5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-disclaimer {
    background: rgba(212, 175, 55, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #D4AF37;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #CD853F;
    color: #DEB887;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #2D1B14;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: linear-gradient(135deg, #F4E4BC, #DEB887);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 3px solid #D4AF37;
    position: relative;
}

.popup-content h2 {
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.popup-content p {
    color: #5D4E37;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.popup-buttons {
    margin-top: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #8B4513, #A0522D);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        background: rgba(212, 175, 55, 0.1);
        margin: 0.5rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-frame {
        height: 280px; /* Adjusted for mobile 16:9 ratio */
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }
}