:root {
    --bg-main: #02040d;
    --bg-secondary: #050918;
    --bg-card: rgba(9, 16, 38, 0.72);

    --blue: #087cff;
    --cyan: #00d9ff;
    --purple: #6d24ff;
    --magenta: #e52cff;

    --white: #ffffff;
    --text: #e9edff;
    --muted: #8993b4;

    --border: rgba(88, 121, 255, 0.18);

    --gradient:
        linear-gradient(
            110deg,
            #008cff 0%,
            #00d8ff 30%,
            #4134ff 60%,
            #e52cff 100%
        );

    --gradient-text:
        linear-gradient(
            90deg,
            #00baff,
            #416cff,
            #d52cff
        );
}


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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(30, 70, 255, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 183, 255, 0.08),
            transparent 30%
        ),
        var(--bg-main);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: relative;
    z-index: 20;

    width: 100%;
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    background:
        rgba(2, 4, 13, 0.78);

    backdrop-filter: blur(20px);
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
    text-decoration: none;
}


.brand-symbol {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--gradient);

    box-shadow:
        0 0 25px rgba(0, 126, 255, 0.28);

    color: white;

    font-size: 19px;
}


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.brand-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
}


.brand-subtitle {
    margin-top: 4px;

    font-size: 8px;
    letter-spacing: 4px;

    color: #aeb8d5;
}


.navigation {
    display: flex;
    gap: 34px;
}


.navigation a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #9ba5c5;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}


.navigation a:hover {
    color: white;
}


.navigation i {
    font-size: 12px;
}


.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.login-button,
.register-button {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


.login-button {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #dce3ff;
}


.register-button {
    padding: 11px 19px;

    color: white;

    border-radius: 8px;

    background: var(--gradient);

    box-shadow:
        0 0 22px rgba(70, 75, 255, 0.25);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 80px 9%;

    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 5;

    max-width: 680px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(0, 194, 255, 0.22);

    border-radius: 30px;

    background: rgba(0, 130, 255, 0.07);

    color: #79cfff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 12px #00d9ff;
}


.hero h1 {
    margin-top: 28px;

    font-size: clamp(58px, 8vw, 112px);

    line-height: 0.88;

    font-weight: 950;

    letter-spacing: -6px;

    color: white;
}


.hero h1 span {
    display: block;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 560px;

    margin-top: 32px;

    color: #909ab9;

    font-size: 17px;

    line-height: 1.7;
}


.hero-actions {
    display: flex;
    gap: 13px;

    margin-top: 35px;
}


.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 21px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}


.primary-button {
    color: white;

    background: var(--gradient);

    box-shadow:
        0 0 30px rgba(48, 73, 255, 0.28);
}


.primary-button:hover {
    transform: translateY(-2px);
}


.secondary-button {
    color: #d8deff;

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.025);
}


.secondary-button:hover {
    border-color: rgba(0, 201, 255, 0.4);
}


.hero-stats {
    display: flex;

    margin-top: 55px;
}


.stat {
    min-width: 130px;

    padding-right: 30px;
    margin-right: 30px;

    border-right: 1px solid rgba(255,255,255,0.08);
}


.stat:last-child {
    border: none;
}


.stat strong {
    display: block;

    font-size: 23px;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.stat span {
    display: block;

    margin-top: 5px;

    color: #69738f;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: absolute;

    right: 4%;
    top: 50%;

    width: 470px;
    height: 470px;

    transform: translateY(-50%);
}


.exchange-icon {
    position: absolute;

    inset: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 10px;

    filter:
        drop-shadow(0 0 20px rgba(0, 170, 255, 0.4))
        drop-shadow(0 0 35px rgba(125, 30, 255, 0.25));
}


.exchange-arrow {
    width: 280px;
    height: 80px;

    display: flex;
    align-items: center;

    font-size: 75px;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.arrow-top {
    align-self: flex-end;
}


.arrow-bottom {
    align-self: flex-start;
}


.exchange-arrow i {
    filter:
        drop-shadow(0 0 9px rgba(0, 194, 255, 0.6));
}


.exchange-orbit {
    position: absolute;

    border: 1px solid rgba(0, 174, 255, 0.12);

    border-radius: 50%;

    transform: rotate(-25deg);
}


.orbit-one {
    width: 420px;
    height: 220px;

    top: 120px;
    left: 30px;
}


.orbit-two {
    width: 350px;
    height: 180px;

    top: 145px;
    left: 60px;

    border-color: rgba(173, 43, 255, 0.13);
}


.hero-background-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.glow-one {
    width: 400px;
    height: 400px;

    right: 12%;
    top: 20%;

    background: rgba(24, 83, 255, 0.12);
}


.glow-two {
    width: 300px;
    height: 300px;

    right: 25%;
    bottom: 5%;

    background: rgba(193, 24, 255, 0.09);
}


/* =========================
   MARKETS
========================= */

.markets-section {
    position: relative;

    padding: 110px 9%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 13, 32, 0.8)
        );
}


