.v-responsive.v-img {border-radius:5px!important;}

@-moz-document url-prefix() {
  .v-btn.v-btn--icon.v-theme--custom.v-btn--density-default.v-btn--variant-text { background-color: goldenrod !important; }
  .v-btn--icon.v-btn--density-default { width: calc(var(--v-btn-height) + 1px) !important; height: calc(var(--v-btn-height) + 1px) !important; }
}
.v-input.v-input--horizontal.v-input--center-affix.v-input--density-default.v-theme--goldenRubyNight.v-locale--is-ltr.v-input--dirty.v-input--readonly.v-text-field.input-with-button { display:none !important; }
.v-input.v-input--horizontal.v-input--center-affix.v-input--density-default.v-theme--goldenRubyNight.v-locale--is-ltr.v-input--dirty.v-input--readonly.v-text-field.v-text-field--suffixed { display:none !important; }

/* Base Elements */
.v-toolbar__content > .v-btn:last-child { margin-inline-end: 0 !important; }
.v-col-sm-6.v-col-12.text-center.text-sm-right.align-self-sm-center { display: block !important; }
.v-container.v-locale--is-ltr.home-page-providers-list.mt-10 { margin-top: -15px !important; }
.v-navigation-drawer.v-navigation-drawer--right.v-navigation-drawer--active.v-theme--goldenRubyNight {display: none!important;}

