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

body {
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 35%, #cbd5e1 70%, #f1f5f9 100%);
   
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
/* Floating Orange Navbar */
.navbar {
    background: linear-gradient(90deg, #f97316 0%, #eab308 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(249,115,22,0.18);
    border-bottom: none;
    border-radius: 0 0 24px 24px;
    padding: 1.2rem 0.5rem;
    position: fixed;
    width: 100%;
   
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
}

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

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(249,115,22,0.18);
    display: flex;
    align-items: center;
}
/* Favicon next to logo text */
.logo-icon {
    height: 2.1rem;
    width: 2.1rem;
    margin-right: 0.7rem;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 80%;
    left: 10%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hero-bg.jpg') center center/cover no-repeat, linear-gradient(135deg, rgba(249,115,22,0.08), rgba(234,179,8,0.08));
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    opacity: 0.7;
} */
 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.jpg');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #f97316, #eab308, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.hero-text p {
    font-size: 1.7rem;
    color: #374151;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-img-wrapper {
    display: none;
}

.hero-image {
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    border: 3px solid rgba(249, 115, 22, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(45deg, #f97316, #eab308);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.4);
}

/* Disclaimer Section */
.disclaimer {
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.disclaimer-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    border-left: 5px solid #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.disclaimer-content h2 {
    color: #f97316;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Decorated headings */
.decorated-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.decorated-heading::before {
    content: none;
}

.decorated-heading::after {
    content: none;
}

.star-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.star-heading::before {
    content: none;
}

.diamond-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.diamond-heading::before {
    content: none;
}

.crown-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.crown-heading::before {
    content: none;
}

.fire-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.fire-heading::before {
    content: none;
}

.gem-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.gem-heading::before {
    content: none;
}

.shield-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.shield-heading::before {
    content: none;
}

.lightning-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.lightning-heading::before {
    content: none;
}

.trophy-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.trophy-heading::before {
    content: none;
}

.rocket-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.rocket-heading::before {
    content: none;
}

.lock-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.lock-heading::before {
    content: none;
}

.disclaimer-content p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    margin: 3rem 0;
    border-radius: 30px;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.game-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #f97316;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(249, 115, 22, 0.1);
}

.game-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
    max-width: 950px;
    margin: 2rem auto;
}

.game-item h3 {
    color: #d97706;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.game-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto;
}

.game-frame iframe {
    width: 100%;
    max-width: 900px;
    height: calc(900px * 9 / 16);
    border: 3px solid #f97316;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

@media (max-width: 920px) {
    .game-frame iframe {
        max-width: calc(100vw - 6rem);
        height: calc((100vw - 6rem) * 9 / 16);
    }
}

/* About Section */
.about {
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.about-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    border-left: 5px solid #eab308;
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #d97706;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-image {
    font-size: 5rem;
    opacity: 0.6;
    color: #eab308;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #d97706;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(217, 119, 6, 0.1);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #eab308;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d97706;
    font-weight: 700;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Page */
.contact-container {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.contact-form h2 {
    color: #f97316;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #d97706;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #1f2937;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #f97316, #eab308);
    color: #fff;
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    width: 100%;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.4);
}

/* Content Pages */
/* Content Pages Styling */
/* Legal Content Styling for Terms, Privacy, Disclaimer */
.legal-content {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(249,115,22,0.15);
    box-shadow: 0 15px 35px rgba(249,115,22,0.08);
    max-width: 1000px;
    margin: 3rem auto;
}
.legal-content h2 {
    color: #f97316;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    margin-bottom: 1.2rem;
    color: #374151;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 500;
}
.legal-content ul {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 1.05rem;
}
/* Play page custom sections */
.play-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.play-info-card {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 2rem 1.2rem;
    box-shadow: 0 4px 18px rgba(249,115,22,0.07);
    border: 1px solid #f973161a;
    text-align: center;
}
.play-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.play-info-card p {
    font-size: 1.05rem;
    color: #374151;
}

.play-guidelines {
    margin-bottom: 2rem;
}
.play-guidelines h2 {
    text-align: center;
}
.play-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 2rem;
}
.play-guideline-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 10px rgba(249,115,22,0.05);
    border: 1px solid #eab3081a;
    text-align: center;
}
.play-guideline-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}
.play-guideline-card p {
    font-size: 1rem;
    color: #374151;
}
.content-container {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content,
.privacy-content,
.disclaimer-content-page,
.contact-content,
.play-content {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.08);
}

