@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ========================
   DESIGN SYSTEM - VARIABLES
   ======================== */
:root {
    --bg-dark: #09090b;
    --bg-surface: #111113;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --bg-elevated: #1c1c1f;

    --primary: #D9A441;
    --primary-light: #F2C463;
    --primary-dark: #B8862D;
    --primary-gradient: linear-gradient(135deg, #D9A441 0%, #F2C463 50%, #D9A441 100%);
    --hero-gradient: linear-gradient(135deg, rgba(217, 164, 65, 0.08) 0%, transparent 50%);

    --text-main: #fafafa;
    --text-secondary: #d4d4d8;
    --text-muted: #71717a;
    --text-dark: #09090b;

    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-active: rgba(217, 164, 65, 0.3);

    --container: 1240px;
    --header-h: 72px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(217, 164, 65, 0.15);
    --shadow-glow-lg: 0 0 60px rgba(217, 164, 65, 0.2);

    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================
   CUSTOM SCROLLBAR — GOLD
   ======================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D9A441, #B8862D);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F2C463, #D9A441);
}

::-webkit-scrollbar-corner {
    background: var(--bg-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #D9A441 var(--bg-dark);
}

/* ========================
   RESET & BASE
   ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease);
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

/* ========================
   UTILITIES
   ======================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.text-muted {
    color: var(--text-muted);
}

.text-secondary {
    color: var(--text-secondary);
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-dark {
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(217, 164, 65, 0.1);
    border: 1px solid rgba(217, 164, 65, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 164, 65, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(217, 164, 65, 0.05);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* Glint Animation */
.btn-glint::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: glint 4s infinite;
}

@keyframes glint {
    0% {
        left: -100%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Pulse Animation */
.btn-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(217, 164, 65, 0.25);
    }

    50% {
        box-shadow: 0 4px 30px rgba(217, 164, 65, 0.5), 0 0 60px rgba(217, 164, 65, 0.15);
    }
}

/* ========================
   HEADER & NAVBAR
   ======================== */
/* Top Header Bar */
.header-top {
    background: #050507;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1002;
    display: block;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.ht-left,
.ht-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ht-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ht-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.ht-item span {
    font-weight: 600;
    color: var(--text-secondary);
}

.ht-item small {
    margin-left: 0.3rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 400;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 164, 65, 0.3);
    /* Gold Bottom Border */
    border-top: 1px solid rgba(217, 164, 65, 0.3);
    /* Gold Top Border */
    transition: all 0.4s var(--ease);
    padding: 0.5rem 0;
    overflow: visible;
    /* User dropdown'ın navbar altında kesilmesini engelle */
}

/* Top Shimmer Effect */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.8), transparent);
    /* Gold Shimmer */
    z-index: 1001;
    animation: shimmer-top 3s infinite linear;
}

@keyframes shimmer-top {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.6);
    /* More transparent when scrolled */
    border-bottom-color: rgba(217, 164, 65, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), 0 0 40px rgba(217, 164, 65, 0.05);
    padding: 0.4rem 0;
    backdrop-filter: blur(8px);
    /* Reduced blur for transparency feeling */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo span {
    color: var(--primary);
    margin-left: 2px;
}

/* Nav Menu - Pill Style */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    /* Reduced gap */
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem 0.3rem;
    /* Reduced padding */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    padding: 0.5rem 0.85rem;
    /* Reduced horizontal padding */
    font-size: 0.8rem;
    /* Reduced font size */
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.3);
}

.nav-link::after {
    display: none;
}

/* Nav Buttons */
/* Nav Right - Now a Pill Container like Nav Menu */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem 0.3rem;
    border-radius: 12px;
    /* Changed from 50px */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-login,
.btn-signup {
    padding: 0.5rem 0.9rem;
    /* Reduced padding */
    font-size: 0.8rem;
    /* Reduced font size */
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 12px;
    /* Changed from 50px */
    transition: all 0.3s var(--ease);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.btn-login:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    /* Remove transforming */
    border-color: transparent;
}

/* Signup behaves like Active Nav Link */
.btn-signup {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.3);
}

.btn-signup:hover {
    background: #F2C463;
    /* Keep solid */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 164, 65, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

/* ========================
   HERO
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
    /* Removed to clear background whiteness */
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideUp 0.8s var(--ease) both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 .line {
    display: block;
}

.hero-content .hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Hero Stats */
/* Hero Stats Cards */
.hero-stats-wrapper {
    margin-top: 3rem;
    width: 100%;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    /* Reduced from 1.5rem */
}

.stat-card {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 164, 65, 0.4);
    /* Gold Border */
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 164, 65, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.25rem;
    color: var(--primary);
    /* Gold */
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F2C463;
    /* Explicit Gold matching ref */
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Updated Stars Centering */
.hero-stat-stars.centered {
    justify-content: center;
    margin-top: 0.25rem;
    /* Reduced from 1rem */
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hero Platform Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s var(--ease) 0.2s both;
}

.hero-platform-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: hero-float 6s ease-in-out infinite;
    width: 100%;
    max-width: 1000px;
    /* Increased from 650px */
}

