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

:root {
    --primary-blue: #1e90ff;
    --dark-blue: #0066cc;
    --light-blue: #4da6ff;
    --blue-glow: rgba(30, 144, 255, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
}

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

/* Mobile Minimal Mode - Disable heavy effects */
body.mobile-minimal * {
    animation: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

body.mobile-minimal *::before,
body.mobile-minimal *::after {
    animation: none !important;
}

body.mobile-minimal .hero::before,
body.mobile-minimal .feature-card::before,
body.mobile-minimal .market-card::before,
body.mobile-minimal .cta-section::before {
    display: none !important;
}

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

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-dots {
    display: flex;
    gap: 3px;
}

.logo-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.logo-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 50px;
}

.nav-item span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 10px 30px rgba(30, 144, 255, 0.1);
    pointer-events: auto;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    border-radius: 10px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-blue);
    transform: translateX(-3px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background: rgba(30, 144, 255, 0.15);
    color: var(--primary-blue);
    transform: translateX(5px);
    padding-left: 25px;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

/* Horizontal Dropdown Layout */
.dropdown-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-width: 450px;
    padding: 20px;
}

.dropdown-horizontal .dropdown-item {
    text-align: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-horizontal .dropdown-item:hover {
    transform: translateY(-2px) scale(1.02);
    padding: 18px 20px;
    background: rgba(30, 144, 255, 0.2);
    border-color: rgba(30, 144, 255, 0.4);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
}

.dropdown-horizontal .dropdown-item::before {
    display: none;
}

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

/* Desktop: Show nav-actions outside menu */
@media (min-width: 769px) {
    .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    
    .nav-menu {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 1;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        padding: 8px 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-actions {
        order: 3;
        width: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}

.btn-signin {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    padding: 9px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-signin:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-register {
    background: #ffffff;
    color: #000000;
    border: 1.5px solid #ffffff;
    padding: 9px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-register:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulseGlowHero 4s ease-in-out infinite;
}

@keyframes pulseGlowHero {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #1e90ff 50%, #4ade80 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 64px;
    font-weight: 700;
    display: inline;
    visibility: visible;
    opacity: 1;
    background: linear-gradient(135deg, #ffffff 0%, #1e90ff 50%, #4ade80 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066cc 100%);
    color: var(--text-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--blue-glow);
    animation: buttonGlowPulse 3s ease-in-out infinite;
}

@keyframes buttonGlowPulse {
    0%, 100% {
        box-shadow: 0 8px 25px var(--blue-glow);
    }
    50% {
        box-shadow: 0 12px 35px rgba(30, 144, 255, 0.5), 0 0 50px rgba(74, 222, 128, 0.3);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--blue-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-tertiary:hover {
    color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 30px 50px;
    max-width: 1000px;
    margin: 0 auto;
    animation: floatStats 4s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.1);
}

@keyframes floatStats {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.1), rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 0 40px var(--blue-glow), 
                0 0 60px rgba(30, 144, 255, 0.3),
                0 10px 50px rgba(30, 144, 255, 0.2),
                inset 0 0 30px rgba(30, 144, 255, 0.05);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0%) drop-shadow(0 0 20px rgba(30, 144, 255, 0.5));
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px 30px 20px 30px;
}

.feature-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    opacity: 0.85;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.feature-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.2;
}

.feature-label {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Products Section */
.products {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

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

.products-grid-wrapper {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4ade80 100%);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(74, 222, 128, 0.7);
    }
}

.border-image {
    position: absolute;
    opacity: 0.25;
    filter: grayscale(20%);
    z-index: 1;
    transition: all 0.3s ease;
}

.dollar-border {
    width: 220px;
    height: 220px;
}

.dollar-1 {
    left: -80px;
    bottom: 50px;
    transform: rotate(-20deg);
}

.dollar-2 {
    right: -70px;
    bottom: 80px;
    transform: rotate(15deg);
}

.pound-border {
    width: 150px;
    height: 150px;
    right: -50px;
    top: 30px;
}

@keyframes floatUp1 {
    0%, 100% { transform: translateY(0) rotate(-20deg); }
    50% { transform: translateY(-20px) rotate(-20deg); }
}

@keyframes floatUp2 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-18px) rotate(15deg); }
}

@keyframes floatUpPound {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.products-grid-wrapper.blur-active .border-image {
    z-index: 100;
    opacity: 0.4;
}

.products-grid-wrapper.blur-active .dollar-1 {
    animation: floatUp1 2s ease-in-out infinite;
}

.products-grid-wrapper.blur-active .dollar-2 {
    animation: floatUp2 2.2s ease-in-out infinite;
}

.products-grid-wrapper.blur-active .pound-border {
    animation: floatUpPound 2.5s ease-in-out infinite;
}

.products-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 110px);
    gap: 2px;
    background: var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.grid-cell {
    background: rgba(30, 30, 30, 0.7);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, filter 0.3s ease;
    overflow: hidden;
}

.grid-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.grid-cell:hover::before {
    opacity: 1;
}

/* Product Hover Targets */
.product-hover-target {
    cursor: pointer;
    z-index: 10;
}

.product-hover-target:hover {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(74, 222, 128, 0.6) 100%) !important;
    transform: scale(1.02);
    filter: blur(0) !important;
    z-index: 100 !important;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.5), 0 0 50px rgba(74, 222, 128, 0.3);
    animation: productCellGlow 2s ease-in-out infinite;
}

@keyframes productCellGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(30, 144, 255, 0.5), 0 0 50px rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 144, 255, 0.7), 0 0 60px rgba(74, 222, 128, 0.5);
    }
}

/* Forex Cell */
.forex-cell {
    flex-direction: row;
    gap: 10px;
    background: rgba(30, 30, 30, 0.7);
}

.forex-cell h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Crypto */
.crypto-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.crypto-cell h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Indices */
.indices-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.indices-cell h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Commodities */
.commodities-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.commodities-cell h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Arrow Buttons */
.product-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-arrow:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--blue-glow);
}

/* Coin Images in Grid */
.coin-cell,
.dollar-cell {
    overflow: visible;
}

.grid-coin {
    width: 60px;
    height: 60px;
    opacity: 0.6;
    filter: grayscale(20%) drop-shadow(0 0 15px rgba(74, 222, 128, 0.4));
    animation: floatCoinSmall 5s ease-in-out infinite;
}

@keyframes floatCoinSmall {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.grid-coin.large {
    width: 80px;
    height: 80px;
    animation: floatCoinLarge 6s ease-in-out infinite;
}

@keyframes floatCoinLarge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

/* Trade Now Button */
.trade-now-cell {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066cc 100%);
    flex-direction: column;
    gap: 15px;
    border-radius: 0 0 18px 0;
    animation: tradeNowPulse 3s ease-in-out infinite;
}

@keyframes tradeNowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 144, 255, 0.6), 0 0 60px rgba(74, 222, 128, 0.3);
    }
}

.trade-now-cell:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%) !important;
    animation: none;
    box-shadow: 0 0 50px rgba(30, 144, 255, 0.8), 0 0 80px rgba(74, 222, 128, 0.5);
}

.trade-now-cell h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.trade-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(45deg);
}

/* Hover Effects */
.grid-cell:hover {
    background: rgba(30, 144, 255, 0.05);
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(0, 50, 30, 0.3) 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.tech-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tech-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 30px 0;
    line-height: 1.6;
}

