@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Public Sans", sans-serif;
    font-size: 18px;
}

.btn,
.security-section .security-form .security-submit .sbmt {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    margin: 5px;
}

.btn-primary,
.security-section .security-form .security-submit .sbmt,
.btn-secondary {
    background-color: #00E900;
    color: #000000;
    border-color: #00E900;
}

.btn-primary:hover,
.security-section .security-form .security-submit .sbmt:hover,
.btn-primary:focus,
.security-section .security-form .security-submit .sbmt:focus,
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #00c700;
    border-color: #00c700;
    color: #ffffff;
    outline: none;
}

.btn-secondary {
    opacity: 0.9;
}

.btn-secondary:hover,
.btn-secondary:focus {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: gray;
    border-color: #00E900;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #00E900;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

.navigation-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.hero {
    position: relative;
    padding-bottom: 65px;
}

.hero h1 {
    padding-top: 115px;
    font-weight: 700;
    font-size: 65px;
}

.hero h1 span {
    color: #00E900;
}

.hero .hero-btn {
    background-color: #0F0F0F;
    width: -moz-fit-content;
    width: fit-content;
    height: 64px;
    padding: 0 9px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
}

.hero .svg-hero {
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.accepted {
    padding: 65px 0;
    background-color: #0F0F0F;
}

.accepted h2 {
    font-size: 35px;
    color: #ffffff;
    font-weight: 700;
}

.accepted h2 span {
    color: #00E900;
}

.accepted .images {
    position: relative;
}

.accepted .images img {
    max-width: 45px;
    max-height: 45px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: ease-in-out 0.3s;
}

.accepted .images img:hover {
    filter: grayscale(0%);
}

.why-us {
    position: relative;
    padding: 85px 0;
}

.why-us h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.why-us h3 {
    font-weight: 700;
}

.why-us p {
    color: grey;
}

.strategies {
    position: relative;
    padding: 85px 0;
    background-color: #0F0F0F;
    color: #ffffff;
}

.strategies .col-md-6 {
    padding: 3em;
}

.strategies h2,
.strategies h4,
.strategies p,
.strategies a {
    position: relative;
    top: 28%;
}

.strategies a {
    text-decoration: none;
    color: #ffffff;
    border: solid 1px white;
    padding: 8px 6px 12px 16px;
    border-radius: 50px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: -moz-fit-content;
    width: fit-content;
}

.strategies a img {
    max-width: 32px;
    max-height: 32px;
}

.strategies h2,
.strategies h4 {
    font-weight: 700;
}

.strategies p {
    color: gray;
}

.api {
    position: relative;
    padding: 85px 0;
}

.api h2,
.api h3 {
    font-weight: 700;
}

.api h5 {
    font-weight: 600;
}

.api p {
    color: gray;
}

.call-to-action {
    position: relative;
    padding: 65px 0;
}

.call-to-action .call {
    position: relative;
    background-color: #063E12;
    padding: 2em;
    color: #ffffff;
    border-radius: 50px;
}

.call-to-action .call a {
    background-color: #00F400;
    color: #222222;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
}

.call-to-action .call svg {
    position: absolute;
    right: 0;
    top: -175px;
}

.gradient-footer {
    background: linear-gradient(135deg, #00c700 0%, #063E12 100%);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: none;
}

.social-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.social-group a {
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
}

.about-us {
    padding: 85px 0;
}

.about-us h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-us h1 span.text-accent {
    color: #00E900;
}

.about-us .lead {
    color: gray;
    margin-bottom: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #00E900;
}

.feature-card h3 {
    margin: 1rem 0;
    font-weight: 600;
}

.feature-card p {
    color: gray;
    margin-bottom: 0;
}

.mission .mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.mission .mission-content p {
    color: gray;
}

.mission .mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission .mission-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mission .mission-list li i {
    color: #00E900;
    font-size: 1.25rem;
}

.team {
    background-color: #ffffff;
}

.team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team .lead {
    color: gray;
}

.team .team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team .team-member:hover {
    transform: translateY(-5px);
}

.team .team-member img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.team .team-member h4 {
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.team .team-member .text-muted {
    color: gray;
}

.investment-plans {
    padding: 85px 0;
    background-color: #f8f9fa;
}

.investment-plans .plan-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.investment-plans .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.investment-plans .plan-card.featured {
    border: 2px solid #00E900;
}

.investment-plans .plan-card.featured .featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00E900;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.investment-plans .plan-card h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.investment-plans .plan-card .percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00E900;
    margin-bottom: 1.5rem;
}

.investment-plans .plan-card .percentage span {
    font-size: 1rem;
    color: #666;
    display: block;
}

.investment-plans .plan-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.investment-plans .plan-card .plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.investment-plans .plan-card .plan-features li:last-child {
    border-bottom: none;
}

.investment-calculator {
    background: #ffffff;
    padding: 3rem 0;
}

.investment-calculator .calculator-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.investment-calculator .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.investment-calculator .results-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.investment-calculator .results-box h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.investment-calculator .results-box .result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.investment-calculator .results-box .result-item:last-child {
    border-bottom: none;
}

.investment-calculator .results-box .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.investment-calculator .rate-range {
    color: #666;
    font-size: 0.9rem;
}

.plans-header {
    background: linear-gradient(135deg, #0F0F0F 0%, #063E12 100%);
    padding: 85px 0 45px;
    color: #ffffff;
    margin-bottom: 2rem;
}

.plans-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plans-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.plans-filter {
    text-align: center;
}

.plans-filter .btn-group {
    display: inline-flex;
    gap: 10px;
}

.plan-duration {
    background: rgba(0, 233, 0, 0.1);
    color: #00E900;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-grid {
    margin: 2rem 0;
}

.news-grid .news-card {
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.news-grid .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-grid .news-card .card-body {
    padding: 1.5rem;
}

.news-grid .news-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-grid .news-card .news-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.news-grid .news-card .card-img-top {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.pagination {
    margin: 2rem 0;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 4px;
}

.pagination .page-item .page-link {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background-color: #00E900;
    border-color: #00E900;
    color: #000000;
}

.pagination .page-item.active .page-link {
    background-color: #00E900;
    border-color: #00E900;
    color: #000000;
}

.pagination .page-item.disabled .page-link {
    color: #666;
    pointer-events: none;
}

@media (max-width: 768px) {
    .strategies {
        position: relative;
        padding: 85px 0;
        background-color: #0F0F0F;
        color: #ffffff;
    }
    .strategies .col-md-6 {
        padding: 1em;
    }
    .strategies h2,
    .strategies h4,
    .strategies p,
    .strategies a {
        position: relative;
        top: 5%;
    }
    .strategies a {
        text-decoration: none;
        color: #ffffff;
        border: solid 1px white;
        padding: 8px 6px 12px 16px;
        border-radius: 50px;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: -moz-fit-content;
        width: fit-content;
    }
    .strategies a img {
        max-width: 32px;
        max-height: 32px;
    }
    .strategies h2,
    .strategies h4 {
        font-weight: 700;
    }
    .strategies p {
        color: gray;
    }
    .about-us {
        padding: 45px 0;
    }
    .about-us h1 {
        font-size: 2.5rem;
    }
    .mission-content {
        margin-top: 2rem;
    }
    .team .team-member {
        margin-bottom: 2rem;
    }
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    font-weight: 600;
    padding: 1.5rem;
    font-family: "Inter", sans-serif;
}

.accordion-button:not(.collapsed) {
    color: #00E900;
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.accordion-button:hover::after {
    opacity: 1;
}

.accordion-body {
    padding: 2rem;
    background: #fbfbfb;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h5 {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: "Inter", sans-serif;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item a {
    color: #00E900;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #00c700;
    text-decoration: underline;
}

.title-page {
    padding: 3rem 0;
}

.title-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.monospace-text {
    color: #666;
    font-size: 1.1rem;
}

.contact-section {
    padding: 85px 0;
    background: #ffffff;
}

.contact-section .contact-info h3 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-section .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-section .contact-info .info-item i {
    width: 40px;
    height: 40px;
    background: rgba(0, 233, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E900;
    font-size: 1.2rem;
}

.contact-section .contact-info .info-item .info-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-section .contact-info .info-item .info-content p {
    color: gray;
    margin: 0;
}

.contact-section .contact-info .social-links {
    margin-top: 2rem;
}

.contact-section .contact-info .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 233, 0, 0.1);
    color: #00E900;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.contact-section .contact-info .social-links a:hover {
    background: #00E900;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-section .contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-section .contact-form h3 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-section .contact-form .btn-submit {
    background: #00E900;
    color: #000000;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-section .contact-form .btn-submit:hover {
    background: #00c700;
    color: #ffffff;
    transform: translateY(-2px);
}

.form-control {
    border: none;
    border-bottom: 2px solid #eee;
    padding: 0.75rem 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #00E900;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.text-accent {
    color: #00E900;
}

a.text-accent {
    text-decoration: none;
    transition: color 0.3s ease;
}

a.text-accent:hover {
    color: #00c700;
    text-decoration: underline;
}

.alert i {
    margin-right: 0.5rem;
}

.alert.alert-danger i {
    color: #dc3545;
}

.alert.alert-warning i {
    color: #ffc107;
}

.form-control.text-center {
    letter-spacing: 0.5em;
    font-size: 1.5rem;
    font-family: monospace;
    padding: 1rem;
}

.form-control.text-center[inputmode=numeric] {
    font-weight: 600;
}

.dashboard-menu {
    border-radius: 15px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    position: relative;
}

.dashboard-menu .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1000;
}

.dashboard-menu .mobile-menu-toggle:hover {
    color: #00E900;
}

.dashboard-menu .secondary-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-menu .secondary-nav .menu-item {
    flex: 1;
}

.dashboard-menu .secondary-nav .menu-item.active a {
    background: #00E900;
    color: #000000;
}

.dashboard-menu .secondary-nav .menu-item a {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dashboard-menu .secondary-nav .menu-item a:hover {
    background: rgba(0, 233, 0, 0.1);
    color: #00E900;
}

.dashboard-menu .secondary-nav .menu-item a i {
    font-size: 1.1rem;
    min-width: 1.2rem;
}

@media (max-width: 768px) {
    .dashboard-menu {
        padding-top: 4rem;
    }
    .dashboard-menu .mobile-menu-toggle {
        display: block;
    }
    .dashboard-menu .secondary-nav {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: left 0.3s ease;
        padding: 1rem;
        padding-top: 4rem;
    }
    .dashboard-menu .secondary-nav.show {
        display: block;
        left: 0;
    }
    .dashboard-menu .secondary-nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }
    .dashboard-menu .secondary-nav .menu-item {
        width: 100%;
        min-width: 100%;
    }
    .dashboard-menu .secondary-nav .menu-item a {
        padding: 1rem;
        border-radius: 8px;
    }
    .dashboard-menu::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .dashboard-menu.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.security-section {
    padding: 2rem;
    margin: 2rem 0;
}

.security-section h3 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: "Inter", sans-serif;
}

.security-section .security-form {
    margin: 0 auto;
}

.security-section .security-form .radio-group {
    margin-bottom: 2rem;
}

.security-section .security-form .radio-group .radio-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #666;
    transition: color 0.3s ease;
}

.security-section .security-form .radio-group .radio-label:hover {
    color: #000000;
}

.security-section .security-form .radio-group .radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.security-section .security-form .radio-group .radio-label input:checked~.checkmark {
    background-color: #00E900;
    border-color: #00E900;
}

.security-section .security-form .radio-group .radio-label input:checked~.checkmark:after {
    display: block;
}

.security-section .security-form .radio-group .radio-label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #ffffff;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.security-section .security-form .radio-group .radio-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.security-section .security-form .security-submit {
    margin-top: 2rem;
    text-align: center;
}

.security-section .security-form .security-submit .sbmt {
    min-width: 120px;
}

.tfa-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.tfa-section .tfa-options {
    margin: 1.5rem 0;
}

.tfa-section .tfa-options .checkbox-group {
    margin-bottom: 1rem;
}

.tfa-section .tfa-options .checkbox-group input[type=checkbox] {
    margin-right: 10px;
}

.tfa-section .tfa-code-input {
    max-width: 200px;
    text-align: center;
    letter-spacing: 0.5em;
    font-family: monospace;
    font-size: 1.2rem;
    padding: 0.5rem;
    margin: 1rem 0;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tfa-section .tfa-code-input:focus {
    border-color: #00E900;
    box-shadow: 0 0 0 2px rgba(0, 233, 0, 0.1);
}

.tfa-section .tfa-secret {
    background: rgba(0, 233, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: monospace;
    color: #00c700;
}

.withdrawal-section {
    padding: 3rem 0;
    background: #ffffff;
}

.withdrawal-section .balance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.withdrawal-section .balance-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.withdrawal-section .balance-card h4 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.withdrawal-section .balance-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.withdrawal-section .balance-card .amount span {
    margin-left: 0.25rem;
}

.withdrawal-section .currency-options {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.withdrawal-section .currency-options h3 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.withdrawal-section .currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.withdrawal-section .currency-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.withdrawal-section .currency-card:hover:not(.disabled) {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.withdrawal-section .currency-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.withdrawal-section .currency-card .radio-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.withdrawal-section .currency-card .radio-wrapper input[type=radio] {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.withdrawal-section .currency-card .radio-wrapper input[type=radio]:checked {
    border-color: #00E900;
    background: #00E900;
}

.withdrawal-section .currency-card .radio-wrapper input[type=radio]:checked:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.withdrawal-section .currency-card .radio-wrapper input[type=radio]:hover:not(:checked) {
    border-color: #00E900;
}

.withdrawal-section .currency-card .radio-wrapper label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.withdrawal-section .currency-card .radio-wrapper label img {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
}

.withdrawal-section .currency-card .radio-wrapper label .currency-name {
    font-weight: 600;
    color: #000;
}

.withdrawal-section .currency-card .currency-details .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.withdrawal-section .currency-card .currency-details .detail span {
    color: #666;
    font-size: 0.9rem;
}

.withdrawal-section .currency-card .currency-details .detail strong {
    font-weight: 600;
}

.withdrawal-section .withdrawal-amount {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

.withdrawal-section .withdrawal-amount .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.withdrawal-section .withdrawal-preview {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.withdrawal-section .withdrawal-preview h3 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.withdrawal-section .withdrawal-preview .preview-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.withdrawal-section .withdrawal-preview .preview-details .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.withdrawal-section .withdrawal-preview .preview-details .detail-item:last-child {
    border-bottom: none;
}

.withdrawal-section .withdrawal-preview .preview-details .detail-item span {
    color: #666;
}

.withdrawal-section .withdrawal-preview .preview-details .detail-item strong {
    font-weight: 600;
    color: #000;
}

.withdrawal-section .no-funds {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}

.withdrawal-section .no-funds i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.withdrawal-section .no-funds p {
    margin: 0;
    font-size: 1.1rem;
}

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

.withdrawal-section .form-actions .btn,
.withdrawal-section .form-actions .security-section .security-form .security-submit .sbmt,
.security-section .security-form .security-submit .withdrawal-section .form-actions .sbmt {
    min-width: 200px;
}

.deposit-section {
    background: #ffffff;
}

.deposit-section .balance-overview {
    margin-bottom: 2rem;
}

.deposit-section .balance-overview .balance-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.deposit-section .balance-overview .balance-card h4 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.deposit-section .balance-overview .balance-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.deposit-section .balance-overview .balance-card .amount span {
    margin-left: 0.25rem;
}

.deposit-section .investment-plans {
    margin-bottom: 2rem;
}

.deposit-section .investment-plans h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.deposit-section .investment-plans .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.deposit-section .investment-plans .plan-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.deposit-section .investment-plans .plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.deposit-section .investment-plans .plan-card .plan-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper input[type=radio] {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper input[type=radio]:checked {
    border-color: #00E900;
    background: #00E900;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper input[type=radio]:checked:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper input[type=radio]:hover:not(:checked) {
    border-color: #00E900;
}

.deposit-section .investment-plans .plan-card .plan-header .radio-wrapper label {
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

.deposit-section .investment-plans .plan-card .plan-header h4 {
    font-weight: 600;
    color: #000;
    margin: 0;
}

.deposit-section .investment-plans .plan-card .plan-details {
    padding: 1.5rem;
}

.deposit-section .investment-plans .plan-card .plan-details .plan-table {
    margin-bottom: 1.5rem;
}

.deposit-section .investment-plans .plan-card .plan-details .plan-table .table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
    color: #000;
}

.deposit-section .investment-plans .plan-card .plan-details .plan-table .table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    color: #666;
}

.deposit-section .investment-plans .plan-card .plan-details .plan-table .table-row:last-child {
    border-bottom: none;
}

.deposit-section .investment-plans .plan-card .plan-details .plan-table .table-row .min_deposit,
.deposit-section .investment-plans .plan-card .plan-details .plan-table .table-row .max_deposit {
    color: #000;
    font-weight: 500;
}

.deposit-section .investment-plans .plan-card .plan-details .calculator-link {
    text-align: center;
}

.deposit-section .investment-plans .plan-card .plan-details .calculator-link .btn i,
.deposit-section .investment-plans .plan-card .plan-details .calculator-link .security-section .security-form .security-submit .sbmt i,
.security-section .security-form .security-submit .deposit-section .investment-plans .plan-card .plan-details .calculator-link .sbmt i {
    margin-right: 0.5rem;
}

.deposit-section .deposit-options {
    background: #ffffff;
    margin-bottom: 2rem;
}

.deposit-section .deposit-options h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.deposit-section .deposit-options .nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 1.5rem;
}

.deposit-section .deposit-options .nav-tabs .nav-item {
    margin-bottom: -2px;
}

.deposit-section .deposit-options .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deposit-section .deposit-options .nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

.deposit-section .deposit-options .nav-tabs .nav-link:hover {
    color: #00E900;
    border-bottom-color: #00E900;
}

.deposit-section .deposit-options .nav-tabs .nav-link.active {
    color: #00E900;
    border-bottom-color: #00E900;
    background: transparent;
}

.deposit-section .deposit-options .payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.deposit-section .deposit-options .payment-method-card {
    position: relative;
}

.deposit-section .deposit-options .payment-method-card input[type=radio] {
    position: absolute;
    opacity: 0;
}

.deposit-section .deposit-options .payment-method-card input[type=radio]:checked+label {
    border-color: #00E900;
    background: rgba(0, 233, 0, 0.1);
}

.deposit-section .deposit-options .payment-method-card label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deposit-section .deposit-options .payment-method-card label:hover {
    border-color: #00E900;
}

.deposit-section .deposit-options .payment-method-card label img {
    width: 22px;
    height: 22px;
    -o-object-fit: contain;
    object-fit: contain;
}

.deposit-section .deposit-options .payment-method-card label span {
    font-weight: 500;
    color: #000;
}

.deposit-section .deposit-options .payment-method-card label .balance {
    margin-left: auto;
    color: #00E900;
}

.deposit-section .deposit-amount {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

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

.deposit-section .deposit-amount .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.deposit-section .deposit-amount .form-actions {
    text-align: center;
}

.deposit-section .deposit-amount .form-actions .btn,
.deposit-section .deposit-amount .form-actions .security-section .security-form .security-submit .sbmt,
.security-section .security-form .security-submit .deposit-section .deposit-amount .form-actions .sbmt {
    min-width: 200px;
}

.deposit-section .deposit-amount .form-actions .btn i,
.deposit-section .deposit-amount .form-actions .security-section .security-form .security-submit .sbmt i,
.security-section .security-form .security-submit .deposit-section .deposit-amount .form-actions .sbmt i {
    margin-right: 0.5rem;
}

.deposit-confirm-section {
    background: #ffffff;
}

.deposit-confirm-section .deposit-confirm-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.deposit-confirm-section .deposit-confirm-card .card-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.deposit-confirm-section .deposit-confirm-card .card-header h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.deposit-confirm-section .deposit-confirm-card .card-header .payment-qr {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.deposit-confirm-section .deposit-confirm-card .card-header .payment-qr img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.deposit-confirm-section .deposit-confirm-card .card-body {
    padding: 1.5rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row:last-child {
    border-bottom: none;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .label {
    color: #666;
    font-size: 0.9rem;
    padding-right: 1rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value {
    text-align: right;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value.highlight {
    color: #00E900;
    font-weight: 600;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value.address {
    font-family: monospace;
    word-break: break-all;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value .fee-info {
    color: #666;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value .withdraw-terms {
    text-align: right;
    margin-top: 0.25rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value .withdraw-terms .term {
    display: inline-block;
    background: rgba(0, 233, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value .withdraw-terms .duration-max {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .value .withdraw-terms .duration-max i {
    margin-right: 0.25rem;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .text-success {
    color: #00E900;
}

.deposit-confirm-section .deposit-confirm-card .info-group .info-row .text-danger {
    color: #dc3545;
}

.deposit-confirm-section .deposit-confirm-card .copy-btn {
    background: none;
    border: none;
    color: #00E900;
    cursor: pointer;
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deposit-confirm-section .deposit-confirm-card .copy-btn:hover {
    transform: scale(1.1);
}

.deposit-confirm-section .deposit-confirm-card .copy-btn i {
    font-size: 1rem;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00E900;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 233, 0, 0.2);
    animation: slideIn 0.3s ease forwards;
    z-index: 1000;
}

.copy-notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

.copy-notification i {
    font-size: 1rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*# sourceMappingURL=main.css.map */