.hero-platform-img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 100px rgba(217, 164, 65, 0.12);
    /* Golden Glow */
    transform: rotateY(-8deg) rotateX(4deg);
    transition: all 0.5s ease;
}

.hero-platform-wrapper:hover .hero-platform-img {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(217, 164, 65, 0.3),
        0 0 120px rgba(217, 164, 65, 0.2);
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0) rotateY(-8deg) rotateX(4deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-8deg) rotateX(4deg);
    }
}

/* Floating Elements around platform */
.hero-floating-card {
    position: absolute;
    background: rgba(20, 20, 22, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 5;
    animation: float-card 5s ease-in-out infinite;
    transform: translateZ(30px);
}

.hero-floating-card i {
    font-size: 1.6rem;
}

.hero-floating-card div h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.hero-floating-card div p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.hero-floating-card .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-secure {
    top: 5%;
    right: -2%;
    border-color: rgba(34, 197, 94, 0.2);
    animation-delay: 0s;
}

.card-secure .icon-box {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.card-speed {
    bottom: 12%;
    left: -5%;
    border-color: rgba(217, 164, 65, 0.2);
    animation-delay: 2.5s;
}

.card-speed .icon-box {
    background: rgba(217, 164, 65, 0.15);
    color: var(--primary);
}

.card-support {
    top: 45%;
    right: -10%;
    border-color: rgba(59, 130, 246, 0.2);
    animation-delay: 1.2s;
}

.card-support .icon-box {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) translateZ(30px);
    }

    50% {
        transform: translateY(-15px) translateZ(30px);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-bg 5s ease-in-out infinite;
}

.ticker-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-bar>.container {
    max-width: none;
    padding: 0;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: ticker-scroll 35s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-item .symbol {
    color: var(--text-main);
    font-weight: 700;
}

.ticker-item .price {
    color: var(--text-secondary);
}

.ticker-item .change {
    font-weight: 600;
    font-size: 0.85rem;
}

.positive {
    color: var(--accent-green);
}

.negative {
    color: var(--accent-red);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================
   FEATURE CARDS
   ======================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 164, 65, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================
   MARKETS TABLE
   ======================== */
.trading-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trading-table {
    width: 100%;
    border-collapse: collapse;
}

.trading-table thead {
    background: rgba(255, 255, 255, 0.02);
}

.trading-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.trading-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    font-variant-numeric: tabular-nums;
}

.trading-table tbody tr {
    transition: background 0.2s var(--ease);
}

.trading-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.trading-table tbody tr:last-child td {
    border-bottom: none;
}

.instrument {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instrument-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

/* ========================
   STEPS (How It Works)
   ======================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-hover), var(--primary), var(--border-hover), transparent);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px solid var(--border-hover);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.3s var(--ease);
}

.step-card:hover .step-number {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================
   ACCOUNT TYPES
   ======================== */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.account-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    z-index: 2;
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.05) 0%, var(--bg-card) 30%);
}

.account-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--text-dark);
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.account-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.account-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.account-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.account-features {
    text-align: left;
    margin: 2rem 0;
}

.account-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.account-features li:last-child {
    border-bottom: none;
}

.account-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 16px;
}

/* Account Tier Label */
.acct-tier-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.acct-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Spread Box */
.acct-spread-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md, 10px);
    margin-bottom: 1.25rem;
    text-align: left;
}

.asb-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(217, 164, 65, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.asb-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.asb-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Islamic Card */
.account-card.islamic-card {
    border-color: rgba(34, 197, 94, 0.3);
}

.account-card.islamic-card:hover {
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.5);
}

.account-badge.islamic-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* ========================
   APP SECTION
   ======================== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ========================
   FLOATING CTA BUTTON
   ======================== */
.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: #F2C463;
    /* Solid Gold Base */
    background: linear-gradient(135deg, #F2C463 0%, #D9A441 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0 20px rgba(242, 196, 99, 0.4);
    transition: transform 0.3s ease;
    animation: float-pulse 2s infinite;
}

.floating-cta-btn i {
    font-size: 1.1rem;
}

.floating-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(242, 196, 99, 0.6);
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 20px rgba(242, 196, 99, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(242, 196, 99, 0.7);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(242, 196, 99, 0.4);
        transform: scale(1);
    }
}