.tech-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tech-images {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.phone-container {
    position: relative;
    width: 450px;
    height: 400px;
}

.phone {
    position: absolute;
    width: 200px;
    height: 400px;
    background: #000;
    border-radius: 35px;
    border: 8px solid #1a1a1a;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
}

.phone-1 {
    left: 20px;
    z-index: 2;
    transform: rotate(-8deg) translateY(10px);
}

.phone-2 {
    right: 0;
    top: -30px;
    z-index: 1;
    transform: rotate(8deg) translateY(10px);
}

.phone:hover {
    transform: scale(1.08) rotate(0deg) translateY(0);
    box-shadow: 
        0 30px 100px rgba(30, 144, 255, 0.3),
        inset 0 0 0 2px rgba(30, 144, 255, 0.5);
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tech-feature {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 144, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.tech-feature:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.2);
}

.tech-feature-content {
    position: relative;
    z-index: 1;
}

/* Lock Icon */
.lock-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.lock-body {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #444;
}

.lock-shackle {
    width: 50px;
    height: 50px;
    border: 8px solid #444;
    border-radius: 25px 25px 0 0;
    border-bottom: none;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.lock-keyhole {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--primary-blue), 0 0 40px rgba(30, 144, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.lock-keyhole::after {
    content: '';
    width: 4px;
    height: 15px;
    background: var(--primary-blue);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.lock-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.3) 0%, transparent 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 2s ease-in-out infinite;
}

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

/* Tech Feature Images */
.tech-feature-image {
    width: 200px;
    height: 140px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-feature-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Desktop Mockup */
.desktop-mockup {
    width: 200px;
    height: 140px;
    margin: 0 auto 30px;
    position: relative;
}

.monitor {
    width: 180px;
    height: 110px;
    position: absolute;
    left: 0;
    top: 0;
}

.monitor-screen {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 8px;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
}

.chart-grid {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(30, 144, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(30, 144, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.chart-grid::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--primary-blue);
    top: 50%;
    left: 10%;
    box-shadow: 0 0 10px var(--primary-blue);
}

.monitor-stand {
    width: 40px;
    height: 25px;
    background: #333;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 8px 8px;
}

.monitor-stand::before {
    content: '';
    width: 60px;
    height: 5px;
    background: #333;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.mobile-device {
    width: 50px;
    height: 90px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 2px solid #333;
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.mobile-device::before {
    content: '';
    width: 80%;
    height: 70%;
    background: linear-gradient(135deg, #0a4d2e 0%, #1a1a1a 100%);
    position: absolute;
    top: 10%;
    left: 10%;
    border-radius: 4px;
}

.tech-feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.tech-feature-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 144, 255, 0.05) 100%);
}

.highlight {
    color: var(--primary-blue);
}

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

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

.stat-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
}

.about-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
}

.about-features li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Access Section */
.access {
    padding: 100px 0;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.step-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--blue-glow);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-icon {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.step-icon img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon img {
    transform: scale(1.1);
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.support-section {
    margin-top: 80px;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.15) 0%, transparent 50%, rgba(30, 144, 255, 0.15) 100%);
    border-radius: 30px;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.support-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.support-content {
    text-align: left;
}

.support-tag {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.support-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-support {
    background: var(--primary-blue);
    color: var(--text-primary);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--blue-glow);
}

.support-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.support-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(30, 144, 255, 0.3));
}

/* News Section */
.news {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

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

.news-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.3), 0 0 60px rgba(74, 222, 128, 0.2);
}

.news-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 144, 255, 0.2) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1) rotate(2deg);
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    padding: 30px;
    line-height: 1.5;
    min-height: 150px;
    position: relative;
    z-index: 1;
}

.news-tags {
    display: flex;
    gap: 15px;
    padding: 0 30px 30px;
}

.news-tag {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-view-more {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-more:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Forex CFD Page Styles */
.forex-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #0a2e1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.forex-hero-coins {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    opacity: 0.6;
}

.forex-hero-coins.left-coins {
    left: -50px;
}

.forex-hero-coins.right-coins {
    right: -50px;
}

.forex-hero-coins img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
}

.forex-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.forex-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.forex-features {
    padding: 60px 0;
    background: #f5f5f5;
}

.forex-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.forex-sidebar {
    background: white;
    border-radius: 15px;
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.sidebar-item {
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    border-left: 3px solid transparent;
}

.sidebar-menu-item {
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    border-left: 3px solid transparent;
}

.sidebar-menu-item.active {
    background: rgba(113, 200, 96, 0.08);
    border-left-color: #71C860;
}

.sidebar-menu-item.active .menu-text {
    color: #71C860;
    font-weight: 600;
}

.sidebar-menu-item.active .bullet {
    display: inline;
}

.sidebar-menu-item .bullet {
    color: #71C860;
    font-size: 12px;
    display: none;
}

.sidebar-menu-item:hover {
    background: rgba(113, 200, 96, 0.05);
}

.menu-text {
    line-height: 1.4;
}

.sidebar-item.active {
    background: rgba(113, 200, 96, 0.08);
    border-left-color: #71C860;
    color: #333;
}

.sidebar-item:hover {
    background: rgba(113, 200, 96, 0.05);
}

.sidebar-item:first-child {
    padding: 20px 24px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-icon {
    font-size: 20px;
}

.sidebar-title {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.title-green {
    font-size: 22px;
    font-weight: 700;
    color: #71C860;
    margin-bottom: 4px;
}

.title-black {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.bullet {
    color: #71C860;
    font-size: 12px;
}

.highlight-text {
    color: #71C860;
    font-weight: 600;
    line-height: 1.4;
}

.forex-main-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
}

.content-section {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

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

.content-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.content-section-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.content-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 30px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-section {
    max-width: 100%;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #71C860;
}

.feature-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.forex-table-section {
    padding: 80px 0;
    background: #000;
}

.forex-matrix-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    background: #1a1a1a;
}

.forex-matrix {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.forex-matrix thead {
    background: #0a0a0a;
}

.forex-matrix th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid #2a2a2a;
}

.forex-matrix td {
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #2a2a2a;
    color: #aaa;
    font-size: 14px;
}

.forex-matrix .currency-label {
    font-weight: 600;
    color: #fff;
    text-align: left;
    background: #0a0a0a;
}

.forex-matrix .diagonal-cell {
    background: #2a2a2a;
    position: relative;
}

.forex-matrix .diagonal-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, transparent 48%, #444 48%, #444 52%, transparent 52%);
}

.forex-matrix tbody tr:hover {
    background: rgba(113, 200, 96, 0.05);
}

.currency-flag {
    font-size: 18px;
    margin-right: 5px;
}

/* Crypto CFD Page Styles */
.crypto-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #0a2e1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.crypto-hero-coins {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 300px;
    opacity: 0.4;
}

.crypto-hero-coins.left-coins {
    left: -30px;
}

.crypto-hero-coins.right-coins {
    right: -30px;
}

.crypto-hero-coins img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.crypto-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.crypto-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.crypto-table-section {
    padding: 80px 0;
    background: #000;
}

.crypto-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    background: #1a1a1a;
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.crypto-table thead {
    background: #0a0a0a;
}

.crypto-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    color: #888;
    border-bottom: 1px solid #2a2a2a;
    font-size: 13px;
}

.crypto-table td {
    padding: 16px 15px;
    border-bottom: 1px solid #2a2a2a;
    color: #aaa;
    font-size: 14px;
}

.crypto-table tbody tr:hover {
    background: rgba(113, 200, 96, 0.05);
}

