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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #001021 0%, #001835 50%, #002248 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 212, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: #00E6FF;
    text-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
}

h3 {
    font-size: 1.8rem;
    color: #FF00D4;
    text-shadow: 0 0 15px rgba(255, 0, 212, 0.2);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

/* Particles Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00E6FF;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.8);
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(0vh) rotate(180deg);
        opacity: 1;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 16, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 230, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    background: rgba(0, 230, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/images/mainbg.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #B8E6E6;
    opacity: 0.9;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 0, 212, 0.3);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 0, 212, 0.5), 0 0 70px rgba(0, 230, 255, 0.3);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 212, 0.4);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.secondary-button {
    background: transparent;
    border: 2px solid #00E6FF;
    padding: 0.8rem 1.5rem;
    color: #00E6FF;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: #00E6FF;
    color: #001021;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.5);
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    transform: translateX(-50%);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 212, 0.1), rgba(0, 230, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 230, 255, 0.2);
    border-color: #00E6FF;
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #B8E6E6;
    position: relative;
    z-index: 2;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: rgba(0, 24, 53, 0.5);
}

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

.games-grid.full {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.game-card {
    background: rgba(0, 16, 33, 0.9);
    border: 1px solid rgba(255, 0, 212, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card.featured {
    border-color: #FF00D4;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 212, 0.3);
    border-color: #FF00D4;
}

.game-card h3 {
    color: #FF00D4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-preview {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 230, 255, 0.2);
}

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

.game-card.featured .game-preview {
    height: 350px;
}

.game-card p {
    color: #B8E6E6;
    font-size: 0.95rem;
}

.games-cta {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 212, 0.4);
}

.step h3 {
    margin-bottom: 1rem;
    color: #00E6FF;
}

.step p {
    color: #B8E6E6;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: rgba(0, 24, 53, 0.3);
}

.testimonials {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #B8E6E6;
}

.testimonial-author strong {
    color: #00E6FF;
}

.testimonial-author span {
    color: #FF00D4;
    font-size: 0.9rem;
}

.testimonial-controls {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #00E6FF;
    background: transparent;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #00E6FF;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 230, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(0, 16, 33, 0.8);
    border: none;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 230, 255, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #00E6FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: rgba(0, 24, 53, 0.8);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #B8E6E6;
    margin: 0;
}

/* Help Widget */
.help-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.help-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF00D4, #00E6FF);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 212, 0.4);
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 0, 212, 0.6);
}

.help-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: rgba(0, 16, 33, 0.95);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.help-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.help-header h3 {
    color: #00E6FF;
    margin: 0;
}

.help-close {
    background: none;
    border: none;
    color: #FF00D4;
    font-size: 1.5rem;
    cursor: pointer;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-option {
    color: #B8E6E6;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(0, 230, 255, 0.1);
    color: #00E6FF;
}

/* Footer */
footer {
    background: rgba(0, 16, 33, 0.9);
    border-top: 1px solid rgba(0, 230, 255, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 100px;
}

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

.footer-section h3 {
    color: #00E6FF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(0, 230, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #B8E6E6;
    font-size: 0.9rem;
}

/* Page Specific Styles */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgba(0, 24, 53, 0.5);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #B8E6E6;
    margin-bottom: 1rem;
}

.policy-update {
    color: #FF00D4;
    font-size: 0.9rem;
}

/* Community Stats */
.community-stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 255, 0.2);
}

.stat-number {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: #FF00D4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #B8E6E6;
    font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials-grid .testimonial-card {
    position: static;
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.testimonials-grid .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 255, 0.2);
}

/* Community Guidelines */
.community-guidelines {
    padding: 80px 0;
    background: rgba(0, 24, 53, 0.3);
}

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

.guideline-card {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(255, 0, 212, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 212, 0.2);
    border-color: #FF00D4;
}

.guideline-card h3 {
    color: #FF00D4;
    margin-bottom: 1rem;
}

.guideline-card p {
    color: #B8E6E6;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
}

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