/* Hide on mobile if simpler view preferred, or keep small */
@media (max-width: 768px) {
    .floating-cta-btn {
        bottom: 20px;
        left: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.app-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.app-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-visual img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* ========================
   AWARDS
   ======================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.award-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.award-card:hover {
    border-color: var(--border-active);
    transform: translateY(-3px);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.award-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.08) 0%, rgba(217, 164, 65, 0.02) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-grid h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stats-grid p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}

.footer h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s var(--ease);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(217, 164, 65, 0.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom .risk-warning {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================
   PAGE HEADER (Subpages)
   ======================== */
.page-header {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 164, 65, 0.06) 0%, transparent 60%);
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================
   TABS SYSTEM
   ======================== */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.25);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s var(--ease);
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   RESPONSIVE
   ======================== */
#mobile-navbar {
    display: none;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1366px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.95);
        /* Deep dark background */
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);

        border-left: none;
        box-shadow: none;
        background: transparent;
        display: none !important;
    }

    /* NEW PREMIUM MOBILE WINDOW MENU */
    #mobile-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 5, 7, 0.98);
        background: radial-gradient(circle at top right, #1a1a1e 0%, #050507 100%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: scale(0.95);
        padding: 90px 25px 40px;
        overflow-y: auto;
    }

    #mobile-navbar.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: scale(1);
    }

    /* Grid Layout */
    .mobile-grid-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 1.25rem 0.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Shimmer Effect on Item */
    .mobile-nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transition: left 0.5s;
        z-index: 1;
    }

    .mobile-nav-item:hover::before {
        left: 100%;
    }

    .mobile-nav-item i {
        font-size: 1.5rem;
        color: var(--primary);
        opacity: 0.6;
        margin-bottom: 5px;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .mobile-nav-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(217, 164, 65, 0.4);
        transform: translateY(-4px);
        color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-item:hover i {
        transform: scale(1.15);
        opacity: 1;
        text-shadow: 0 0 15px rgba(217, 164, 65, 0.8);
        color: #fff;
    }

    /* Active State (Gold Glow) */
    .mobile-nav-item.active {
        background: linear-gradient(135deg, rgba(217, 164, 65, 0.1), rgba(217, 164, 65, 0.05));
        border: 1px solid rgba(217, 164, 65, 0.5);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 0 20px rgba(217, 164, 65, 0.15);
    }

    .mobile-nav-item.active i {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.6));
        color: var(--primary);
        transform: scale(1.1);
    }

    /* Stagger Animation for Grid Items */
    #mobile-navbar.active .mobile-nav-item {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(7) {
        animation-delay: 0.4s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(8) {
        animation-delay: 0.45s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(9) {
        animation-delay: 0.5s;
    }

    #mobile-navbar.active .mobile-nav-item:nth-child(10) {
        animation-delay: 0.55s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Bottom Actions */
    .mobile-bottom-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .btn-mobile-login,
    .btn-mobile-signup {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 1rem;
        border-radius: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        overflow: hidden;
    }

    /* PREMIUM LOGIN BUTTON (Glass & Glint) */
    .btn-mobile-login {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .btn-mobile-login::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .btn-mobile-login:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-mobile-login:hover::before {
        left: 100%;
    }

    /* PREMIUM SIGNUP BUTTON (Gradient & Pulse) */
    .btn-mobile-signup {
        background: var(--primary-gradient);
        color: #000;
        border: 1px solid rgba(255, 215, 0, 0.3);
        box-shadow: 0 4px 15px rgba(217, 164, 65, 0.3);
        z-index: 1;
    }

    .btn-mobile-signup::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
        transform: translateX(-100%);
        transition: transform 0.6s;
        z-index: -1;
    }

    .btn-mobile-signup:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 30px rgba(217, 164, 65, 0.6);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .btn-mobile-signup:hover::before {
        transform: translateX(100%);
    }

    /* Animated Icon for Signup */
    .btn-mobile-signup i {
        animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }


    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* Staggered Animation for Links */
    .nav-menu.active .nav-link {
        animation: slideInRight 0.5s ease forwards;
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-menu.active .nav-link:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav-menu.active .nav-link:nth-child(7) {
        animation-delay: 0.4s;
    }

    .nav-menu.active .nav-link:nth-child(8) {
        animation-delay: 0.45s;
    }

    .nav-menu.active .nav-link:nth-child(9) {
        animation-delay: 0.5s;
    }

    .nav-menu.active .nav-link:nth-child(10) {
        animation-delay: 0.55s;
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }



    .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.75rem;
        /* Larger, bolder typography */
        font-weight: 700;
        width: auto;
        text-align: center;
        padding: 0.5rem 1rem;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        overflow: hidden;
        background: transparent !important;
        /* Reset desktop pill */
        border-radius: 0;
        box-shadow: none !important;
    }

    .nav-menu .nav-link:after {
        display: none;
        /* Remove desktop underline */
    }

    .nav-link:hover,
    .nav-link.active {
        color: #fff;
        text-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
    }

    /* Mobile specific active indicator */
    .nav-link.active::before {
        content: '●';
        font-size: 0.6rem;
        color: var(--primary);
        position: absolute;
        left: -1rem;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: #fff;
        z-index: 1002;
        /* Ensure above menu overlay */
        position: relative;
        transition: transform 0.3s ease;
    }

    .nav-menu.active~.nav-right .menu-toggle i::before {
        content: "\f00d";
        /* Change to X icon when open (FontAwesome code for cross) */
    }

    /* Mobile Signup Button */
    .mobile-signup-btn {
        margin-top: 1.5rem;
        background: var(--primary-gradient);
        color: #000;
        font-weight: 700;
        padding: 1rem 3rem;
        border-radius: 50px;
        font-size: 1.1rem;
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(217, 164, 65, 0.25);
        opacity: 0;
        /* Starts hidden for animation */
        animation: slideInRight 0.5s ease forwards;
        animation-delay: 0.6s;
        display: inline-block;
    }

    /* Mobile Header Button Fixes */
    .nav-right {
        gap: 0.5rem;
        /* Reduce gap */
    }

    .btn-login,
    .btn-signup {
        padding: 0.35rem 0.85rem !important;
        /* Smaller padding */
        font-size: 0.7rem !important;
        /* Smaller text */
        width: auto !important;
        /* Prevent full width */
        white-space: nowrap;
    }

    .menu-toggle {
        font-size: 1.1rem;
        padding-left: 0.25rem;
    }
}