.section-heading {
    max-width: 620px;

    margin-bottom: 45px;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #4fbaff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2,
.about-content h2 {
    margin-top: 13px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: white;
}


.section-heading p,
.about-content p {
    margin-top: 17px;

    color: #79839f;

    line-height: 1.7;
}


.market-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.market-card {
    display: flex;
    align-items: center;

    gap: 17px;

    padding: 24px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--bg-card);

    backdrop-filter: blur(15px);
}


.market-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 183, 255, 0.15),
            rgba(130, 35, 255, 0.15)
        );

    color: #55c9ff;
}


.market-info {
    flex: 1;
}


.market-info span {
    display: block;

    color: #78829f;

    font-size: 10px;

    letter-spacing: 1px;
}


.market-info strong {
    display: block;

    margin-top: 5px;

    color: white;

    font-size: 19px;
}


.market-status {
    color: #68738f;
}


/* =========================
   ABOUT
========================= */

.about-section {
    padding: 130px 9%;
}


.about-content {
    max-width: 720px;
}


.about-content h2 span {
    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 28px;

    color: #62caff;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 55px 9% 25px;

    border-top: 1px solid rgba(255,255,255,0.06);

    background: #01030a;

    text-align: center;
}


.footer-brand {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}


.footer-brand strong {
    font-size: 27px;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.footer-brand span {
    color: #9aa4bf;

    font-size: 11px;

    letter-spacing: 4px;
}


.footer p {
    margin-top: 10px;

    color: #59637e;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;
}


.footer-links {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 25px;
}


.footer-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    color: #9ba5c3;

    text-decoration: none;

    transition: 0.25s;
}


.footer-links a:hover {
    color: white;

    border-color: #377fff;

    box-shadow:
        0 0 18px rgba(44, 94, 255, 0.25);
}


.footer-bottom {
    margin-top: 35px;

    color: #414a63;

    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .navigation {
        display: none;
    }

    .hero-visual {
        opacity: 0.25;
        right: -100px;
    }

}


@media (max-width: 700px) {

    .navbar {
        padding: 0 5%;
    }

    .login-button {
        display: none;
    }

    .hero {
        padding: 70px 7%;

        min-height: 700px;
    }

    .hero h1 {
        font-size: 62px;

        letter-spacing: -4px;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        margin-right: 0;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   NEW: HERO BG IMAGE & ICONS
========================= */

.hero-bg-image {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            100deg,
            rgba(2, 4, 13, 0.96) 30%,
            rgba(2, 4, 13, 0.75) 60%,
            rgba(2, 4, 13, 0.45) 100%
        ),
        url("../images/euro.jpeg") center / cover no-repeat;
}


.hero-icon-img {
    max-width: 260px;
    max-height: 260px;

    filter:
        drop-shadow(0 0 25px rgba(0, 170, 255, 0.5))
        drop-shadow(0 0 45px rgba(125, 30, 255, 0.3));
}


.brand-symbol img {
    width: 100%;
    height: 100%;

    border-radius: 11px;

    object-fit: cover;
}


.market-icon-img img {
    width: 100%;
    height: 100%;

    border-radius: 10px;

    object-fit: cover;
}


.gradient-text {
    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.grid-two {
    grid-template-columns: repeat(2, 1fr);

    margin-top: 18px;
}


.payout-heading {
    margin-top: 55px;
    margin-bottom: 25px;
}


.rates-section {
    padding-top: 60px;
}


.footer-icon {
    width: 32px;
    height: 32px;

    border-radius: 8px;

    object-fit: cover;
}


/* =========================
   SELL PAYPAL PAGE
========================= */

.sell-hero {
    position: relative;

    padding: 70px 9% 90px;

    overflow: hidden;
}


.sell-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            100deg,
            rgba(2, 4, 13, 0.97) 40%,
            rgba(2, 4, 13, 0.85) 70%,
            rgba(2, 4, 13, 0.65) 100%
        ),
        url("../images/paypal_predio.jpg") center / cover no-repeat;
}


