/* ==========================================================================
   Cryptonium — Purple / Blue Gradient Theme
   ========================================================================== */

:root {
    --heading-font: "Rajdhani", sans-serif;
    --body-font: "Roboto", sans-serif;
    --base-h: 258;
    --base-s: 97%;
    --base-l: 35%;
    --base-two-h: 245;
    --base-two-s: 82%;
    --base-two-l: 67%;
    --body-background: 242 63% 12%;
    --section-bg: 240 55% 17%;
    --base-gradient: linear-gradient(90deg, #1E24BF 36.85%, #804cf9 60.47%);
    --banner-gradient: linear-gradient(180deg, #020125 0%, #13265E 45%, #5712CB 100%);
    --profit-gradient: linear-gradient(180deg, #1E296D -23.97%, #5712CB 92.31%);
    --bg-dark: hsl(var(--body-background));
    --bg-black: #0a0830;
    --bg-card: hsl(var(--section-bg));
    --bg-inner: #141443;
    --primary: #1E24BF;
    --primary-light: #804cf9;
    --accent: #804cf9;
    --gold: #804cf9;
    --gold-hover: #6b3de0;
    --gradient: var(--base-gradient);
    --gradient-accent: linear-gradient(135deg, #1E24BF 0%, #804cf9 100%);
    --text-dark: #ffffff;
    --text-gray: #c7c7c7;
    --text-muted: hsl(0 0% 100% / 0.8);
    --white: #ffffff;
    --light-bg: hsl(var(--section-bg));
    --light-purple: hsl(var(--section-bg));
    --border: hsl(0 0% 100% / 0.09);
    --border-gold: hsl(var(--base-two-h) var(--base-two-s) var(--base-two-l));
    --border-light: hsl(0 0% 100% / 0.09);
    --header-height: 80px;
    --container-width: 1360px;
    --radius-sm: 4px;
    --radius-md: 5px;
    --radius-lg: 10px;
    --shadow-sm: 0 2px 15px rgba(30, 36, 191, 0.12);
    --shadow-md: 0 5px 20px rgba(30, 36, 191, 0.25);
    --shadow-lg: 0 8px 30px rgba(128, 76, 249, 0.3);
    --transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--bg-dark);
    padding-bottom: 125px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition), opacity var(--transition);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

p {
    font-family: var(--body-font);
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn-outline {
    color: var(--white);
    border: 1px solid transparent;
    background: var(--base-gradient);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--bg-inner);
    border-radius: calc(var(--radius-sm) - 2px);
    z-index: -1;
    transition: background var(--transition);
}

.btn-outline:hover::after {
    background: transparent;
}

.btn-outline:hover {
    color: var(--white);
}

.btn-primary {
    color: var(--white);
    background: var(--base-gradient);
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gradient {
    color: var(--white);
    background: var(--base-gradient);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    transition: opacity var(--transition);
}

.btn-play:hover {
    opacity: 0.85;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: all var(--transition);
}

.btn-play:hover .play-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--base-gradient);
    border: none;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--gold);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu li a {
    display: block;
    padding: 8px 16px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition);
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: transparent;
    border-radius: 2px;
    transition: background var(--transition);
}

.menu li a:hover {
    color: var(--gold);
}

.menu li a:hover::after {
    background: var(--gold);
}

.menu li a.nav-active {
    color: var(--white);
    font-weight: 600;
}

.menu li a.nav-active::after {
    background: var(--gold);
}

.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
}

.toggle-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.toggle-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.toggle-button.active span:nth-child(2) {
    opacity: 0;
}

.toggle-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .btn {
    padding: 10px 22px;
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   Hero Banner
   -------------------------------------------------------------------------- */

.hero-banner {
    padding: calc(var(--header-height) + 80px) 0 100px;
    background: var(--banner-gradient);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    display: none;
}

.banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.banner-content h1 .highlight {
    background: linear-gradient(90deg, #1E34DD, #c4a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.banner-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-visual {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid hsl(var(--base-h) var(--base-s) var(--base-l) / 0.4);
    animation: pulse-ring 3s ease-out infinite;
}

.coin-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.coin-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    animation-delay: 1s;
    border-color: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.55);
}