/* ========================
   HERO STATS STARS
   ======================== */
.hero-stat-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-stat-stars i {
    color: #F2C463;
    /* Gold star */
    font-size: 0.75rem;
}

.hero-stat-stars span {
    margin-left: 1.5rem;
    /* Increased spacing */
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stat-stars strong {
    color: #fff;
}



@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accounts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .account-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Nav menu moved to 1200px breakpoint */

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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



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

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

    .steps-grid::before {
        display: none;
    }

    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }

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

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

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

    .section {
        padding: 4rem 0;
    }
}

/* ========================
   PROFESSIONAL START STEPS
   ======================== */
.start-steps-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.display-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--primary);
    /* Fallback */
    background: linear-gradient(135deg, #FFD700 0%, #D9A441 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting Line (Desktop Only) */
@media (min-width: 992px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 40px;
        /* Adjust based on icon size */
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.3), transparent);
        z-index: 0;
    }
}

.pro-step-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(217, 164, 65, 0.4);
    /* Belirgin Gold Çerçeve */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(217, 164, 65, 0.15), inset 0 0 20px rgba(217, 164, 65, 0.05);
    /* Işıltılı Glow */
    animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
    0% {
        border-color: rgba(217, 164, 65, 0.3);
        box-shadow: 0 0 10px rgba(217, 164, 65, 0.1);
    }

    100% {
        border-color: rgba(217, 164, 65, 0.8);
        box-shadow: 0 0 25px rgba(217, 164, 65, 0.3), inset 0 0 10px rgba(217, 164, 65, 0.1);
    }
}

.pro-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(217, 164, 65, 0.1);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(217, 164, 65, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.1);
}

.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    line-height: 30px;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(217, 164, 65, 0.5);
}

.pro-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pro-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(217, 164, 65, 0.1);
    color: var(--primary);
    border: 1px solid rgba(217, 164, 65, 0.2);
}

/* Bottom Features Bar (Reset margins for inner placement) */
.start-features-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    background: transparent;
    border-top: none;
    border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}

.start-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.sf-icon {
    width: 40px;
    height: 40px;
    background: rgba(217, 164, 65, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 0 10px rgba(217, 164, 65, 0.2);
    animation: icon-pulse 3s infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(217, 164, 65, 0.2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(217, 164, 65, 0.5);
    }
}

/* Bottom CTA */
.start-cta-wrapper {
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .start-cta-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
}

.start-cta-wrapper h3 {
    margin: 0;
    font-size: 1.5rem;
}

/* New Bottom Card Frame */
/* New Bottom Card Frame - Removed Frame */
.start-bottom-card {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
}

/* Super Glow Button */
.btn-super-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
    animation: btn-pulse-gold 2s infinite;
}

.btn-super-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(45deg);
    animation: sheen 3s infinite;
}

@keyframes btn-pulse-gold {
    0% {
        box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(217, 164, 65, 0.7);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
        transform: scale(1);
    }
}