.crypto-table .section-header td {
    background: #0a0a0a;
    color: #fff;
    font-weight: 600;
    padding: 14px 15px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.crypto-name {
    font-weight: 600;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-icon {
    font-size: 14px;
}

.crypto-icon.blue { color: #1E90FF; }
.crypto-icon.orange { color: #FF8C00; }
.crypto-icon.purple { color: #8B7EC8; }
.crypto-icon.cyan { color: #00CED1; }
.crypto-icon.red { color: #FF4444; }
.crypto-icon.pink { color: #FF69B4; }
.crypto-icon.gray { color: #888; }

.status-red {
    color: #FF4444;
    font-size: 10px;
    margin-left: 4px;
}

/* Indices CFD Page Styles */
.indices-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #0a2e1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.indices-hero-globe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    opacity: 0.6;
}

.indices-hero-globe.left-globe {
    left: -80px;
}

.indices-hero-globe.right-globe {
    right: -80px;
}

.indices-hero-globe img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.indices-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.indices-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Commodities CFD Page Styles */
.commodities-hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #0a1a05 40%, #0a1a05 60%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.commodities-hero-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 280px;
    opacity: 0.5;
    filter: brightness(0.8);
}

.commodities-hero-image.left-image {
    left: 50px;
}

.commodities-hero-image.right-image {
    right: 50px;
}

.commodities-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.commodities-hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.commodities-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Accounts Page Styles */
.accounts-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #0a1a2e 50%, #000000 100%);
}

.accounts-hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
}

.accounts-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.account-cards-section {
    padding: 80px 0;
    background: #000;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag.blue {
    color: var(--primary-blue);
}

.highlight-blue {
    color: var(--primary-blue);
}

.account-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.account-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.account-card:nth-child(1) {
    animation-delay: 0.1s;
}

.account-card:nth-child(2) {
    animation-delay: 0.3s;
}

.account-card:nth-child(3) {
    animation-delay: 0.5s;
}

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

.account-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 144, 255, 0.3);
    border-color: var(--primary-blue);
}

.account-card.prime {
    background: linear-gradient(135deg, #0a2a0a 0%, #1a3a1a 100%);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.15);
}

.account-card.prime:hover {
    box-shadow: 0 30px 70px rgba(30, 144, 255, 0.4);
}

.account-card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.account-badge {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-icon {
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(30, 144, 255, 0.3));
    transition: all 0.3s;
}

.account-card:hover .account-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(30, 144, 255, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.account-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.account-tag {
    font-size: 14px;
    color: var(--text-secondary);
}

.account-card-body {
    padding: 40px 30px;
}

.account-feature-main {
    text-align: center;
    margin-bottom: 30px;
}

.feature-value {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.feature-value.blue {
    color: var(--primary-blue);
}

.feature-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.account-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.account-features-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid #333;
}

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

.btn-account-register {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-account-register:hover {
    background: var(--primary-blue);
    color: #fff;
}

.btn-account-register.blue {
    background: var(--primary-blue);
    color: #fff;
}

.btn-account-register.blue:hover {
    background: transparent;
    color: var(--primary-blue);
}

.comparison-section {
    padding: 80px 0;
    background: #000;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid #333;
}

.comparison-table th.prime-col {
    background: linear-gradient(135deg, #1a3a1a 0%, #0a2a0a 100%);
    color: var(--primary-blue);
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border: 1px solid #333;
    color: var(--text-secondary);
    font-size: 14px;
}

.comparison-table td.prime-col {
    background: rgba(30, 144, 255, 0.03);
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.check-icon {
    color: #71C860;
    font-size: 18px;
}

.cross-icon {
    color: #ff4444;
    font-size: 18px;
}

.btn-register-table {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register-table:hover {
    background: var(--primary-blue);
    color: #fff;
}

.btn-register-table.blue {
    background: var(--primary-blue);
    color: #fff;
}

.btn-register-table.blue:hover {
    background: transparent;
    color: var(--primary-blue);
}

.note-section {
    padding: 60px 0;
    background: #000;
}

.note-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.note-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.note-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.note-list {
    list-style: none;
}

.note-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.note-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-blue);
    font-size: 20px;
}

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

.payment-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
}

.payment-icon:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* About Us Page Styles */
.about-hero-section {
    background: linear-gradient(180deg, #070709 0%, #0a0a0f 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-coin {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    animation: float 6s ease-in-out infinite;
}

.about-hero-coin.left-coin {
    left: 10%;
}

.about-hero-coin.right-coin {
    right: 10%;
}

.about-hero-coin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.about-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.stats-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.stats-grid-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.stat-item-banner {
    text-align: center;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.stat-item-banner:nth-child(1) { animation-delay: 0.1s; }
.stat-item-banner:nth-child(3) { animation-delay: 0.2s; }
.stat-item-banner:nth-child(5) { animation-delay: 0.3s; }
.stat-item-banner:nth-child(7) { animation-delay: 0.4s; }

.stat-number-banner {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-banner {
    font-size: 16px;
    color: var(--text-secondary);
}

.stat-divider-banner {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.about-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #070709 0%, #0a0a0f 100%);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.section-title .highlight {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-card);
}

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

.value-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { 
    animation-delay: 0.1s;
    grid-row: span 2;
}
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.2);
}

.logo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    border: none;
}

.logo-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-large .logo-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.logo-large .logo-dots span {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.logo-large .logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.value-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-top: auto;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-hero {
    background: linear-gradient(135deg, #070709 0%, #1a1a2e 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.8s ease;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.3s both;
}

.story-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    animation: fadeInLeft 0.8s ease;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.story-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stats-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%231E90FF" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: countUp 2s ease;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-info .role {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(180deg, #070709 0%, #0a0a0f 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    animation: slideDown 0.8s ease;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    animation: fadeIn 1s ease 0.3s both;
}

.contact-methods-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.contact-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }
.contact-method-card:nth-child(4) { animation-delay: 0.4s; }

.contact-method-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.method-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(30, 144, 255, 0.1) 100%);
}

.contact-method-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-method-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #0a0a0f 0%, #070709 100%);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    animation: fadeInUp 0.8s ease 0.5s both;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
    max-width: 100%;
    overflow: visible;
}

.phone-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.required {
    color: #ff4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.country-code {
    width: 120px;
    flex-shrink: 0;
    min-width: 100px;
}

.phone-input-wrapper input {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
}

.otp-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    height: auto;
    min-width: fit-content;
}

.otp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.social-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
}

.social-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.social-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.2;
    transition: transform 0.4s ease;
    transform: scale(0);
    border-radius: 50%;
}

.social-icon-large:hover::before {
    transform: scale(1.5);
}