.sell-container {
    position: relative;
    z-index: 5;

    max-width: 780px;

    margin: 0 auto;
}


.sell-header {
    max-width: 680px;
}


.sell-header h1 {
    margin-top: 16px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    font-weight: 950;

    letter-spacing: -3px;

    color: white;
}


.sell-header p {
    margin-top: 18px;

    color: #909ab9;

    line-height: 1.7;
}


/* Tabs */

.currency-tabs {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin: 35px 0 25px;
}


.currency-tab {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border: 1px solid var(--border);
    border-radius: 8px;

    color: #9ba5c5;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    background: rgba(255,255,255,0.025);

    transition: 0.25s ease;
}


.currency-tab:hover {
    color: white;
    border-color: rgba(0, 201, 255, 0.4);
}


.currency-tab.active {
    color: white;

    border-color: transparent;

    background: var(--gradient);

    box-shadow: 0 0 22px rgba(70, 75, 255, 0.25);
}


/* Card */

.sell-card {
    padding: 32px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--bg-card);

    backdrop-filter: blur(18px);
}


.sell-field {
    margin-bottom: 26px;
}


.sell-field label {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: #c6cdf0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.sell-field input {
    width: 100%;

    padding: 15px 18px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: rgba(2, 6, 20, 0.75);

    color: white;

    font-size: 17px;

    outline: none;

    transition: 0.25s;
}


.sell-field input:focus {
    border-color: rgba(0, 194, 255, 0.55);

    box-shadow: 0 0 20px rgba(0, 140, 255, 0.15);
}


.field-hint {
    display: block;

    margin-top: 8px;

    color: #69738f;

    font-size: 11px;
}


/* Quote */

.quote-box {
    padding: 20px;

    margin-bottom: 28px;

    border: 1px solid rgba(0, 194, 255, 0.2);

    border-radius: 12px;

    background: rgba(0, 100, 190, 0.07);
}


.quote-row {
    display: flex;
    justify-content: space-between;

    padding: 6px 0;

    color: #8993b4;

    font-size: 13px;
}


.quote-row strong {
    color: #c6cdf0;

    font-size: 14px;
}


.quote-total {
    margin-top: 10px;
    padding-top: 14px;

    border-top: 1px solid rgba(255,255,255,0.09);
}


.quote-total span {
    color: white;

    font-weight: 800;
}


.quote-total strong {
    font-size: 24px;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* Methods */

.method-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.method-button {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: rgba(2, 6, 20, 0.6);

    color: #c6cdf0;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.25s ease;
}


.method-button img {
    width: 52px;
    height: 52px;

    border-radius: 10px;

    object-fit: contain;
}


.method-button:hover {
    border-color: rgba(0, 201, 255, 0.45);
}


.method-button.selected {
    border-color: #00c2ff;

    box-shadow: 0 0 22px rgba(0, 150, 255, 0.25);

    color: white;
}


.method-check {
    position: absolute;

    top: 10px;
    right: 12px;

    font-size: 15px;

    color: transparent;
}


.method-button.selected .method-check {
    color: #00d9ff;
}


/* Phone */

.phone-input {
    display: flex;

    align-items: stretch;
}


.phone-prefix {
    display: flex;
    align-items: center;

    padding: 0 16px;

    border: 1px solid var(--border);
    border-right: none;

    border-radius: 10px 0 0 10px;

    background: rgba(0, 130, 255, 0.1);

    color: #79cfff;

    font-weight: 800;
}


.phone-input input {
    border-radius: 0 10px 10px 0;
}


.sell-card #paypal-button-container {
    margin-top: 8px;
}