@keyframes sheen {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Feature Row (Top) - Compact */
.feature-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    /* Reduced from 4rem */
    margin-bottom: 1.5rem;
    /* Reduced from 2.5rem */
    margin-top: 0.5rem;
    /* Reduced from 1rem */
}

.start-feature {
    display: flex;
    flex-direction: column;
    /* Stacked Icon + Text */
    align-items: center;
    gap: 0.5rem;
    /* Tighter gap */
    color: #fff;
    font-weight: 600;
    text-align: center;
    max-width: 200px;
}

/* Card Divider - Compact */
.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.3), transparent);
    margin: 0 auto 1.5rem auto;
    /* Reduced */
    width: 60%;
}

/* CTA Row (Bottom) - Compact */
.cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    /* Reduced */
}

@media (min-width: 768px) {
    .cta-row {
        flex-direction: row;
        gap: 2rem;
        /* Reduced */
    }
}

.cta-row h3 {
    margin: 0;
    font-size: 1.6rem;
    /* Slightly smaller */
}

/* Button Glow Wrapper (Radiating Light from Behind) */
.btn-glow-wrapper {
    position: relative;
    z-index: 1;
}

.btn-glow-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 160%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.6) 0%, transparent 70%);
    z-index: -1;
    filter: blur(15px);
    animation: pulse-back-glow 2s infinite alternate;
}

@keyframes pulse-back-glow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ========================
   WHY US (METRICS & TRUST) — PROFESSIONAL
   ======================== */
.why-us-section {
    position: relative;
    padding: 6rem 0;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Metric Card */
.metric-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(217, 164, 65, 0.5);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(217, 164, 65, 0.12), inset 0 0 40px rgba(217, 164, 65, 0.03);
}