.terms-content h2,
.privacy-content h2,
.disclaimer-content-page h2,
.contact-content h2,
.play-content h2 {
    color: #f97316;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.terms-content h2:first-child,
.privacy-content h2:first-child,
.disclaimer-content-page h2:first-child,
.contact-content h2:first-child,
.play-content h2:first-child {
    margin-top: 0;
}

.terms-content p,
.privacy-content p,
.disclaimer-content-page p,
.contact-content p,
.play-content p {
    margin-bottom: 1.2rem;
    color: #374151;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 500;
}

.terms-content ul,
.privacy-content ul,
.disclaimer-content-page ul,
.contact-content ul,
.play-content ul {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.terms-content li,
.privacy-content li,
.disclaimer-content-page li,
.contact-content li,
.play-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 1.05rem;
}

.highlight-section {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 15px;
}

.highlight-section h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

.warning-banner {
    background: linear-gradient(45deg, #f97316, #eab308);
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.important-notice {
    background: rgba(234, 179, 8, 0.1);
    border: 2px solid #eab308;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.important-notice h3 {
    color: #d97706;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

/* Footer */
/* Orange Footer - Redesigned */
.footer {
    background: linear-gradient(90deg, #f97316 0%, #eab308 100%);
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: none;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 32px rgba(249,115,22,0.18);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
}

.footer-section {
    background: rgba(255,255,255,0.08);
    padding: 2rem 1.2rem;
    border-radius: 18px;
    border: none;
    box-shadow: 0 2px 10px rgba(255,255,255,0.08);
    min-width: 220px;
    flex: 1 1 220px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

.footer-section ul li {
    margin: 0.8rem 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.footer-section ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.18);
}

.footer-notice {
    font-size: 1rem;
    color: #fff;
    background: rgba(255,255,255,0.12);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 3px solid #fff;
    font-weight: 500;
}

.footer-bottom {
    border-top: none;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
/* FAQ Section Styling */
.faq-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: #f97316;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #f97316 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}
.faq-item {
    background: rgba(255,255,255,0.97);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(249,115,22,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    border: 1px solid #f973161a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.faq-item:hover {
    box-shadow: 0 8px 32px rgba(249,115,22,0.18);
    transform: translateY(-4px) scale(1.02);
}
.faq-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #eab308;
    background: linear-gradient(45deg, #f97316, #eab308);
    border-radius: 50%;
    padding: 0.4rem 0.7rem;
    box-shadow: 0 2px 8px rgba(249,115,22,0.08);
    display: inline-block;
}
.faq-question {
    font-size: 1.18rem;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 0.8rem;
    margin-top: 0;
}
.faq-answer {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.faq-section {
    margin: 4rem auto 0 auto;
    max-width: 1000px;
    padding: 0 21rem;
}
.faq-container {
    background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(249,115,22,0.10);
    padding: 3.5rem 2.5rem;
    border: 1.5px solid #f97316;
    position: relative;
    transition: box-shadow 0.3s;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-container h2 {
    color: #f97316;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
}
.faq-item {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(249,115,22,0.05);
    padding: 2rem 1.2rem;
    border: 1px solid #f973161a;
}
.faq-item h3 {
    color: #d97706;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.faq-item p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.7;
}
}

/* Disclaimer Popup */
.disclaimer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.disclaimer-popup.active {
    display: flex !important;
}

.popup-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 3px solid rgba(249, 115, 22, 0.3);
    border-radius: 30px;
    padding: 3rem;
    max-width: 520px;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.2);
}

.popup-content h3 {
    color: #f97316;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.popup-content p {
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.popup-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accept-btn {
    background: linear-gradient(45deg, #f97316, #eab308);
    color: #fff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.decline-btn {
    background: rgba(107, 114, 128, 0.8);
    color: #fff;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.popup-button:hover {
    transform: translateY(-2px);
}

.accept-btn:hover {
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.decline-btn:hover {
    background: rgba(75, 85, 99, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 250, 252, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 2px solid rgba(249, 115, 22, 0.2);
    }
    .nav-links a {
        color: #f97316 !important;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .game-item {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .popup-content {
        padding: 2rem;
        margin: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .terms-content,
    .disclaimer-content-page,
    .privacy-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .game-item {
        padding: 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }
}