.category-card {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 255, 0.2);
    border-color: #00E6FF;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #00E6FF;
    margin-bottom: 1rem;
}

.category-card p {
    color: #B8E6E6;
}

/* FAQ Categories */
.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #FF00D4;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-contact {
    margin-top: 3rem;
    text-align: center;
}

.contact-card {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card h3 {
    color: #00E6FF;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #B8E6E6;
    margin-bottom: 2rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: #00E6FF;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #B8E6E6;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 16, 33, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 230, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: #FF00D4;
}

.contact-details h3 {
    color: #00E6FF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #fff;
    margin-bottom: 0.2rem;
}

.contact-details span {
    color: #B8E6E6;
    font-size: 0.9rem;
}

.contact-social h3 {
    color: #FF00D4;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #B8E6E6;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 230, 255, 0.1);
    color: #00E6FF;
}

.contact-form-container {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form h2 {
    color: #FF00D4;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 24, 53, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E6FF;
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #B8E6E6;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #00E6FF;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #FF00D4;
}

/* Quick Help */
.contact-faq {
    padding: 80px 0;
    background: rgba(0, 24, 53, 0.3);
}

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

.help-card {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 255, 0.2);
    border-color: #00E6FF;
}

.help-card .help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF00D4;
}

.help-card h3 {
    color: #00E6FF;
    margin-bottom: 1rem;
}

.help-card p {
    color: #B8E6E6;
    margin-bottom: 1rem;
}

.help-card a {
    color: #00E6FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help-card a:hover {
    color: #FF00D4;
}

/* Privacy & Terms Content */
.privacy-content,
.terms-content {
    padding: 80px 0;
}

.privacy-nav,
.terms-nav {
    background: rgba(0, 16, 33, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.privacy-nav h3,
.terms-nav h3 {
    color: #FF00D4;
    margin-bottom: 1rem;
}

.privacy-nav ul,
.terms-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.privacy-nav ul li a,
.terms-nav ul li a {
    color: #B8E6E6;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
}

.privacy-nav ul li a:hover,
.terms-nav ul li a:hover {
    background: rgba(0, 230, 255, 0.1);
    color: #00E6FF;
}

.privacy-sections,
.terms-sections {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section,
.terms-section {
    background: rgba(0, 16, 33, 0.6);
    border: 1px solid rgba(0, 230, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-section h2,
.terms-section h2 {
    color: #FF00D4;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 0, 212, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3,
.terms-section h3 {
    color: #00E6FF;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.privacy-section ul,
.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li,
.terms-section ul li {
    color: #B8E6E6;
    margin-bottom: 0.5rem;
}

.privacy-section p,
.terms-section p {
    color: #B8E6E6;
    margin-bottom: 1rem;
}

.privacy-section strong,
.terms-section strong {
    color: #00E6FF;
}

.contact-info .contact-method {
    background: rgba(0, 24, 53, 0.8);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.terms-footer {
    background: rgba(0, 24, 53, 0.8);
    border: 1px solid rgba(255, 0, 212, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.terms-footer p {
    color: #B8E6E6;
    margin-bottom: 1rem;
}

.terms-footer strong {
    color: #FF00D4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 16, 33, 0.95);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(0, 230, 255, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .games-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .help-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .help-panel {
        width: 280px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-nav ul,
    .terms-nav ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .help-panel {
        width: 250px;
        right: -20px;
    }
    
    .feature-card,
    .game-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-container,
    .privacy-section,
    .terms-section {
        padding: 1.5rem;
    }
}

/* Scan line animation */
@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.feature-card::after,
.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 255, 0.1), transparent);
    animation: scan 3s infinite;
    pointer-events: none;
}

/* Additional hover effects */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

/* Loading animation for iframes */
.game-preview {
    position: relative;
}

.game-preview::before {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00E6FF;
    font-size: 1.2rem;
    z-index: 1;
}

.game-preview iframe {
    position: relative;
    z-index: 2;
}