/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    width: 100%;
}

:root {
    /* Main Colors */
    --primary-bg: #1e1e2f;
    --secondary-bg: #2a2a3f;
    --accent-gold: #ffd700;
    --accent-red: #ff4e4e;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --success-green: #00c853;

    /* Gradients */
    --cta-gradient: linear-gradient(135deg, #ffd700, #ffa500);
    --card-gradient: linear-gradient(135deg, #2a2a3f, #1e1e2f);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
    --glow-gold: 0 0 15px rgba(255, 215, 0, 0.5);
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
}

h1 {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 47, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--cta-gradient);
    color: var(--primary-bg);
    box-shadow: var(--shadow-md), var(--glow-gold);
}

.btn-secondary {
    background: var(--accent-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-tertiary {
    background: var(--secondary-bg);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header Styles */
.header {
    background: var(--secondary-bg);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 50px;
    border-radius: 10px;
    filter: drop-shadow(var(--glow-gold));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: var(--card-gradient);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--shadow-md);
    color: var(--accent-gold);

}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--primary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--card-gradient);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.step img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Prizes Section */
.prizes {
    padding: 80px 0;
    background: var(--primary-bg);
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.prize-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.prize-item img:hover {
    transform: scale(1.05);
}

/* Demo Section */
.demo {
    padding: 80px 0;
    text-align: center;
    background: var(--secondary-bg);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.demo h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: var(--shadow-sm);
}

.demo p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.demo-iframe-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: var(--card-gradient);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.demo-iframe-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 20%,
            transparent 80%,
            rgba(255, 215, 0, 0.1) 100%);
    pointer-events: none;
}

.demo-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    background: var(--primary-bg);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.demo-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(30, 30, 47, 0.9) 0%,
            rgba(30, 30, 47, 0.7) 50%,
            rgba(30, 30, 47, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.demo-iframe-container:hover .demo-iframe-overlay {
    opacity: 1;
}

.demo-iframe-overlay h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-shadow: var(--shadow-sm);
}

.demo-iframe-overlay p {
    color: var(--text-secondary);
    max-width: 80%;
    text-align: center;
}

.demo-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-cta .btn-primary {
    min-width: 200px;
}

@media (max-width: 768px) {
    .demo-iframe {
        height: 400px;
    }

    .demo-iframe-container {
        padding: 15px;
    }

    .demo-cta {
        flex-direction: column;
        align-items: center;
    }

    .demo-cta .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .header .container {
        display: flex;
    }
}

@media (max-width: 480px) {
    .demo-iframe {
        height: 300px;
    }
    .contact-content{
grid-template-columns:1fr;    
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--primary-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-item {
    background: var(--card-gradient);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--cta-gradient);
    color: var(--primary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: var(--shadow-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.cta-feature {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-5px);
}

.cta-feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-bg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-feature p {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 15px;
    }

    .cta-feature i {
        font-size: 2rem;
    }

    .cta-feature p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-tertiary {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Styles */
.footer {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    border-radius: 10px;
    height: 50px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-info-item:last-child {
    margin-bottom: 0;
}

.footer-info-item i {
    color: var(--accent-gold);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-info-item p {
    margin: 0;
    color: var(--text-primary);
}

.footer-info-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-warning {
    color: var(--accent-red);
    font-weight: 500;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        /* flex-direction: column; */
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info-item {
        align-items: center;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {

        width: 300px;
        margin: 10px auto;
        text-align: center;
    }
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: var(--shadow-md);
    }

    50% {
        box-shadow: var(--shadow-md), var(--glow-gold);
    }

    100% {
        box-shadow: var(--shadow-md);
    }
}

.btn-primary {
    animation: glow 2s infinite;
}

.hero,
.about,
.how-it-works,
.prizes,
.demo,
.testimonials,
.faq,
.final-cta {
    animation: glow 1s infinite;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 80px;
    background: var(--primary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    background: var(--card-gradient);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    
}
.terms a{
    color: #ffa500;

}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group a{
    color: #ffa500;
}

.form-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.contact-info {
    background: var(--card-gradient);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.info-item i {
    font-size: 24px;
    color: var(--accent-gold);
    width: 24px;
    text-align: center;
    filter: drop-shadow(var(--glow-gold));
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item p {
    margin: 0;
    color: var(--text-primary);
}

.info-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-gold);
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 80px;
    background: var(--primary-bg);
}

.policy-content {
    max-width: 800px;
    margin: 40px auto;
    background: var(--card-gradient);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.policy-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-block ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-block li {
    margin-bottom: 10px;
}
.policy-block a{
    color:#ffa500;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--primary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: var(--card-gradient);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

.mobile-menu-btn.active {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--secondary-bg);
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 99;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }

    .main-nav.active {
        height: calc(100vh - 80px);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        text-align: center;
        border-radius: 10px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 215, 0, 0.1);
    }
}

.mobile-menu .download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-menu .download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu .download-btn i {
    font-size: 20px;
}

.mobile-menu .download-btn span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 480px) {

    .contact-content{
grid-template-columns:1fr;    
    }
    .contact-info,.contact-form{
        width: 95%;
    }
    .btn-primary{
        width: 270px;
    }
}
