/* Global Styles */
:root {
    --primary-color: #4e42d4;
    --secondary-color: #6c63ff;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #777;
    --background-color: #fff;
    --light-background: #f9f9f9;
    --border-color: #eaeaea;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.download-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.download-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    color:white;
}

/* Hero Container (Header + Hero Section) */
.hero-container {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding-top: 20px;
    overflow: hidden;
}

.hero-container:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.hero-container h1,
.hero-container p,
.hero-container .slogan {
    color: white;
}

/* Header Styles */
header {
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-right {
    display: flex;
    align-items: center;
}

.language-selector {
    margin-left: 20px;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
#hero {
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
    z-index: 5;
}

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

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slogan {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.app-links {
    display: flex;
    gap: 5px;
}

.app-links a {
    margin-right: 5px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.app-links img {
    height: 40px;
    transition: var(--transition);
}

.app-links img:hover {
    transform: scale(1.05);
}

.store-btn {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.store-btn i {
    font-size: 2rem;
    margin-right: 10px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-height: 600px;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* Lotteries Section */
#lotteries {
    background-color: var(--light-background);
    padding: 60px 0;
}

.continent-section {
    margin-bottom: 40px;
}

.continent-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.continent-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.lottery-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.lottery-logo {
    width: 160px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    border-radius: 10px;
    transition: var(--transition);
    padding: 15px;
}

.lottery-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.coming-soon {
    font-style: italic;
    color: var(--light-text);
    text-align: center;
    width: 100%;
    padding: 30px 0;
}

/* Strategy Section */
.strategy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--light-background);
    padding: 80px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 30px;
}

.rating {
    margin-bottom: 15px;
    color: #FFD700; /* Gold color for stars */
    font-size: 18px;
}

.rating i {
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--primary-color);
}

/* How To Guide Section */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-image img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
}

.step-content {
    flex: 1;
}

/* FAQ Section */
#faq {
    background-color: var(--light-background);
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle .fa-plus:before {
    content: "\f068";
}

/* Footer Section */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Learn More Link Styles */
.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    margin-left: 5px;
}

.learn-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-color);
}

.learn-more:hover:after {
    margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .app-links {
        justify-content: center;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    nav, .header-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        width: 100%;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    z-index: 1001;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-menu .download-btn {
    margin-top: 20px;
    display: inline-block;
}

.mobile-menu .language-selector {
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer Disclaimer */
.disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}