.coin-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-delay: 2s;
    border-color: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.7);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.85);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.coin-center {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--base-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsl(var(--base-h) var(--base-s) var(--base-l) / 0.45);
    border: 3px solid hsl(var(--base-h) var(--base-s) var(--base-l) / 0.5);
}

.coin-center .symbol {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.coin-center .ticker {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */

.page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--banner-gradient);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    display: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    color: var(--gold);
}

.page-hero .section-title {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero .section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
    padding: 90px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-card);
}

.section-label {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.section-subtitle {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 40px;
}

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

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

/* --------------------------------------------------------------------------
   Home Cards (Index Preview)
   -------------------------------------------------------------------------- */

.home-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.home-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.home-card::before {
    display: none;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.4);
}

.home-card .card-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.home-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.home-card p {
    font-size: 15px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.home-card .btn {
    align-self: flex-start;
    padding: 10px 22px;
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-card {
    background: var(--base-gradient);
    border: none;
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.about-card .section-label {
    color: var(--gold);
}

.about-card .section-title {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
}

.about-card .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 16px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.crypto-stats-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.stat-mini .value {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-mini .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content .section-desc {
    margin: 0 0 16px;
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   Vision & Mission
   -------------------------------------------------------------------------- */

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.vm-card:hover {
    box-shadow: var(--shadow-md);
    border-color: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.35);
}

.vm-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gold);
}

.vm-card p {
    font-size: 15px;
    margin-bottom: 12px;
}

.vm-list {
    margin-top: 16px;
}

.vm-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.vm-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
    top: 4px;
}

.vm-list li strong {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Token
   -------------------------------------------------------------------------- */

.token-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.token-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.token-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.token-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.token-card p {
    font-size: 14px;
}

.tokenomics {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.tokenomics h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 28px;
    color: var(--gold);
}

.tokenomics-bar {
    display: flex;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 28px;
}

.bar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.bar-segment:nth-child(1) {
    flex: 40;
    background: #1E24BF;
}

.bar-segment:nth-child(2) {
    flex: 25;
    background: #5712CB;
}

.bar-segment:nth-child(3) {
    flex: 20;
    background: #804cf9;
}

.bar-segment:nth-child(4) {
    flex: 15;
    background: #c6beff;
    color: #0a0830;
}

.tokenomics-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services-intro {
    text-align: center;
    margin-bottom: 30px;
}

.services-intro .section-desc {
    margin-bottom: 0;
}

.services-formulas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.formula-tag {
    display: inline-block;
    padding: 8px 18px;
    background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.14);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-icon.purple {
    background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.15);
    color: var(--gold);
}

.service-icon.blue {
    background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.1);
    color: var(--gold);
}

.service-icon.green {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Forex
   -------------------------------------------------------------------------- */

.forex-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 50px;
}

.forex-highlight {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.forex-highlight:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.forex-highlight-value {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.forex-highlight-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forex-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.forex-intro-content p {
    font-size: 15px;
    margin-bottom: 12px;
}

.forex-benefits-list {
    margin-top: 20px;
}

.forex-benefits-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.forex-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.forex-benefits-list li strong {
    color: var(--white);
}

.forex-pairs-panel {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 32px;
    color: var(--white);
}

.forex-pairs-panel h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forex-pairs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.forex-pair-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.forex-pair-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.5);
}

.pair-name {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.pair-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pair-tag.major {
    background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.2);
    color: var(--gold);
    border: 1px solid var(--border);
}

.pair-tag.minor {
    background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.15);
    color: var(--gold);
    border: 1px solid hsl(var(--base-h) var(--base-s) var(--base-l) / 0.35);
}