.metric-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 35px rgba(217, 164, 65, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Top Gradient Bar */
.mc-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

.mc-gold .mc-top-bar {
    background: linear-gradient(90deg, #D9A441, #FFD700, #D9A441);
}

.mc-blue .mc-top-bar {
    background: linear-gradient(90deg, #3B82F6, #60A5FA, #3B82F6);
}

.mc-green .mc-top-bar {
    background: linear-gradient(90deg, #22C55E, #4ADE80, #22C55E);
}

.mc-highlight .mc-top-bar {
    background: linear-gradient(90deg, #D9A441, #FFD700, #fff, #FFD700, #D9A441);
    background-size: 200% 100%;
    animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Highlighted Card */
.mc-highlight {
    border-color: rgba(217, 164, 65, 0.5);
    box-shadow: 0 0 25px rgba(217, 164, 65, 0.12), inset 0 0 40px rgba(217, 164, 65, 0.03);
}

.mc-highlight:hover {
    box-shadow: 0 0 35px rgba(217, 164, 65, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Metric Icon Pro */
.metric-icon-pro {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.mc-gold .metric-icon-pro {
    background: rgba(217, 164, 65, 0.12);
    color: #D9A441;
}

.mc-blue .metric-icon-pro {
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
}

.mc-green .metric-icon-pro {
    background: rgba(34, 197, 94, 0.12);
    color: #4ADE80;
}

.mc-highlight .metric-icon-pro {
    background: rgba(217, 164, 65, 0.15);
    color: #FFD700;
}

/* Metric Value */
.metric-value {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.mc-highlight .metric-value {
    background: linear-gradient(135deg, #FFD700, #D9A441);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Metric Label */
.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary, #ccc);
    margin: 0 0 0.5rem;
}

/* Metric Sub */
.metric-sub {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Live Dot */
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    box-shadow: 0 0 6px #22c55e;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px #22c55e;
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 12px #22c55e;
    }
}

/* Trust Wide Card */
.trust-wide-card {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(217, 164, 65, 0.25);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.trust-wide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D9A441, #FFD700, #D9A441, transparent);
}

.trust-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-header-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(217, 164, 65, 0.08));
    border: 1px solid rgba(217, 164, 65, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-header-row h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.trust-header-row p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
}

/* Trust Features Grid */
.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trust-feat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
}

.trust-feat:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 164, 65, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.tf-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1.25rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Trust icon color classes */
.tf-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.tf-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.tf-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.tf-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.trust-feat h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}

.trust-feat p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Bottom Badges Row */
.trust-badges-row {
    background: rgba(0, 0, 0, 0.35);
    padding: 1.25rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary, #bbb);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge>i {
    color: var(--text-muted, #777);
    font-size: 0.85rem;
}

.badge-check {
    color: #22c55e;
    font-size: 0.8rem;
    margin-left: 0.15rem;
}

/* Super Glow Button (Enhancement) */
.btn-super-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
    /* Rim Light */
    background: linear-gradient(to bottom, #d9a441, #b38020);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================
   LIVE MARKETS — PREMIUM CARD LAYOUT
   ======================== */
.live-markets-section {
    position: relative;
}

/* Category Tabs */
.market-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.market-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    color: var(--text-muted, #888);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.market-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.market-tab.active {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(217, 164, 65, 0.08));
    border-color: rgba(217, 164, 65, 0.5);
    color: #FFD700;
}

/* Market Cards Grid */
.market-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .market-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .market-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Market Card */
.metric-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(217, 164, 65, 0.5);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(217, 164, 65, 0.12), inset 0 0 40px rgba(217, 164, 65, 0.03);
}

.metric-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 35px rgba(217, 164, 65, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Metal card gold tint */
.mc-metal {
    border-color: rgba(217, 164, 65, 0.15);
}

.mc-metal:hover {
    border-color: rgba(217, 164, 65, 0.35);
}

/* Card Header */
.mc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mc-coin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mc-coin strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.mc-coin span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted, #888);
    margin-top: 2px;
}

/* Change Badge */
.mc-change {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mc-change.positive {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.mc-change.negative {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* Price */
.mc-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Bid / Ask / Spread Details */
.mc-details {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
}

.mc-details>div {
    text-align: center;
    flex: 1;
}

.mc-details small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted, #666);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mc-details span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary, #ccc);
}

/* Sparkline Placeholder */
.mc-sparkline {
    height: 32px;
    margin-bottom: 1rem;
    border-radius: 6px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(217, 164, 65, 0.05) 20%,
            rgba(217, 164, 65, 0.1) 40%,
            rgba(217, 164, 65, 0.05) 60%,
            transparent 100%);
    position: relative;
    overflow: hidden;
}

.mc-sparkline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(217, 164, 65, 0.3),
            rgba(34, 197, 94, 0.3),
            rgba(217, 164, 65, 0.3),
            transparent);
}

/* Trade Button */
.mc-trade-btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Hidden state for filtering */
.market-card.hidden {
    display: none;
}

/* text-gold utility */
.text-gold {
    color: #D9A441 !important;
}

/* ========================
   FOOTER — PREMIUM REDESIGN
   ======================== */
.footer {
    background: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
}

/* ── Top Section: Logo + Contact + Nav Columns ── */
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.footer-contact-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.08);
    border: 1px solid rgba(217, 164, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    color: #fff;
}

.footer-social-icon.fb {
    background: #1877F2;
}

.footer-social-icon.x {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-icon.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-icon.yt {
    background: #FF0000;
}

.footer-social-icon.tg {
    background: #0088cc;
}

.footer-social-icon.li {
    background: #0A66C2;
}

.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Navigation Columns */
.footer-nav-col h4 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 0.7rem;
}

.footer-nav-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-nav-col ul li a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* ── Info Cards Section ── */
.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.footer-info-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.footer-info-card-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-info-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-info-row span:first-child {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-info-row span:last-child {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.88rem;
}

/* Legal links grid inside card */
.footer-legal-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* Office list */
.footer-office-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.footer-office-flag {
    font-size: 0.7rem;
    font-weight: 700;
    width: 24px;
    height: 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 164, 65, 0.15);
    color: var(--primary);
    flex-shrink: 0;
}

.footer-office-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-office-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ── Risk Warning ── */
.footer-risk {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-risk-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-left: 4px solid #ef4444;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.06);
}

.footer-risk-icon {
    color: #ef4444;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.4));
}

.footer-risk-inner h5 {
    color: #ef4444;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-risk-inner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Copyright ── */
.footer-copyright {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================
   FIXED ACCOUNT BUTTON
   ======================== */
.fixed-account-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--primary-gradient);
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(217, 164, 65, 0.6), 0 0 60px rgba(217, 164, 65, 0.3);
    transition: all 0.3s var(--ease);
    text-decoration: none;
    overflow: hidden;
    /* Enhancements */
    animation: pulse-glow-strong 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-strong {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(217, 164, 65, 0.6), 0 0 60px rgba(217, 164, 65, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(217, 164, 65, 0.8), 0 0 100px rgba(217, 164, 65, 0.5);
        transform: scale(1.02);
    }
}

.fixed-account-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: glint 4s infinite;
    /* Matched glint timing */
}

.fixed-account-btn i {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.fixed-account-btn span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fixed-account-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(217, 164, 65, 0.6);
    /* Enhanced hover shadow */
}

/* Pulse ring animation */
.fixed-account-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    border: 2px solid rgba(217, 164, 65, 0.6);
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .fixed-account-btn {
        bottom: 20px;
        left: 20px;
        padding: 0.8rem 1.4rem;
    }

    .fixed-account-btn span {
        font-size: 0.9rem;
    }

    .fixed-account-btn i {
        font-size: 1.2rem;
    }
}

/* ========================
   MOBILE APP IMAGE ANIMATION
   ======================== */
.mobile-float-img {
    animation: mobile-float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    border-radius: 20px;
    width: 130%;
    /* Increase size */
    max-width: none;
    margin-left: -15%;
    /* Center after widening */
    position: relative;
    z-index: 2;
}

.mobile-float-img:hover {
    filter: drop-shadow(0 0 30px rgba(217, 164, 65, 0.4));
    transform: scale(1.02);
}

@keyframes mobile-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========================
   TRADING BATTLE POPUP
   ======================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    text-align: center;
    /* box-shadow removed, will be added by wrapper or ignored for now */
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    z-index: 1;
    overflow: hidden;
}

/* Animated Border Effect */
.popup-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    background: linear-gradient(45deg, #FFD700, #ff0055, #00ffcc, #FFD700);
    background-size: 300% 300%;
    z-index: -1;
    animation: border-shimmer 3s linear infinite;
}

/* Inner Card Background */
.popup-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    border-radius: 23px;
    z-index: -1;
}

@keyframes border-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.popup-overlay.active .popup-card {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Icon Section */
.popup-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
}

.popup-icon-circle {
    width: 100%;
    height: 100%;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 4px solid #0a0a0a;
}

/* Dashed Ring around icon */
.popup-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.popup-stars i {
    position: absolute;
    color: #FFD700;
    font-size: 1rem;
    animation: bounce-star 2s infinite;
}

.s1 {
    top: -10px;
    right: 0;
    animation-delay: 0s;
}

.s2 {
    bottom: 0;
    left: -10px;
    animation-delay: 0.5s;
    font-size: 0.8rem !important;
}

.s3 {
    bottom: 0;
    right: -5px;
    color: #fff !important;
    font-size: 0.9rem !important;
    animation-delay: 1s;
}

@keyframes bounce-star {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Text */
.popup-title {
    color: #FFD700;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    background: linear-gradient(to right, #FFD700, #ffec8b, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine-text 3s linear infinite;
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}

.popup-year {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.popup-timer-label {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Timer */
.popup-timer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-box span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.timer-box small {
    font-size: 0.65rem;
    color: #666;
    font-weight: 600;
}

/* Buttons */
.btn-popup-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #10B981;
    /* Green */
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-popup-prize:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-popup-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #FFD700;
    /* Gold */
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-popup-action:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* ========================
   PRESTIGIOUS AWARDS
   ======================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.award-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 164, 65, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.award-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.award-card:hover .award-glow {
    opacity: 1;
}

.award-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(217, 164, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D9A441;
    border: 1px solid rgba(217, 164, 65, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.award-card:hover .award-icon-box {
    background: #D9A441;
    color: #000;
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
}

.award-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.award-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.award-badge.gold {
    background: rgba(217, 164, 65, 0.15);
    border-color: rgba(217, 164, 65, 0.3);
    color: #FFD700;
}

.award-badge.blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60A5FA;
}

.award-badge.purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #A78BFA;
}

.award-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ========================
   MONTHLY WINNERS (TOP TRADERS)
   ======================== */
.winners-table-wrapper {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

/* Glassy Shine Overlay */
.winners-table-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.winners-table th {
    text-align: left;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 1.5rem 1rem;
    font-weight: 700;
}


.winners-table td {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* Row Hover Effect */
.winner-row {
    transition: transform 0.3s ease;
}

.winner-row:hover td {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.winners-table tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.winners-table tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Trader Info & Flags */
.trader-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.flag-icon {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Rank Badges */
.rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

/* Top 3 Styling with Shimmer */
.rank-1 td {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.1)) !important;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.rank-2 td {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.05), rgba(192, 192, 192, 0.1)) !important;
    border: 1px solid rgba(192, 192, 192, 0.15);
}

.rank-3 td {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.05), rgba(205, 127, 50, 0.1)) !important;
    border: 1px solid rgba(205, 127, 50, 0.15);
}

/* Shimmer Animation for Top 3 */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.rank-1,
.rank-2,
.rank-3 {
    position: relative;
}

.rank-1::after,
.rank-2::after,
.rank-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-15deg);
    pointer-events: none;
    animation: shimmer 3s infinite;
    z-index: 1;
    /* Explicitly set z-index lower than td content */
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #E0E0E0, #BCC6CC);
    color: #000;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
    color: #fff;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
}

.fw-bold {
    font-weight: 700 !important;
}

.text-gold {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-silver {
    color: #E0E0E0;
    text-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
}

.text-bronze {
    color: #CD7F32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.text-green {
    color: #34D399;
    font-weight: 700;
}

.hidden-row {
    display: none;
}

/* Show More Button */
.winners-more-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

/* Responsive Table */
@media (max-width: 992px) {
    .winners-table-wrapper {
        padding: 1.5rem;
        overflow-x: auto;
        /* Enable scroll */
        -webkit-overflow-scrolling: touch;
    }

    .winners-table {
        min-width: 600px;
        /* Force min width to trigger scroll */
    }

    /* Undo previous hiding logic */
    .winners-table th:nth-child(3),
    .winners-table td:nth-child(3) {
        display: table-cell;
    }
}

/* FIX FOR RANK 1 BLUR ISSUE */
.rank-1 td.text-gold {
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    -webkit-text-fill-color: initial !important;
    color: #FFD700 !important;
    z-index: 10 !important;
    position: relative !important;
    isolation: isolate;
    background: transparent !important;
}

/* ===============================
   KYC INFO PAGE STYLES
   =============================== */

.kyc-info-hero {
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 5s infinite ease-in-out;
}

.kyc-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kyc-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



.hero-buttons.centered-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-pulse-glow {
    box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.7);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(217, 164, 65, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0);
    }
}

.button-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.note-item i {
    color: var(--primary);
}

.note-dot {
    color: var(--border);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s var(--ease);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Timeline Process */
.section-dark {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-timeline {
    margin-top: 2.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.tl-number {
    position: absolute;
    left: -2.9rem;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--bg-body);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 10px rgba(217, 164, 65, 0.3);
}

.tl-content h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.tl-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Visual Card Animation */
.kyc-visual-card {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s var(--ease);
}

.kyc-visual-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.visual-header {
    background: #252525;
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #333;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.visual-body {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.scan-animation-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.id-icon {
    font-size: 8rem;
    color: #333;
}

.scan-laser {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 4px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    animation: laser-scan 2s ease-in-out infinite alternate;
}

@keyframes laser-scan {
    0% {
        top: 0;
        opacity: 0.5;
    }

    100% {
        top: 100%;
        opacity: 1;
    }
}

.status-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: monospace;
}

.status-success {
    display: none;
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: 700;
    animation: pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-in {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s var(--ease);
}

.faq-item.open .q-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    transition: max-height 0.5s ease-in-out;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-layout-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kyc-visual-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 164, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0);
    }
}

@media (max-width: 576px) {
    .kyc-hero-content h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        backdrop-filter: blur(5px);
    }

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

/* ========================
   POPULAR INSTRUMENTS (MARKET CARDS)
   ======================== */
.market-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(217, 164, 65, 0.5) !important;
    /* Gold Border */
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 164, 65, 0.9) !important;
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.mc-coin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mc-coin div {
    display: flex;
    flex-direction: column;
}