.sell-page .sell-card .sell-field:last-of-type {
    margin-bottom: 18px;
}


@media (max-width: 700px) {

    .sell-hero {
        padding: 50px 6% 60px;
    }

    .sell-card {
        padding: 22px 18px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

}


/* Confirm button */

.confirm-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 17px;

    border: none;

    border-radius: 10px;

    background: var(--gradient);

    box-shadow:
        0 0 30px rgba(48, 73, 255, 0.3);

    color: white;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.25s ease;
}


.confirm-button:hover {
    transform: translateY(-2px);
}


.confirm-button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


.sell-card .confirm-button {
    margin-top: 6px;
    margin-bottom: 16px;
}

/* =========================
   ADMIN PANEL
========================= */

.admin-hero {
    position: relative;
    padding: 90px 9%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.admin-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 38px 32px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    text-align: center;
}


.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 30px;
    background: rgba(0, 130, 255, 0.07);
    color: #79cfff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.admin-card h1 {
    margin-top: 16px;
    color: white;
    font-size: 32px;
    letter-spacing: -2px;
}


.admin-card p {
    margin-top: 10px;
    color: #8993b4;
    font-size: 14px;
}


.admin-form {
    margin-top: 25px;
    text-align: left;
}


.admin-form label {
    display: block;
    margin: 16px 0 8px;
    color: #c6cdf0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.admin-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(2, 6, 20, 0.75);
    color: white;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
}


.admin-form input:focus {
    border-color: rgba(0, 194, 255, 0.55);
}


.admin-form .confirm-button {
    margin-top: 24px;
}


.admin-alert {
    margin-top: 18px;
    padding: 12px;
    border: 1px solid rgba(229, 44, 255, 0.3);
    border-radius: 10px;
    background: rgba(229, 44, 255, 0.07);
    color: #ff8ff5;
    font-size: 13px;
}


.code-input {
    margin-top: 25px;
    text-align: center;
    font-size: 26px !important;
    font-weight: 800;
    letter-spacing: 10px;
}


/* Dashboard */

.admin-dash {
    padding: 60px 5%;
    min-height: 100vh;
}


.admin-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}


.admin-dash-header h1 {
    margin-top: 10px;
    color: white;
    font-size: 42px;
    letter-spacing: -2px;
}


.logout-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid rgba(229, 44, 255, 0.3);
    border-radius: 8px;
    color: #ff8ff5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s;
}


.logout-button:hover {
    background: rgba(229, 44, 255, 0.1);
}


.admin-stats {
    margin-bottom: 40px;
}


.admin-table-wrap {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    overflow-x: auto;
}


.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 950px;
}