.pair-tag.exotic {
    background: rgba(128, 76, 249, 0.2);
    color: #c4a0ff;
    border: 1px solid rgba(128, 76, 249, 0.4);
}

.pair-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.forex-pairs-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
    font-style: italic;
}

.forex-services-heading {
    text-align: center;
    margin-bottom: 36px;
}

.forex-services-grid {
    margin-bottom: 50px;
}

.forex-sessions {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.forex-sessions h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 28px;
    color: var(--gold);
}

.forex-sessions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.forex-session-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.forex-session-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.session-name {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.session-time {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.session-pairs {
    font-size: 13px;
    color: var(--text-gray);
}

.forex-sessions-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 20px;
    font-style: italic;
}

.forex-steps {
    text-align: center;
}

.forex-steps h3 {
    font-size: 24px;
    margin-bottom: 36px;
    color: var(--white);
}

.forex-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.forex-step {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.forex-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--base-gradient);
    border: none;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.forex-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.forex-step p {
    font-size: 14px;
}

.forex-cta {
    margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

#stats {
    background: var(--profit-gradient);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-item .counter {
    display: inline;
}

.stat-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    background: transparent;
    transition: color var(--transition), background var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--white);
    background: var(--base-gradient);
}

.faq-question .arrow {
    font-size: 12px;
    color: var(--gold);
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 70px 0 0;
    color: var(--text-gray);
    position: relative;
}

.site-footer::before {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 280px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--base-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   FX Ticker Widget
   -------------------------------------------------------------------------- */

.fx-ticker-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: hsl(var(--body-background));
    border-top: 1px solid var(--border);
}

.fx-ticker-widget iframe {
    display: block;
    width: 100%;
}

#fx-pricing-widget-copyright {
    text-align: center;
    font-size: 12px;
    padding: 6px 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

#fx-pricing-widget-copyright a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