.social-icon-large:hover {
    transform: translateY(-10px) scale(1.1);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.telegram-icon {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 10px 30px rgba(42, 171, 238, 0.3);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.youtube-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.twitter-icon {
    background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.instagram-icon {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

/* Contact Page Animations */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .country-code {
        width: 100%;
    }
    
    .otp-btn {
        width: 100%;
    }
    
    .social-icons-large {
        gap: 15px;
    }
    
    .social-icon-large {
        width: 60px;
        height: 60px;
    }
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse-glow 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Additional Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive for About Page */
@media (max-width: 968px) {
    .about-hero-coin {
        display: none;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .stats-grid-banner {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider-banner {
        display: none;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card:nth-child(1) { 
        grid-row: span 1;
    }
    
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
    border-top: 2px solid transparent;
    background-image: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%),
        linear-gradient(90deg, #1e90ff 0%, #4ade80 50%, #1e90ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e90ff, #4ade80, #1e90ff, transparent);
    animation: borderFlow 4s linear infinite;
}

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

.footer-logo {
    margin-bottom: 20px;
    width: 120px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 18px;
    min-height: 140px;
}

.footer-column h4 {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.footer-column p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e90ff, #4ade80);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 11px;
    transition: all 0.2s;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(30, 144, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-middle-left h4,
.footer-middle-right h4 {
    font-size: 11px;
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(30, 144, 255, 0.15);
    border-color: rgba(30, 144, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-btn:hover {
    background: rgba(30, 144, 255, 0.15);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-2px);
}

.footer-legal {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h5 {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.legal-section p {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-bottom-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-logo .bottom-logo {
    height: 25px;
    opacity: 0.7;
}

.footer-bottom-logo span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid,
    .products-grid,
    .stats-grid,
    .steps-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-content,
    .about-content,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card.trade-now {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-get-started,
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .btn-signin,
    .btn-register {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--text-primary);
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 60px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 40px 20px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .cfd-hero {
        padding: 100px 20px 60px;
    }
    
    .cfd-hero-title {
        font-size: 36px;
    }
    
    .coins-container .coin {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .coins-container .coin-2 {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero-title,
    .cfd-hero-title {
        font-size: 28px;
    }
    
    .value-card h3,
    .support-card h3 {
        font-size: 18px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }
    
    .account-card h2 {
        font-size: 20px;
    }
}

/* ===== PLATFORMS PAGE STYLES ===== */

/* Platform Hero Section */
.platform-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(15, 30, 20, 0.6) 50%, rgba(10, 10, 10, 1) 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.35) 0%, rgba(74, 222, 128, 0.2) 30%, transparent 70%);
    z-index: 0;
}

.platform-hero .container {
    position: relative;
    z-index: 2;
}

.platform-hero-phones {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 4;
}

.hero-phone-left,
.hero-phone-right {
    position: absolute;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(74, 222, 128, 0.4)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.hero-phone-left {
    height: 550px;
    left: 15%;
    bottom: -50px;
    transform: rotate(-12deg);
    animation: floatLeft 6s ease-in-out infinite;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

.hero-phone-right {
    height: 400px;
    right: 8%;
    bottom: -50px;
    transform: rotate(12deg);
    animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { 
        transform: rotate(-12deg) translateY(0px);
    }
    50% { 
        transform: rotate(-12deg) translateY(-15px);
    }
}

@keyframes floatRight {
    0%, 100% { 
        transform: rotate(12deg) translateY(0px);
    }
    50% { 
        transform: rotate(12deg) translateY(15px);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.platform-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.platform-hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.platform-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-platform-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.3);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-platform-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.4);
}

/* Platform Options Grid */
.platform-options {
    padding: 0;
    background: transparent;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.platform-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    padding: 60px 80px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.platform-category {
    flex: 1;
    animation: slideUp 0.8s ease-out backwards;
    text-align: left;
}

.platform-category:nth-child(3) {
    animation-delay: 0.2s;
}

.platform-category:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-category-label {
    font-size: 13px;
    color: #888888;
    margin-bottom: 24px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.platform-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.platform-item-green {
    color: #4ade80;
}

.platform-item:hover {
    transform: translateX(5px);
    background: transparent;
}

.platform-icon {
    display: none;
}

.platform-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    align-self: center;
}

/* Platform Details Section */
.platform-details {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.platform-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.platform-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-details-reverse .platform-details-content {
    direction: rtl;
}

.platform-details-reverse .platform-details-text {
    direction: ltr;
}

.platform-details-reverse .platform-details-visual {
    direction: ltr;
}

.platform-details-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.platform-details-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-details-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.platform-details-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-guide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-guide:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Access Guide Section */
.access-guide {
    margin-top: 80px;
    padding: 60px 0;
}

.access-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
}

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

.access-step {
    background: rgba(20, 20, 20, 0.8);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 16px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.step-list li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-size: 20px;
}

.step-list .highlight {
    color: #4ade80;
    font-weight: 600;
}

@media (max-width: 968px) {
    .access-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .access-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .access-guide {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .access-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .access-step {
        padding: 30px 20px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-list li {
        font-size: 14px;
    }
}

.btn-guide:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.btn-platform-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.3);
}

.btn-platform-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(30, 144, 255, 0.4);
}

.platform-details-visual {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Platform Mockup */
.platform-mockup {
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 24px;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    animation: float 6s ease-in-out infinite;
}

.platform-image {
    width: 85%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.chart-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.chart-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 222, 128, 0.2) 100%);
    clip-path: polygon(
        0% 100%, 
        10% 70%, 
        20% 80%, 
        30% 60%, 
        40% 75%, 
        50% 50%, 
        60% 65%, 
        70% 45%, 
        80% 60%, 
        90% 40%, 
        100% 55%, 
        100% 100%
    );
    animation: chartPulse 3s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.chart-1::before { animation-delay: 0s; }
.chart-2::before { animation-delay: 0.5s; }
.chart-3::before { animation-delay: 1s; }
.chart-4::before { animation-delay: 1.5s; }

/* Mobile Mockup */
.mobile-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.btn-store {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-store:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.platform-details-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-chart {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 222, 128, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
    position: relative;
}

.mobile-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 222, 128, 0.3) 100%);
    clip-path: polygon(
        0% 100%, 
        5% 60%, 
        10% 70%, 
        15% 50%, 
        20% 65%, 
        25% 45%, 
        30% 60%, 
        35% 40%, 
        40% 55%, 
        45% 35%, 
        50% 50%, 
        55% 30%, 
        60% 45%, 
        65% 25%, 
        70% 40%, 
        75% 30%, 
        80% 45%, 
        85% 35%, 
        90% 50%, 
        95% 40%, 
        100% 55%, 
        100% 100%
    );
    animation: mobileChartMove 4s ease-in-out infinite;
}

@keyframes mobileChartMove {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

/* Web Terminal Mockup */
.web-terminal-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.web-terminal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.btn-platform-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.btn-platform-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.browser-bar {
    background: rgba(26, 26, 26, 0.95);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
    animation: pulse 2s ease-in-out infinite;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
    animation: pulse 2s ease-in-out 0.3s infinite;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
    animation: pulse 2s ease-in-out 0.6s infinite;
}

.terminal-content {
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.terminal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4ade80 50%, transparent 100%);
    animation: scan 3s linear infinite;
}

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

/* Support Section */
.platform-support {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.support-text {
    animation: fadeInLeft 1s ease-out;
}

.support-label {
    font-size: 14px;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.support-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.3);
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.4);
}

.support-visual {
    position: relative;
    height: 400px;
    animation: fadeInRight 1s ease-out;
}

.coins-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    font-size: 56px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-color: rgba(255, 165, 0, 0.3);
    animation-delay: 0.5s;
}

.coin-3 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.coin-4 {
    top: 10%;
    right: 20%;
    width: 100px;
    height: 100px;
    font-size: 40px;
    animation-delay: 1.5s;
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design for Platforms Page */
@media (max-width: 968px) {
    .platform-hero {
        min-height: 60vh;
        padding: 100px 20px 40px;
    }
    
    .platform-hero-title {
        font-size: 42px;
    }
    
    .platform-hero-subtitle {
        font-size: 16px;
    }
    
    .hero-phone-left {
        height: 400px;
        left: 5%;
        opacity: 0.7;
    }
    
    .hero-phone-right {
        height: 350px;
        right: 5%;
        opacity: 0.7;
    }
    
    .platform-grid {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .platform-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
    
    .platform-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platform-details-text {
        order: 2;
    }
    
    .platform-details-image {
        order: 1;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .platform-hero {
        min-height: 50vh;
        padding: 80px 15px 30px;
    }
    
    .platform-hero-title {
        font-size: 32px;
    }
    
    .platform-hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-platform-download {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-phone-left,
    .hero-phone-right {
        display: none;
    }
    
    .platform-grid {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .platform-category-label {
        font-size: 12px;
    }
    
    .platform-name {
        font-size: 14px;
    }
    
    .platform-details-title {
        font-size: 28px;
    }
    
    .platform-details-text h3 {
        font-size: 20px;
    }
    
    .platform-details-text p {
        font-size: 14px;
    }
    
    .mobile-mockup {
        width: 200px;
    }
    
    .support-title {
        font-size: 28px;
    }
    
    .support-card h3 {
        font-size: 18px;
    }
    
    .news-card-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .platform-hero-title {
        font-size: 28px;
    }
    
    .platform-grid {
        padding: 20px 15px;
    }
    
    .platform-details-title {
        font-size: 24px;
    }
    
    .support-title {
        font-size: 24px;
    }
}

/* Economic Calendar Styles */
.economic-calendar-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 40, 30, 0.95) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.economic-calendar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(113, 200, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.economic-calendar-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.economic-calendar-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.economic-calendar-hero .container {
    padding-bottom: 0;
}

.calendar-widget-section {
    background: #0a0a0a;
    padding: 0 0 40px;
    margin-top: 10px;
}

.calendar-widget-section .container {
    padding-top: 80px;
}

.calendar-widget-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* ============================================
   PARTNERS PAGE STYLES
   ============================================ */

/* Partners Hero Section */
.partners-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1419 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.partners-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.partners-coin {
    width: 250px;
    height: 250px;
    animation: floatCoin 6s ease-in-out infinite;
}

.partners-coin-left {
    animation-delay: 0s;
}

.partners-coin-right {
    animation-delay: 3s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

.partners-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4));
}

.partners-hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.partners-hero-title {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.partners-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.btn-partner {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    animation: buttonPulseGlow 2s ease-in-out infinite;
}

@keyframes buttonPulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(74, 222, 128, 0.5), 0 0 60px rgba(30, 144, 255, 0.3);
    }
}

.btn-partner:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.5), 0 0 80px rgba(30, 144, 255, 0.4);
}

/* Partners Stats Section */
.partners-stats {
    background: #0a0a0a;
    padding: 80px 0;
    position: relative;
}

.partners-stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-stats-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.partners-stats-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.partners-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    animation: rotateBg 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.partner-stat-card:hover::before {
    opacity: 1;
}

.partner-stat-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 20px 50px rgba(74, 222, 128, 0.3), 0 0 60px rgba(30, 144, 255, 0.2);
}

.partner-stat-value {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.partner-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Top Partners Section */
.top-partners {
    background: #0a0a0a;
    padding: 80px 0;
}

.top-partners-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.top-partners-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.top-partner-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.4);
    animation: badgeRotate 10s linear infinite;
}

@keyframes badgeRotate {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translateX(-50%) rotate(180deg) scale(1.1);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
}

.top-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.top-partner-item {
    text-align: center;
}

.top-partner-country {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.4;
}

.top-partner-amount {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Partners Offer Section */
.partners-offer {
    background: #0a0a0a;
    padding: 80px 0;
}

.partners-offer-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.partners-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.6s;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.3), 0 0 80px rgba(30, 144, 255, 0.2);
}

.offer-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.offer-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.5));
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.offer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.offer-program {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.4;
}

.offer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Earnings Calculator Section */
.earnings-calculator {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1419 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.earnings-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
}

.calculator-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.3;
}

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

.calculator-left,
.calculator-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.calculator-icon {
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.calculator-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    line-height: 1.4;
}

.calculator-value {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.calculator-instruction {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.calculator-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.calculator-slider-wrapper {
    margin-bottom: 40px;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #1e90ff 0%, #4ade80 100%);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 16px;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.5);
    transition: all 0.3s;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(74, 222, 128, 0.7);
}

.calculator-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.5);
    transition: all 0.3s;
}

.calculator-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(74, 222, 128, 0.7);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.btn-download {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.5), 0 0 60px rgba(30, 144, 255, 0.3);
}

/* Why Partner Section */
.why-partner {
    background: #0a0a0a;
    padding: 100px 0;
}

.why-partner-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-partner-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    line-height: 1.6;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.why-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 20px 50px rgba(74, 222, 128, 0.3), 0 0 60px rgba(30, 144, 255, 0.2);
}

.why-card-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.why-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Partner CTA Section */
.partner-cta {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.partner-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.partner-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-partner-white {
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.btn-partner-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* Contact Banner Section */
.contact-banner {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.8) 0%, rgba(80, 80, 80, 0.8) 100%);
    padding: 30px 0;
}

.contact-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-banner-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.contact-banner-links {
    display: flex;
    gap: 40px;
}

.contact-banner-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-banner-link:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.contact-banner-link span {
    font-size: 20px;
}

/* Responsive Design for Partners Page */
@media (max-width: 1024px) {
    .partners-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .top-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-offer-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .partners-coin {
        width: 150px;
        height: 150px;
    }
    
    .partners-hero-title {
        font-size: 48px;
    }
    
    .top-partners-grid {
        grid-template-columns: 1fr;
    }
    
    .why-partner-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-banner-links {
        flex-direction: column;
        gap: 20px;
    }
}

.tradingview-widget-container {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    overflow: hidden;
}

.tradingview-widget-container__widget {
    height: 100%;
}

/* Responsive Styles for Economic Calendar */
@media (max-width: 968px) {
    .economic-calendar-hero {
        padding: 130px 0 0;
    }
    
    .economic-calendar-title {
        font-size: 42px;
    }
    
    .economic-calendar-subtitle {
        font-size: 16px;
    }
    
    .calendar-widget-section {
        padding: 0 0 60px;
        margin-top: -60px;
    }
    
    .calendar-widget-section .container {
        padding-top: 60px;
    }
    
    .tradingview-widget-container {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .economic-calendar-hero {
        padding: 120px 0 0;
    }
    
    .economic-calendar-title {
        font-size: 36px;
    }
    
    .economic-calendar-subtitle {
        font-size: 15px;
    }
    
    .calendar-widget-wrapper {
        padding: 0;
    }
    
    .tradingview-widget-container {
        height: 600px;
    }
}

@media (max-width: 640px) {
    .economic-calendar-title {
        font-size: 32px;
    }
    
    .economic-calendar-subtitle {
        font-size: 14px;
    }
    
    .tradingview-widget-container {
        height: 500px;
    }
}

/* ============================================
   MARGIN CALCULATOR PAGE STYLES
   ============================================ */

/* Calculator Hero Section */
.calculator-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1419 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.calculator-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    animation: heroGlowCalc 6s ease-in-out infinite;
}

@keyframes heroGlowCalc {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.calculator-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.calculator-hero-title {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.calculator-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Calculator Form Section */
.calculator-form-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.calculator-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.calculator-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.calculator-form:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.form-select,
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234ade80' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3), 0 0 40px rgba(30, 144, 255, 0.2);
    animation: inputFocusGlow 2s ease-in-out infinite;
}

@keyframes inputFocusGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.3), 0 0 40px rgba(30, 144, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(74, 222, 128, 0.5), 0 0 50px rgba(30, 144, 255, 0.3);
    }
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-calculate {
    width: 100%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    position: relative;
    z-index: 1;
    animation: buttonGlowCalc 3s ease-in-out infinite;
}

@keyframes buttonGlowCalc {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(74, 222, 128, 0.5), 0 0 60px rgba(30, 144, 255, 0.3);
    }
}