.admin-table th {
    padding: 16px 14px;
    text-align: left;
    color: #69738f;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.admin-table td {
    padding: 15px 14px;
    color: #c6cdf0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


.admin-table tr:hover td {
    background: rgba(0, 100, 190, 0.05);
}


.admin-table .mono {
    color: #79cfff;
    font-family: monospace;
    font-size: 12px;
}


.empty-row {
    text-align: center;
    color: #69738f !important;
    padding: 40px !important;
}


.status-pill,
.status-pill {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


.status-pending { background: rgba(229,180,0,0.15); color: #ffcf40; border: 1px solid rgba(255,207,64,0.3); }
.status-paid { background: rgba(0,194,255,0.12); color: #00d9ff; border: 1px solid rgba(0,217,255,0.3); }
.status-completed { background: rgba(0,230,120,0.12); color: #00e678; border: 1px solid rgba(0,230,120,0.3); }
.status-failed, .status-cancelled { background: rgba(229,44,255,0.12); color: #e52cff; border: 1px solid rgba(229,44,255,0.3); }


.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border: none;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s;
}


.action-btn.approve {
    background: var(--gradient);
    color: white;
    box-shadow: 0 0 16px rgba(0, 120, 255, 0.25);
}


.action-btn.reject {
    border: 1px solid rgba(229, 44, 255, 0.35);
    background: transparent;
    color: #e52cff;
}


.action-btn.revert {
    border: 1px solid rgba(255, 207, 64, 0.35);
    background: transparent;
    color: #ffcf40;
}


.text-muted { color: #69738f; }

/* =========================
   STATIC PAGES (rates/policies/support)
========================= */

.active-link {
    color: white !important;
}


.page-hero {
    position: relative;
    padding: 90px 9% 70px;
    overflow: hidden;
}


.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(30, 70, 255, 0.16), transparent 35%),
        radial-gradient(circle at 15% 60%, rgba(0, 183, 255, 0.08), transparent 30%),
        var(--bg-main);
}


.page-container {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto;
}


.page-hero h1 {
    margin-top: 16px;
    color: white;
    font-size: clamp(40px, 5.5vw, 68px);
    letter-spacing: -3px;
    line-height: 1;
    font-weight: 950;
}


.page-hero p {
    margin-top: 18px;
    max-width: 620px;
    color: #909ab9;
    line-height: 1.7;
}


.page-section {
    padding: 80px 9%;
}


.page-section-alt {
    background: linear-gradient(180deg, transparent, rgba(7, 13, 32, 0.8));
}


.grid-three {
    grid-template-columns: repeat(3, 1fr);
}


/* Steps */

.step-card {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
}


.step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 40px;
    font-weight: 950;
    letter-spacing: -2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.55;
}


.step-text {
    margin-top: 14px;
    color: #79839f;
    font-size: 13px;
    line-height: 1.65;
}


/* Rate tables */

.rate-table-block {
    margin-bottom: 50px;
}


.rate-table-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}


.rate-table-head h3 {
    color: white;
    font-size: 22px;
    letter-spacing: -1px;
    margin-top: 4px;
}


.rate-source {
    color: #4fbaff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.rate-value {
    color: #00d9ff;
}


.rate-note {
    margin-top: 14px;
    color: #69738f;
    font-size: 12px;
}


.rate-note i {
    color: #4fbaff;
    margin-right: 6px;
}


.fee-card strong {
    font-size: 16px;
}


/* CTA box */

.cta-box {
    margin-top: 55px;
    padding: 45px 35px;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 16px;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 130, 255, 0.12), transparent 50%),
        var(--bg-card);
    backdrop-filter: blur(15px);
    text-align: center;
}


.cta-box h3 {
    color: white;
    font-size: 30px;
    letter-spacing: -1px;
}


.cta-box p {
    margin-top: 10px;
    color: #8993b4;
}


.cta-box .primary-button {
    margin-top: 22px;
}


/* Policies */

.policy-block {
    padding: 28px 30px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
}


.policy-head {
    display: flex;
    align-items: center;
    gap: 14px;
}


.policy-head h3 {
    color: white;
    font-size: 19px;
    letter-spacing: -0.5px;
}


.policy-block p {
    margin-top: 14px;
    color: #8993b4;
    line-height: 1.75;
    font-size: 14px;
}


.policy-block strong {
    color: #d8deff;
}


.inline-link {
    color: #62caff;
    text-decoration: none;
    font-weight: 700;
}


.inline-link:hover {
    text-decoration: underline;
}


/* Support */

.support-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 32px;
}


.support-detail {
    color: #d8deff !important;
    font-size: 19px !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}


.support-btn {
    margin-top: 6px;
}


.support-btn-alt {
    background: transparent;
    border: 1px solid rgba(0, 194, 255, 0.4);
    box-shadow: 0 0 22px rgba(0, 150, 255, 0.15);
}


.faq-heading {
    margin-top: 70px;
}


.faq-block {
    padding: 24px 28px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
}


.faq-block h3 {
    color: white;
    font-size: 17px;
}


.faq-block h3 i {
    color: #4fbaff;
    margin-right: 8px;
}


.faq-block p {
    margin-top: 10px;
    color: #8993b4;
    line-height: 1.7;
    font-size: 14px;
}


@media (max-width: 700px) {
    .grid-three {
        grid-template-columns: 1fr;
    }
}
