@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

:root {
    --primary-color: #55efc4;
    --primary-gradient: linear-gradient(135deg, #55efc4 0%, #4ecdc4 100%);
    --secondary-color: #00b894;
    --accent-color: #00b894;
    --dark-bg: #00b894;
    --text-primary: #333;
    --text-secondary: #666;
    --border-light: rgba(0, 0, 0, 0.1);
}

.landing-dark-mode {
    --primary-color: #55efc4;
    --primary-gradient: linear-gradient(135deg, #55efc4 0%, #4ecdc4 100%);
    --secondary-color: #00b894;
    --accent-color: #00b894;
    --dark-bg: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --border-light: rgba(255, 255, 255, 0.1);
}
.landing-light-mode {
    --primary-color: #55efc4;
    --primary-gradient: linear-gradient(135deg, #55efc4 0%, #4ecdc4 100%);
    --secondary-color: #00b894;
    --accent-color: #00b894;
    --dark-bg: #00b894;
    --text-primary: #000;
    --text-secondary: #000;
    --border-light: rgba(0, 0, 0, 0.1);
}




@keyframes fadein {
    0% {
      opacity: 0
    }
  
    to {
      opacity: 1
    }
  }
  
  ::-webkit-scrollbar {
    background: #bbb;
    width: 8px;
    height: 0;
    cursor: n-resize
  }
  
  ::-webkit-scrollbar-thumb {
    background: #000;
    cursor: n-resize
  }
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: #000;
    cursor: n-resize
  }
  

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

body {
    font-family: 'Dosis', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #fff;
    overflow-x: hidden;
}

.landing {
    min-height: 100vh;
}

/* Header */
.nav-home {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-admin {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.text-gradient-logo {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-modern {
    background: #55efc4;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: #000;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="80" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #55efc4, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-modern {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #000000;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(17, 17, 17, 0.5);
    color: rgb(46, 46, 46);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.hero-text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -15%; animation-delay: 1s; }
.card-3 { top: 60%; right: 10%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* How Works Section */
.howworks-section {
    padding: 80px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-item {
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Advantages Section */
.resources {
    padding: 80px 0;
    background: transparent;
}

.block-info-section {
    padding-left: 2rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
}

.landing-block-title-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-block-title-options .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 1.2rem;
}

.landing-block-title-options h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

/* FAQ Section */
.download-app {
    padding: 80px 0;
    background: transparent;
}

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

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: transparent;
}

.accordion-header {
    border-bottom: none;
}

.accordion-button {
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: transparent;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: transparent;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-color: var(--primary-color);    
}

@media (min-width: 992px) {
    .plan-card.featured {
        transform: scale(1.05);
    }
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-gradient);
    color:#000000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-savings {
    background: rgba(255, 107, 107, 0.1);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-features .feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.plan-button {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-button.primary {
    background: var(--primary-gradient);
    color: #000;
}

.plan-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.trust-section {
    text-align: center;
    margin-top: 60px;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.block-top-footer {
    text-align: center;
    margin-bottom: 40px;
}

.logo-footer h2 {
    font-size: 2rem;
    font-weight: 700;
}

.logo-footer span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.block-bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.block-bottom-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-networks-footer {
    display: flex;
    gap: 1rem;
}

.social-networks-footer .icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-networks-footer .icon:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .block-info-section {
        padding-left: 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        position: relative;
        margin: 1rem 0;
    }

    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-features {
        flex-direction: column;
        align-items: center;
    }

    .block-bottom-footer .container {
        flex-direction: column;
        text-align: center;
    }

    /* Language dropdown mobile adjustments */
    .language-options {
        right: -10px;
        min-width: 160px;
    }

    .language-options::before {
        right: 25px;
    }

    .language-toggle {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Theme toggle button */
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

/* Auth Buttons Styles */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-buttons .btn-secondary-modern {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.auth-buttons .btn-secondary-modern:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.auth-buttons .btn-primary-modern {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .auth-buttons .btn-secondary-modern,
    .auth-buttons .btn-primary-modern {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.login-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.login-modal-body {
    padding: 1.5rem;
}

.google-signin-container {
    margin-bottom: 1.5rem;
}

.google-signin-container > div {
    width: 100% !important;
}

.google-signin-container iframe {
    width: 100% !important;
}

.primary-login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(85, 239, 196, 0.3);
}

.primary-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 239, 196, 0.4);
}

.google-primary {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-primary:hover {
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.email-login-form .form-group {
    margin-bottom: 1rem;
}

.email-login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.secondary-login-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.secondary-login-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.login-links {
    text-align: center;
}

.login-links a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Language dropdown */
.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: 2px solid rgb(255 255 255 / 0);
    padding: 8px 16px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    backdrop-filter: blur(10px);
    position: relative;
}

.language-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.language-toggle:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.language-toggle.active::after {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-options::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.language-options button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    color: var(--text-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

.language-options button:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary-color);
    transform: translateX(4px);
}

.language-options button img {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-options button:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-actions {
    text-align: center;
    margin-top: 2rem;
}

.navbar-nav {
    gap: 15px;
}

.landing-dark-mode {
    background: #000000;
    color: #ffffff;
}

.landing-dark-mode .nav-home {
    background: #000000 !important;
    backdrop-filter: blur(10px);
    border-bottom:0 !important;
}   
.landing-dark-mode .nav-home .navbar-nav .nav-link {
    color: #ffffff !important;
}
.landing-dark-mode .nav-home .navbar-nav .nav-link:hover {
    color: #55efc4 !important;
}


.landing-dark-mode .btn-secondary-modern {
    color: #fff;
    border-color: #ffff;
}

.landing-dark-mode .language-toggle {
    color: #fff;
    border-color: #ffff;
}

.landing-dark-mode .floating-card {
    background: rgb(6 6 6 / 95%);
}

.landing-dark-mode .theme-toggle {
    color: #f1c40f !important;
}


.landing-dark-mode .navbar-toggler {
    background: #68f4c2 !important;
    color: #000000 !important;
}

.landing-dark-mode .modal-content {
    background: #000;
}

.landing-light-mode {
    background: #ffffff;
    color: #000000;
}

.navbar-toggler {
    border: transparent !important;
    background: transparent !important;
}