/* Footer */
.footer-background { background-color: #0a0a0a; padding: 13px; text-align: left; color: #fff; margin-top: -35px !important; margin-bottom: 20px !important; }
.footer-background img { display: block; margin: 0 auto; max-width: 200px; filter: grayscale(1); transition: filter 0.3s ease; }
.footer-background img:hover { filter: grayscale(0); }
.footer-logo .router-link-active { display: none !important; }

/* Dark Table */
.dark-table { width: 100%; border-collapse: collapse; margin: 20px 0; background-color: #1e1e1e; color: #fff; }
.dark-table th, .dark-table td { padding: 12px; text-align: left; border: 1px solid #444; font-size: 0.9em; }
.dark-table th { background-color: #333; }
.dark-table tr:nth-child(even) { background-color: #2a2a2a; }
.dark-table caption { font-size: 1.5em; margin-bottom: 10px; color: #f0f0f0; }
.dark-table .highlight { color: #f90; }

/* Tooltips */
.tooltip { position: relative; display: inherit; cursor: pointer; vertical-align: middle; }
.tooltip .tooltiptext { visibility: hidden; width: max-content; max-width: 300px; background-color: #555; color: #fff; text-align: center; border-radius: 8px; padding: 12px; position: absolute; z-index: 10; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; box-shadow: 0 4px 8px rgba(0,0,0,0.3); word-wrap: break-word; overflow-wrap: break-word; line-height: 1.4; font-size: 16px; }
.tooltip .tooltiptext::after { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: #555; }
.tooltip:hover .tooltiptext, .tooltip:focus .tooltiptext, .tooltip.active .tooltiptext { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

/* --- Responsive Breakpoints --- */

/* Shared Table Logic for Mobile & Mid-Screens */
@media (max-width: 868px), (min-width: 960px) and (max-width: 1279px) {
  .dark-table { border: 0; }
  .dark-table caption { font-size: 1.2em; }
  .dark-table thead { display: none; }
  .dark-table tr { display: block; margin-bottom: 10px; }
  .dark-table td { display: block; text-align: right; border: 0; position: relative; padding-left: 50%; }
  .dark-table td::before { content: attr(data-label); position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-weight: bold; text-align: left; color: #ccc; }
  .dark-table tr:nth-child(even) { background-color: #1e1e1e; }
}

/* --- Base Reset & Typography --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f1318;
    color: #a0aebc;
    line-height: 1.6;
}

/* --- Global Reset: Remove all link underlines --- */
a { text-decoration: none !important; }

/* --- Footer Layout --- */
.site-footer {
    background-color: #14181e;
    border-top: 1px solid #232a35;
    padding: 40px 0 20px;
    position: relative;
    font-size: 0.9rem;
}

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

/* --- Region Badge (Top Pill) --- */
.footer-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.region-badge {
    background-color: #232a35;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease;
}

.region-badge:hover {
    background-color: #3b4554;
}

/* --- Top Section (Flexbox Desktop) --- */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* --- Brand Column & Features --- */
.brand-col {
    flex: 1.5;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.footer-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: grayscale(0%);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
}

.why-us-item-icon {
    font-size: 1.1rem;
    color: #d4af37; /* Highlight icon color */
}

.why-us-item-text {
    color: #a0aebc;
}

.why-us-item-text strong {
    color: #e2e8f0;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #232a35;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 1.2rem;
}

.social-icons a:hover { 
    background-color: #3b4554; 
    transform: translateY(-2px);
}

/* --- Link Columns Layout --- */
.links-section {
    flex: 2.5;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.links-col {
    flex: 1;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
    color: #a0aebc;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* --- Bottom Section (Copyright & Partners) --- */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #232a35;
}

.copyright { font-size: 0.8rem; }

.partner-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-badge {
    color: #6c7987;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: default;
}

.partner-badge:hover { color: #a0aebc; }

/* --- Clickable License Shield --- */
.license-shield {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 6px;
    color: #a0aebc;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.license-shield .shield-icon {
    font-size: 1.2rem;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.license-shield:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
}

.license-shield:hover .shield-icon {
    filter: grayscale(0%);
}

/* --- Special Crypto Highlight Link --- */
.crypto-highlight-link {
    color: #d4af37 !important; 
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); 
    transition: all 0.3s ease !important;
}

.crypto-highlight-link:hover {
    color: #fce77d !important; 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: translateX(4px); 
}

/* The tiny animated HOT badge */
.hot-badge {
    background: linear-gradient(135deg, #ff4b4b, #d90000);
    color: #ffffff;
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: none;
    box-shadow: 0 2px 5px rgba(217, 0, 0, 0.4);
    animation: gentleBounce 2s infinite; 
}

/* The bouncing animation for the badge */
@keyframes gentleBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1.5px); }
}

/* ============================== */
/* --- Responsive Design --- */
/* ============================== */
@media (min-width: 900px) {
.v-list-item-title
{font-size:11.4px!important;}
}
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
    }
    .brand-col {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {
    .footer-top {
        gap: 30px;
    }

    /* Center Logo and Socials on Mobile */
    .footer-logo {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .social-icons {
        align-self: center;
        margin-top: 5px;
    }

    /* --- The Links Section Grid for Mobile --- */
    .links-section {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }

    /* The 3rd link column stretches across both grid columns */
    .links-col:nth-child(3) { 
        grid-column: span 2; 
        text-align: center;
    }

    .links-col:nth-child(3) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .links-col:nth-child(3) ul li { margin-bottom: 0; }

    /* Footer Bottom Adjustments */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .partner-logos { justify-content: center; gap: 15px; }
}

/* The 3rd link column stretches across both grid columns */
    .links-col:nth-child(3) { 
        grid-column: span 2; 
        text-align: center;
    }

    .links-col:nth-child(3) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

.links-col:nth-child(3) ul li { margin-bottom: 0; }

.us-provider .v-list-item-title::after {
  content: '';
  display: inline-block;
  width: 18px; 
  height: 12px; 
  margin-left: 8px; 
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7410 3900'%3E%3Cpath d='M0,0h7410v3900H0' fill='%23b31942'/%3E%3Cpath d='M0,450H7410m0,600H0m0,600H7410m0,600H0m0,600H7410m0,600H0' stroke='%23FFF' stroke-width='300'/%3E%3Cpath d='M0,0h2964v2100H0' fill='%230a3161'/%3E%3Cg fill='%23FFF'%3E%3Cg id='s18'%3E%3Cg id='s9'%3E%3Cg id='s5'%3E%3Cg id='s4'%3E%3Cpath id='s' d='M247,90 317.534230,307.082039 132.873218,172.917961H361.126782L176.465770,307.082039z'/%3E%3Cuse href='%23s' y='420'/%3E%3Cuse href='%23s' y='840'/%3E%3Cuse href='%23s' y='1260'/%3E%3C/g%3E%3Cuse href='%23s' y='1680'/%3E%3C/g%3E%3Cuse href='%23s4' x='247' y='210'/%3E%3C/g%3E%3Cuse href='%23s9' x='494'/%3E%3C/g%3E%3Cuse href='%23s18' x='988'/%3E%3Cuse href='%23s9' x='1976'/%3E%3Cuse href='%23s5' x='2470'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}