.mc-coin strong {
    font-size: 1rem;
    color: #fff;
}

.mc-coin span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mc-change {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.mc-change.positive {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.mc-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.mc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mc-graph {
    height: 40px;
    width: 100%;
}

/* ========================
   TRUST PREMIUM SECTION
   ======================== */
.trust-premium-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.trust-premium-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.1), transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.tp-content {
    flex: 1;
    z-index: 1;
}

.tp-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(217, 164, 65, 0.15);
    color: #D9A441;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
}

.tp-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.tp-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.tp-cards {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    z-index: 1;
}

.tp-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.tp-card:hover {
    border-color: rgba(217, 164, 65, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.tp-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.tp-card:hover .tp-icon {
    background: rgba(217, 164, 65, 0.2);
    color: #D9A441;
}

.tp-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.tp-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.tp-card.featured {
    grid-column: span 2;
    background: linear-gradient(90deg, rgba(217, 164, 65, 0.1), rgba(20, 20, 20, 0.8));
    border-color: rgba(217, 164, 65, 0.3);
}

.tp-card.featured .tp-icon {
    background: rgba(217, 164, 65, 0.2);
    color: #D9A441;
}

@media (max-width: 900px) {
    .trust-premium-wrapper {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .tp-content p {
        margin: 0 auto 2rem auto;
    }

    .tp-cards {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tp-cards {
        grid-template-columns: 1fr;
    }

    .tp-card.featured {
        grid-column: auto;
    }
}

/* ========================
   FOOTER INFO CARDS
   ======================== */
.footer-info-card {
    background: rgba(255, 255, 255, 0.05);
    /* Increased opacity for visibility */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* More visible border */
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Added shadow for depth */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-info-card:hover {
    border-color: rgba(217, 164, 65, 0.3);
    /* Gold hint on hover */
    transform: translateY(-2px);
}