/* Modern CSS with Variables */
:root {
    --primary-color: #021e48;
    --secondary-color: #f59e0b;
    --dark-color: #111827;
    --light-color: #f3f4f6;
    --success-color: #10b981;
    --text-color: #374151;
    --light-text: #9ca3af;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;

    .footer-logo h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .footer-logo span {
        color: var(--secondary-color);
    }

    .footer-logo p {
        color: var(--light-text);
    }

    #emerchance-legends{
        margin-top: 15rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-column a {
        color: var(--light-text);
    }

    .footer-column a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }

    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light-text);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-overlay h2 {
            font-size: 2.8rem;
        }

        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            padding: 1rem;
        }

        .logo-container {
            margin-bottom: 1rem;
        }

        nav {
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        nav ul {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            width: 100%;
        }

        .hero-section {
            height: 60vh;
        }

        .hero-overlay h2 {
            font-size: 2.2rem;
        }

        .hero-overlay p {
            font-size: 1.2rem;
        }

        .guess-features {
            grid-template-columns: 1fr;
        }

        .newsletter-content {
            flex-direction: column;
            text-align: center;
        }

        .newsletter-form {
            width: 100%;
        }

        .lotto-balls {
            gap: 1rem;
        }

        .ball {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            height: 50vh;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .footer-links {
            grid-template-columns: 1fr;
        }
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9fafb;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    position: relative;
    background-color: var(--dark-color);
    color: white;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.logo-container h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-container span {
    color: var(--secondary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    transition: opacity 0.3s ease;
}

.hero-overlay h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
    transform: translateY(0);
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Lottery Balls */
.lottery-balls-container {
    background: linear-gradient(135deg, var(--primary-color), #021e48);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lottery-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lotto-balls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, white, #f9fafb);
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: float 3s infinite ease-in-out;
    position: relative;
}

.ball.special {
    background: radial-gradient(circle at 30% 30%, #ffd700, var(--secondary-color));
}

.ball::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Delay each ball animation */
.ball:nth-child(2) {
    animation-delay: 0.2s;
}

.ball:nth-child(3) {
    animation-delay: 0.4s;
}

.ball:nth-child(4) {
    animation-delay: 0.6s;
}

.ball:nth-child(5) {
    animation-delay: 0.8s;
}

.ball:nth-child(6) {
    animation-delay: 1s;
}

/* Main Content */
main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-container {
    margin-bottom: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Guess Section */
.guess-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.guess-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background-color: var(--light-color);
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.guess-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #021e48);
    color: white;
}

.guess-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guess-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.play-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.play-button:hover {
    background-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.play-button i {
    margin-left: 0.5rem;
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
}

.author-stars {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.social-links h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    background-color: var(--light-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Newsletter Section */
#newsletter {
    margin-top: 5rem;
}

.newsletter-content {
    background: linear-gradient(135deg, var(--primary-color), #021e48);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
}

.subscribe-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.subscribe-button:hover {
    background-color: #e67e22;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5vh auto;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #021e48);
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 8rem);
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.modal-body h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    list-style-type: disc;
}

.modal-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.modal-body a:hover {
    color: var(--secondary-color);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2vh auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.3rem;
    }

    .modal-body h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

/* Modern Language Selector */
.language-selector {
    position: relative;
    z-index: 30;
    order: -1; /* Places language selector before nav items */
}

.language-toggle {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.language-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.language-toggle .flag {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
    min-width: 180px;
    backdrop-filter: blur(20px);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    position: relative;
}

.language-option:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #007bff;
}

.language-option:first-child {
    border-radius: 16px 16px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 16px 16px;
}

.language-option .flag {
    margin-right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.language-name {
    flex: 1;
    font-weight: 500;
}

.language-code {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.language-option:hover .language-code {
    background: #007bff;
    color: white;
}

.language-option[data-lang="fa"] .language-name {
    font-family: 'Vazirmatn', 'Poppins', sans-serif;
}

/* Mobile Responsive for Language Selector */
@media (max-width: 768px) {
    .language-selector {
        order: -1; /* Ensures it appears above nav items */
        align-self: center;
        margin-bottom: 1rem;
    }

    .language-toggle {
        padding: 8px 12px;
        min-width: 60px;
        border-radius: 20px;
        font-size: 12px;
    }

    .language-toggle .flag {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .language-text {
        font-size: 12px;
    }

    .dropdown-arrow {
        margin-left: 6px;
        font-size: 10px;
    }

    .language-dropdown {
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        border-radius: 12px;
    }

    .language-selector.active .language-dropdown {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .language-option {
        padding: 10px 16px;
    }

    .language-option .flag {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .language-name {
        font-size: 14px;
    }

    .language-code {
        font-size: 11px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        align-self: center;
        margin-bottom: 0.8rem;
    }

    .language-toggle {
        padding: 6px 10px;
        min-width: 50px;
    }

    .language-toggle .flag {
        width: 18px;
        height: 15px;
        margin-right: 4px;
    }

    .language-text {
        font-size: 11px;
    }

    .language-dropdown {
        min-width: 140px;
        left: 50%;
        transform: translateX(-50%);
    }

    .language-selector.active .language-dropdown {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* RTL Support for Farsi */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .header-container,
[dir="rtl"] nav ul,
[dir="rtl"] .about-content,
[dir="rtl"] .guess-features,
[dir="rtl"] .steps-container,
[dir="rtl"] .testimonials-container,
[dir="rtl"] .contact-content,
[dir="rtl"] .footer-content,
[dir="rtl"] .footer-links,
[dir="rtl"] .contact-item,
[dir="rtl"] .social-icons {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-dropdown {
    left: 0;
    right: auto;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-column h3::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .step-number {
    margin-right: 0;
    margin-left: 1.5rem;
}

[dir="rtl"] .footer-column a:hover {
    padding-left: 0;
    padding-right: 5px;
}



/* Base Flag Styles */
.flag {
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.flag-en, .flag-us {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3NTEwIDM5MDAiPjxwYXRoIGZpbGw9IiNiMjIyMzQiIGQ9Ik0wIDBoNzUxMHYzOTAwSDB6Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgwem0wIDYwMGg3NTEwdjMwMEgweiIvPjxwYXRoIGZpbGw9IiMzYzNiNmUiIGQ9Ik0wIDBoMzAwNnYyMTAwSDB6Ii8+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0ibTI0NyAyMTAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptNTAwIDAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptLTI1MCA1MDBsMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptNTAwIDAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em0tMjUwIDUwMGwzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptNTAwIDAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptNTAwIDAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bS0yNTAgNTAwbDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXptNTAwIDAgMzEuNzMgOTcuNjJoMTAyLjY5bC04My4wNyA2MC4zNSAzMS43MyA5Ny42Mi04My4wOC02MC4zNS04My4wNyA2MC4zNSAzMS43My05Ny42Mi04My4wNy02MC4zNWgxMDIuNjl6bTUwMCAwIDMxLjczIDk3LjYyaDEwMi42OWwtODMuMDcgNjAuMzUgMzEuNzMgOTcuNjItODMuMDgtNjAuMzUtODMuMDcgNjAuMzUgMzEuNzMtOTcuNjItODMuMDctNjAuMzVoMTAyLjY5em01MDAgMCAzMS43MyA5Ny42MmgxMDIuNjlsLTgzLjA3IDYwLjM1IDMxLjczIDk3LjYyLTgzLjA4LTYwLjM1LTgzLjA3IDYwLjM1IDMxLjczLTk3LjYyLTgzLjA3LTYwLjM1aDEwMi42OXoiLz48L2c+PC9zdmc+');
}

.flag-fa {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MzAgMzYwIj4KICA8cmVjdCB3aWR0aD0iNjMwIiBoZWlnaHQ9IjM2MCIgZmlsbD0iIzIzOWY0MCIvPgogIDxyZWN0IHdpZHRoPSI2MzAiIGhlaWdodD0iMjQwIiBmaWxsPSIjZmZmIi8+CiAgPHJlY3Qgd2lkdGg9IjYzMCIgaGVpZ2h0PSIxMjAiIGZpbGw9IiNkYTAwMDAiLz4KPC9zdmc+');
}

.flag-de {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1IDMiPgogIDxwYXRoIGQ9Ik0wIDBoNXYzSDB6Ii8+CiAgPHBhdGggZmlsbD0iI0QwMCIgZD0iTTAgMGg1djFIMHoiLz4KICA8cGF0aCBmaWxsPSIjRkZDRTAwIiBkPSJNMCAxaDV2MUgweiIvPgogIDxwYXRoIGZpbGw9IiMwMDAiIGQ9Ik0wIDJoNXYxSDB6Ii8+Cjwvc3ZnPg==');
}