.btn-calculate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.5), 0 0 80px rgba(30, 144, 255, 0.4);
}

/* Calculator Results */
.calculator-result {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    animation: resultSlideIn 0.5s ease-out;
}

@keyframes resultSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.result-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.result-value {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: valueGlow 2s ease-in-out infinite;
}

@keyframes valueGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* Support Section */
.calculator-support {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.support-card {
    background: linear-gradient(135deg, rgba(15, 60, 45, 0.6) 0%, rgba(10, 40, 30, 0.6) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 32px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
    animation: supportGlow 8s ease-in-out infinite;
}

@keyframes supportGlow {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.support-content {
    position: relative;
    z-index: 1;
}

.support-tag {
    font-size: 14px;
    color: #4ade80;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    animation: tagBounce 2s ease-in-out infinite;
}

@keyframes tagBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.support-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 32px;
}

.btn-support {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.btn-support:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.5), 0 0 80px rgba(30, 144, 255, 0.4);
}

.support-coins {
    position: relative;
    height: 400px;
    z-index: 1;
}

.support-coin {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.5));
}

.coin-1 {
    top: 0;
    left: 0;
    animation: floatCoin1 5s ease-in-out infinite;
}

.coin-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    animation: floatCoin2 6s ease-in-out infinite;
}

.coin-3 {
    bottom: 0;
    right: 0;
    animation: floatCoin3 5.5s ease-in-out infinite;
}