#fx-pricing-widget-copyright a:hover {
    color: var(--gold-hover);
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (max 991px)
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .banner-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .coin-visual {
        width: 260px;
        height: 260px;
    }

    .coin-center {
        width: 130px;
        height: 130px;
    }

    .coin-center .symbol {
        font-size: 42px;
    }

    .page-hero .section-title {
        font-size: 34px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .home-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .forex-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .forex-intro-grid {
        grid-template-columns: 1fr;
    }

    .forex-sessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .forex-steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .toggle-button {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-card);
        padding: 16px 20px 24px;
        gap: 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu.open {
        display: flex;
    }

    .main-navigation {
        position: relative;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .menu li a::after {
        display: none;
    }

    .menu li a.nav-active {
        background: hsl(var(--base-h) var(--base-s) var(--base-l) / 0.15);
        border-left: 3px solid var(--gold);
    }

    .header-actions {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (max 575px)
   -------------------------------------------------------------------------- */

@media (max-width: 575px) {
    :root {
        --header-height: 68px;
    }

    .header-box {
        height: var(--header-height);
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero-banner {
        padding: calc(var(--header-height) + 50px) 0 70px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-actions .btn {
        width: 100%;
        text-align: center;
    }

    .btn-play {
        justify-content: center;
    }

    .coin-visual {
        width: 220px;
        height: 220px;
    }

    .coin-center {
        width: 110px;
        height: 110px;
    }

    .coin-center .symbol {
        font-size: 36px;
    }

    .coin-center .ticker {
        font-size: 13px;
    }

    .page-hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .page-hero .section-title {
        font-size: 26px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .about-card {
        padding: 28px 24px;
    }

    .crypto-stats-mini {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-mini .value {
        font-size: 18px;
    }

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

    .tokenomics {
        padding: 24px 20px;
    }

    .tokenomics-legend {
        grid-template-columns: 1fr;
    }

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

    .services-formulas {
        flex-direction: column;
        align-items: center;
    }

    .formula-tag {
        text-align: center;
        font-size: 12px;
    }

    .home-cards {
        grid-template-columns: 1fr;
    }

    .forex-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .forex-highlight {
        padding: 20px 14px;
    }

    .forex-highlight-value {
        font-size: 24px;
    }

    .forex-pairs-grid {
        grid-template-columns: 1fr;
    }

    .forex-pairs-panel {
        padding: 24px 20px;
    }

    .forex-sessions {
        padding: 28px 20px;
    }

    .forex-sessions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vm-card {
        padding: 28px 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 14px;
    }
}

/* --------------------------------------------------------------------------
   Auth Pages (Login & Register)
   -------------------------------------------------------------------------- */

.auth-body {
    background: var(--bg-dark);
}

.auth-page {
    min-height: calc(100vh - var(--header-height));
    padding: calc(var(--header-height) + 40px) 0 80px;
    display: flex;
    align-items: center;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 640px;
}

.auth-panel-brand {
    position: relative;
    padding: 56px 48px;
    background: var(--banner-gradient);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-brand-content {
    position: relative;
    z-index: 2;
}

.auth-brand-content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.auth-brand-content > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 400px;
}

.auth-brand-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 76, 249, 0.45) 0%, transparent 70%);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--body-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.auth-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-size: 18px;
    flex-shrink: 0;
}

.auth-panel-form {
    padding: 48px 44px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

.auth-card-header {
    margin-bottom: 32px;
}

.auth-card-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.auth-card-header p {
    font-size: 15px;
    color: var(--text-gray);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--white);
    background: var(--bg-inner);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(128, 76, 249, 0.2);
}

.form-group input.input-error {
    border-color: #e74c6f;
    box-shadow: 0 0 0 3px rgba(231, 76, 111, 0.15);
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.5;
    transition: opacity var(--transition);
    padding: 4px;
}

.password-toggle:hover {
    opacity: 1;
}

.form-error {
    font-family: var(--body-font);
    font-size: 13px;
    color: #e74c6f;
    min-height: 18px;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 13px;
}

.form-hint {
    font-family: var(--body-font);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--bg-inner);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}

.form-checkbox input:checked + .checkbox-mark {
    background: var(--base-gradient);
    border-color: transparent;
}

.form-checkbox input:checked + .checkbox-mark::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--white);
    font-weight: 700;
}

.auth-link {
    color: var(--primary-light);
    font-weight: 500;
    transition: opacity var(--transition);
}

.auth-link:hover {
    opacity: 0.8;
    color: var(--primary-light);
}

.auth-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    margin-top: 4px;
}

.auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    text-align: center;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0 20px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-family: var(--body-font);
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--bg-inner);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), background var(--transition);
}

.auth-social-btn:hover {
    border-color: var(--primary-light);
    background: rgba(128, 76, 249, 0.1);
}

.auth-social-icon {
    font-size: 16px;
    font-weight: 700;
}

.password-strength {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    background: #e74c6f;
}

.password-strength.strength-fair .password-strength-bar {
    background: #f5a623;
}

.password-strength.strength-good .password-strength-bar {
    background: #4fc3f7;
}

.password-strength.strength-strong .password-strength-bar {
    background: #2ecc71;
}

.auth-success {
    padding: 14px 16px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.35);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 14px;
    color: #2ecc71;
    text-align: center;
}

@media (max-width: 991px) {
    .auth-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-panel-brand {
        padding: 40px 32px;
    }

    .auth-brand-content h1 {
        font-size: 30px;
    }

    .auth-panel-form {
        padding: 40px 32px;
    }
}

@media (max-width: 575px) {
    .auth-page {
        padding: calc(var(--header-height) + 24px) 0 60px;
    }

    .auth-layout {
        border-radius: var(--radius-md);
    }

    .auth-panel-brand {
        padding: 32px 24px;
    }

    .auth-panel-form {
        padding: 32px 24px;
    }

    .auth-card-header h2 {
        font-size: 26px;
    }

    .auth-social {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