.coin-4 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation: floatCoin4 4.5s ease-in-out infinite;
}

@keyframes floatCoin1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatCoin2 {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -60%) rotate(15deg);
    }
}

@keyframes floatCoin3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-10deg);
    }
}

@keyframes floatCoin4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
}

/* Responsive Design for Margin Calculator */
@media (max-width: 1024px) {
    .support-card {
        grid-template-columns: 1fr;
        padding: 50px 40px;
    }
    
    .support-coins {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .calculator-hero-title {
        font-size: 42px;
    }
    
    .calculator-form {
        padding: 40px 30px;
    }
    
    .support-title {
        font-size: 36px;
    }
    
    .support-coin {
        width: 80px;
        height: 80px;
    }
    
    .coin-2 {
        width: 120px;
        height: 120px;
    }
}


@media (max-width: 480px) {
    .economic-calendar-hero {
        padding: 110px 0 0;
    }
    
    .economic-calendar-title {
        font-size: 28px;
    }
    
    .calendar-widget-wrapper {
        padding: 0;
    }
    
    .tradingview-widget-container {
        height: 450px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE CSS
   ============================================ */

/* Tablet & Small Laptop (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 6px;
        padding: 6px 10px;
    }
    
    .nav-item {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    /* Remove complex animations on mobile */
    * {
        animation: none !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Minimal Navigation */
    .navbar {
        padding: 10px 0;
        background: rgba(10, 10, 10, 0.95);
    }
    
    .nav-content {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        z-index: 1001;
    }
    
    /* Minimal Mobile Menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 15px;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        overflow-y: auto;
        gap: 5px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
        padding: 12px 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
        margin: 2px 0;
    }
    
    .nav-item.dropdown.active {
        padding-left: 0;
        padding-right: 0;
    }
    
    .nav-item.dropdown.active > span {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin: 8px 0 0 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        border: none;
        box-shadow: none;
        padding: 15px;
        border-radius: 8px;
        width: 100% !important;
        text-align: center;
        left: 0 !important;
        right: 0 !important;
        transition: none !important;
        animation: none !important;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .dropdown-horizontal {
        grid-template-columns: 1fr;
        min-width: auto;
        padding: 0;
        gap: 8px;
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .dropdown-horizontal .dropdown-item,
    .dropdown-item {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
        display: block;
        width: 90%;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
        text-decoration: none;
        transform: none !important;
        transition: none !important;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    /* Minimal action buttons */
    .nav-actions {
        display: flex;
        width: 100%;
        order: 10;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 10px;
    }
    
    .btn-signin,
    .btn-register {
        flex: 1;
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 8px;
        justify-content: center;
    }
    
    .btn-signin,
    .btn-register {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
    }
    
    /* Minimal Hero Section */
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 10px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    /* Minimal Stats */
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
        border-radius: 15px;
        margin-top: 30px;
        background: rgba(26, 26, 26, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .stat-item {
        padding: 8px 0;
    }
    
    .stat-divider {
        width: 60%;
        height: 1px;
        opacity: 0.3;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 12px;
        opacity: 0.7;
    }
    
    /* Minimal Sections */
    .features,
    .markets,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* Minimal Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 12px;
        min-height: 180px;
        background: rgba(26, 26, 26, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transform: none !important;
        transition: none !important;
    }
    
    .feature-card::before {
        display: none;
    }
    
    .feature-card:hover {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
    }
    
    .feature-card:hover .feature-image img {
        transform: none !important;
    }
    
    .feature-content {
        padding: 20px 15px;
    }
    
    .feature-title {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .feature-label {
        font-size: 14px;
        opacity: 0.8;
    }
    
    .feature-image {
        width: 50%;
        height: 50%;
        opacity: 0.6;
    }
    
    /* Minimal Markets Grid */
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .market-card {
        padding: 25px 20px;
        border-radius: 12px;
        background: rgba(26, 26, 26, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .market-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
    }
    
    .market-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .market-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .market-description {
        font-size: 13px;
        line-height: 1.5;
        opacity: 0.8;
    }
    
    /* Minimal CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section::before {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    /* Minimal Footer */
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-section ul {
        align-items: center;
        gap: 8px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-icons {
        gap: 10px;
        justify-content: center;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    /* Forex/Markets Pages Mobile */
    .forex-hero,
    .crypto-hero,
    .indices-hero,
    .commodities-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .forex-hero-coins,
    .crypto-hero-coins {
        display: none !important;
    }
    
    .forex-hero-title,
    .crypto-hero-title,
    .indices-hero-title,
    .commodities-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .forex-hero-subtitle,
    .crypto-hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .forex-content-grid,
    .crypto-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .forex-sidebar,
    .crypto-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .forex-matrix-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .forex-matrix {
        min-width: 600px;
        font-size: 12px;
    }
    
    .forex-matrix th,
    .forex-matrix td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    /* Economic Calendar Mobile */
    .economic-calendar-hero {
        padding: 80px 0 40px;
    }
    
    .economic-calendar-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .economic-calendar-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .calendar-widget-wrapper {
        padding: 0;
        border-radius: 12px;
    }
    
    /* Margin Calculator Mobile */
    .margin-calculator-hero {
        padding: 80px 0 40px;
    }
    
    .calculator-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calculator-input label,
    .calculator-output label {
        font-size: 13px;
    }
    
    .calculator-input input,
    .calculator-input select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    /* About Us Mobile */
    .about-hero-section {
        padding: 80px 0 40px;
    }
    
    .about-hero-coin {
        display: none !important;
    }
    
    .about-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .about-hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .stats-grid-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-divider-banner {
        display: none;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-image {
        order: -1;
        height: 250px;
    }
    
    /* Platforms Mobile */
    .platforms-hero {
        padding: 80px 0 40px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card {
        padding: 25px 20px;
    }
    
    /* Contact Us Mobile */
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    /* Social Section Minimal Mobile */
    .social-section {
        padding: 40px 0;
    }
    
    .social-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
        animation: none !important;
    }
    
    .social-icons-large {
        gap: 12px;
        animation: none !important;
    }
    
    .social-icon-large {
        width: 40px;
        height: 40px;
        transition: none !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }
    
    .social-icon-large svg {
        width: 22px;
        height: 22px;
    }
    
    .social-icon-large::before {
        display: none;
    }
    
    .social-icon-large:hover {
        transform: none !important;
    }
    
    .social-icon-large:hover::before {
        transform: none !important;
    }
    
    /* Accounts Mobile */
    .accounts-hero {
        padding: 80px 0 40px;
    }
    
    .accounts-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .accounts-hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    /* Account Cards Section Mobile */
    .account-cards-section {
        padding: 40px 0;
    }
    
    .section-header-centered {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .section-title {
        font-size: 24px;
        margin: 10px 0;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .account-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .account-card {
        border-radius: 15px;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .account-card:hover {
        transform: none !important;
        box-shadow: 0 10px 25px rgba(30, 144, 255, 0.2);
    }
    
    .account-card-header {
        padding: 25px 20px;
    }
    
    .account-icon {
        width: 60px;
        height: 60px;
        animation: none !important;
    }
    
    .account-card:hover .account-icon {
        transform: none !important;
    }
    
    .account-name {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .account-tag {
        font-size: 12px;
    }
    
    .account-card-body {
        padding: 25px 20px;
    }
    
    .feature-value {
        font-size: 36px;
    }
    
    .feature-label {
        font-size: 14px;
    }
    
    .account-features-list li {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .btn-account-register {
        padding: 12px;
        font-size: 14px;
        border-radius: 25px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Partners Mobile */
    .partners-hero {
        padding: 80px 0 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    /* Remove ALL animations and transitions */
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    /* Ultra minimal menu */
    .nav-menu {
        top: 55px;
        padding: 12px;
        height: calc(100vh - 55px);
    }
    
    .nav-item {
        padding: 10px 12px;
        font-size: 13px;
        margin: 1px 0;
    }
    
    .dropdown-horizontal .dropdown-item,
    .dropdown-item {
        padding: 8px 12px;
        font-size: 12px;
        width: 90%;
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    
    /* Minimal action buttons on smaller screens */
    .nav-actions {
        margin-top: 12px;
        padding-top: 12px;
        gap: 8px;
    }
    
    .btn-signin,
    .btn-register {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    /* Ultra minimal hero */
    .hero {
        padding: 80px 0 35px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .hero-buttons {
        gap: 8px;
        padding: 0 15px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 300px;
    }
    
    .hero-stats {
        padding: 18px 20px;
        gap: 12px;
        margin-top: 25px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Ultra minimal sections */
    .features,
    .markets,
    .cta-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .features-grid,
    .markets-grid {
        gap: 12px;
    }
    
    .feature-card,
    .market-card {
        padding: 20px 15px;
        border-radius: 10px;
        min-height: 160px;
    }
    
    .feature-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .feature-label,
    .market-description {
        font-size: 12px;
    }
    
    .market-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .market-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    /* Ultra minimal CTA */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        gap: 8px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        max-width: 300px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Ultra minimal footer */
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 12px;
    }
    
    .footer-bottom {
        gap: 12px;
        padding-top: 15px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 11px 18px;
        font-size: 12px;
    }
    
    .hero-stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .feature-card,
    .market-card {
        padding: 18px 12px;
    }
}

/* ============================================
   TECHNOLOGY SECTION RESPONSIVE
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .tech-title {
        font-size: 40px;
    }
    
    .tech-buttons {
        justify-content: center;
    }
    
    .tech-images {
        justify-content: center;
    }
    
    .phone-container {
        width: 380px;
        height: 350px;
    }
    
    .phone {
        width: 180px;
        height: 360px;
    }
    
    .tech-features {
        gap: 30px;
    }
    
    .tech-feature {
        padding: 50px 30px;
    }
}

/* Tablet Portrait & Large Phone (max-width: 768px) */
@media (max-width: 768px) {
    .technology {
        padding: 50px 0;
    }
    
    .tech-content {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .tech-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .tech-description {
        font-size: 15px;
        margin: 20px 0;
        line-height: 1.5;
    }
    
    .tech-description br {
        display: none;
    }
    
    .tech-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .tech-buttons .btn-primary,
    .tech-buttons .btn-tertiary {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Minimal Phone Display */
    .tech-images {
        justify-content: center;
        margin: 30px 0;
    }
    
    .phone-container {
        width: 280px;
        height: 280px;
    }
    
    .phone {
        width: 140px;
        height: 280px;
        border-radius: 25px;
        border-width: 6px;
    }
    
    .phone-screenshot {
        border-radius: 19px;
    }
    
    .phone-1 {
        left: 10px;
        transform: rotate(-6deg) translateY(5px);
    }
    
    .phone-2 {
        right: 10px;
        top: -20px;
        transform: rotate(6deg) translateY(5px);
    }
    
    .phone:hover {
        transform: scale(1.05) rotate(0deg);
    }
    
    /* Minimal Feature Cards */
    .tech-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-feature {
        padding: 35px 25px;
        border-radius: 15px;
        background: rgba(26, 26, 26, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .tech-feature::before {
        display: none;
    }
    
    .tech-feature:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
    }
    
    .tech-feature-image {
        width: 150px;
        height: 110px;
        margin-bottom: 20px;
    }
    
    .lock-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .lock-body {
        width: 70px;
        height: 50px;
    }
    
    .lock-shackle {
        width: 45px;
        height: 45px;
        border-width: 6px;
    }
    
    .tech-feature-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .tech-feature-text {
        font-size: 14px;
        opacity: 0.8;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .technology {
        padding: 40px 0;
    }
    
    .tech-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .tech-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .tech-title br {
        display: none;
    }
    
    .tech-description {
        font-size: 14px;
        margin: 15px 0;
        padding: 0 10px;
    }
    
    .tech-buttons {
        gap: 8px;
        padding: 0 15px;
    }
    
    .tech-buttons .btn-primary,
    .tech-buttons .btn-tertiary {
        max-width: 300px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Ultra Minimal Phone Display */
    .phone-container {
        width: 220px;
        height: 220px;
    }
    
    .phone {
        width: 110px;
        height: 220px;
        border-radius: 20px;
        border-width: 4px;
    }
    
    .phone-screenshot {
        border-radius: 16px;
    }
    
    .phone-1 {
        left: 5px;
        transform: rotate(-5deg) translateY(3px);
    }
    
    .phone-2 {
        right: 5px;
        top: -15px;
        transform: rotate(5deg) translateY(3px);
    }
    
    .phone:hover {
        transform: scale(1.03) rotate(0deg);
    }
    
    /* Ultra Minimal Feature Cards */
    .tech-features {
        gap: 15px;
    }
    
    .tech-feature {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .tech-feature-image {
        width: 120px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .lock-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .lock-body {
        width: 60px;
        height: 40px;
        border-width: 2px;
    }
    
    .lock-shackle {
        width: 38px;
        height: 38px;
        border-width: 5px;
    }
    
    .lock-keyhole {
        width: 16px;
        height: 16px;
        bottom: 15px;
    }
    
    .tech-feature-title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .tech-feature-title br {
        display: inline;
    }
    
    .tech-feature-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .tech-feature-text br {
        display: inline;
    }
}

/* Extra Small Mobile - Technology Section */
@media (max-width: 375px) {
    .tech-title {
        font-size: 24px;
    }
    
    .tech-description {
        font-size: 13px;
    }
    
    .phone-container {
        width: 190px;
        height: 190px;
    }
    
    .phone {
        width: 95px;
        height: 190px;
        border-radius: 18px;
        border-width: 3px;
    }
    
    .phone-screenshot {
        border-radius: 15px;
    }
    
    .tech-feature {
        padding: 25px 15px;
    }
    
    .tech-feature-title {
        font-size: 18px;
    }
    
    .tech-feature-text {
        font-size: 12px;
    }
}

/* ============================================
   END TECHNOLOGY SECTION RESPONSIVE
   ============================================ */

/* ============================================
   FOOTER SECTION RESPONSIVE
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-column ul {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 35px;
        align-items: center;
        text-align: center;
    }
    
    .social-links,
    .app-buttons {
        justify-content: center;
    }
}

/* Tablet Portrait & Large Phone (max-width: 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer::before {
        display: none;
    }
    
    .footer-top {
        gap: 30px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
    
    .footer-logo {
        width: 90px;
        margin-bottom: 15px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-column {
        padding: 18px 15px;
        min-height: 120px;
    }
    
    .footer-column h4 {
        font-size: 10px;
    }
    
    .footer-column p {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .footer-column ul {
        gap: 15px;
        margin-top: 15px;
    }
    
    .footer-column ul li a {
        font-size: 12px;
    }
    
    /* Minimal Newsletter */
    .newsletter-form {
        margin-top: 15px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form input {
        padding: 12px 20px;
        font-size: 12px;
        border-radius: 25px;
    }
    
    .newsletter-form button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .newsletter-form input:focus {
        animation: none;
    }
    
    .newsletter-form button {
        animation: none;
    }
    
    .newsletter-form button:hover {
        transform: scale(1.03);
    }
    
    /* Minimal Footer Middle */
    .footer-middle {
        padding: 30px 0;
        gap: 25px;
    }
    
    .footer-middle-left h4,
    .footer-middle-right h4 {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    .social-links a:hover {
        transform: translateY(-2px);
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .app-btn {
        padding: 12px 18px;
        font-size: 12px;
        justify-content: center;
    }
    
    .app-btn:hover {
        transform: translateY(-1px);
    }
    
    /* Minimal Footer Legal */
    .footer-legal {
        padding: 30px 0;
    }
    
    .legal-section {
        margin-bottom: 20px;
    }
    
    .legal-section h5 {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .legal-section p {
        font-size: 10px;
        line-height: 1.6;
    }
    
    /* Minimal Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }
    
    .footer-bottom-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-logo .bottom-logo {
        height: 22px;
    }
    
    .footer-bottom-logo span {
        font-size: 10px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 11px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .footer {
        padding: 35px 0 0;
    }
    
    .footer-top {
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-logo {
        width: 80px;
        margin-bottom: 12px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-column {
        padding: 15px 12px;
        min-height: 110px;
        border-radius: 10px;
    }
    
    .footer-column h4 {
        font-size: 9px;
        margin-bottom: 0;
    }
    
    .footer-column p {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .footer-column ul {
        gap: 12px;
        margin-top: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column ul li {
        width: 100%;
        text-align: center;
    }
    
    .footer-column ul li a {
        font-size: 11px;
        padding: 8px 15px;
        display: block;
    }
    
    /* Ultra Minimal Newsletter */
    .newsletter-form {
        margin-top: 12px;
        max-width: 320px;
    }
    
    .newsletter-form input {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .newsletter-form button {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    /* Ultra Minimal Footer Middle */
    .footer-middle {
        padding: 25px 0;
        gap: 20px;
    }
    
    .footer-middle-left h4,
    .footer-middle-right h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .social-links {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .app-buttons {
        gap: 8px;
        max-width: 260px;
    }
    
    .app-btn {
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    /* Ultra Minimal Footer Legal */
    .footer-legal {
        padding: 25px 0;
    }
    
    .legal-section {
        margin-bottom: 18px;
    }
    
    .legal-section h5 {
        font-size: 9px;
        margin-bottom: 8px;
    }
    
    .legal-section p {
        font-size: 9px;
        line-height: 1.5;
        text-align: left;
    }
    
    /* Ultra Minimal Footer Bottom */
    .footer-bottom {
        gap: 15px;
        padding: 20px 0;
    }
    
    .footer-bottom-logo {
        gap: 8px;
    }
    
    .footer-bottom-logo .bottom-logo {
        height: 20px;
    }
    
    .footer-bottom-logo span {
        font-size: 9px;
    }
    
    .footer-bottom-links {
        gap: 8px;
    }
    
    .footer-bottom-links a {
        font-size: 10px;
    }
}

/* Extra Small Mobile - Footer Section */
@media (max-width: 375px) {
    .footer-logo {
        width: 70px;
    }
    
    .footer-column {
        padding: 12px 10px;
        min-height: 100px;
    }
    
    .footer-column h4 {
        font-size: 8px;
    }
    
    .footer-column p,
    .footer-column ul li a {
        font-size: 10px;
    }
    
    .newsletter-form {
        max-width: 280px;
    }
    
    .newsletter-form input {
        padding: 9px 16px;
        font-size: 10px;
    }
    
    .newsletter-form button {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .app-buttons {
        max-width: 240px;
    }
    
    .app-btn {
        padding: 9px 14px;
        font-size: 10px;
    }
    
    .legal-section p {
        font-size: 8px;
    }
    
    .footer-bottom-logo .bottom-logo {
        height: 18px;
    }
    
    .footer-bottom-logo span,
    .footer-bottom-links a {
        font-size: 9px;
    }
}

/* ============================================
   END FOOTER SECTION RESPONSIVE
   ============================================ */

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-signin,
    .btn-register {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        padding: 0 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-stats {
        padding: 20px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Sections */
    .features,
    .markets,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .market-card {
        padding: 25px 20px;
    }
    
    .market-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .market-title {
        font-size: 20px;
    }
    
    .market-description {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* ============================================
   ADDITIONAL MOBILE RESPONSIVE UTILITIES
   ============================================ */

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive tables */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Minimal Product Grid Mobile */
    .products-grid-container {
        padding: 15px 12px;
        border-radius: 15px;
        background: rgba(26, 26, 26, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 2px;
        border-radius: 12px;
    }
    
    .grid-cell {
        min-height: 70px;
        background: rgba(30, 30, 30, 0.5);
    }
    
    .forex-cell h3,
    .crypto-cell h3,
    .indices-cell h3,
    .commodities-cell h3 {
        font-size: 14px;
    }
    
    .product-arrow {
        width: 28px;
        height: 28px;
        font-size: 13px;
        border-width: 1.5px;
    }
    
    .grid-coin {
        width: 35px;
        height: 35px;
    }
    
    .grid-coin.large {
        width: 45px;
        height: 45px;
    }
    
    .trade-now-cell {
        gap: 8px;
        border-radius: 0 0 10px 0;
    }
    
    .trade-now-cell h3 {
        font-size: 16px;
    }
    
    .trade-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    /* Hide or minimize border decorations */
    .border-image {
        opacity: 0.08;
    }
    
    .dollar-border {
        width: 100px;
        height: 100px;
    }
    
    .pound-border {
        width: 80px;
        height: 80px;
    }
    
    .dollar-1 {
        left: -40px;
        bottom: 20px;
    }
    
    .dollar-2 {
        right: -35px;
        bottom: 40px;
    }
}

@media (max-width: 576px) {
    /* Ultra minimal grid for extra small screens */
    .products-grid-container {
        padding: 12px 10px;
        border-radius: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        border-radius: 10px;
    }
    
    .grid-cell {
        min-height: 65px;
    }
    
    .forex-cell h3,
    .crypto-cell h3,
    .indices-cell h3,
    .commodities-cell h3 {
        font-size: 12px;
    }
    
    .product-arrow {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .grid-coin {
        width: 28px;
        height: 28px;
    }
    
    .grid-coin.large {
        width: 35px;
        height: 35px;
    }
    
    .trade-now-cell {
        gap: 6px;
        border-radius: 0 0 8px 0;
    }
    
    .trade-now-cell h3 {
        font-size: 14px;
    }
    
    .trade-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Hide all decorative elements */
    .border-image,
    .products::before,
    .products::after {
        display: none !important;
    }
}

/* Responsive Iframe and Video */
@media (max-width: 768px) {
    iframe,
    video,
    .tradingview-widget-container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Fix overflow issues */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
}

/* Responsive form elements */
@media (max-width: 768px) {
    input,
    select,
    textarea,
    button {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        width: 100%;
    }
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    button,
    .btn-primary,
    .btn-secondary,
    .btn-signin,
    .btn-register {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
}

/* Improve readability on mobile */
@media (max-width: 576px) {
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    p {
        line-height: 1.7;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
}

/* Prevent text overflow */
@media (max-width: 768px) {
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Optimize spacing for mobile */
@media (max-width: 576px) {
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Smooth scrolling on all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}