/* Invadigm - Global Styles */
/* ============================ */

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

:root {
    --color-primary: #e31e24;
    --color-primary-dark: #b8181d;
    --color-accent: #00d4aa;
    --color-accent-dark: #00b894;
    --color-dark: #0a0a1a;
    --color-dark-2: #12122a;
    --color-dark-3: #1a1a3a;
    --color-purple: #1e1245;
    --color-blue: #0f1b3d;
    --color-text: #ffffff;
    --color-text-gray: #a0a0b8;
    --color-text-gray-dark: #6c6c8a;
    --color-transparent-white: rgba(255,255,255,0.05);
    --color-border: rgba(255,255,255,0.1);
    --gradient-main: linear-gradient(135deg, #1a0f3a 0%, #0f1b3d 50%, #0a0a2a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26,15,58,0.95) 0%, rgba(15,27,61,0.9) 100%);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(0,212,170,0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

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

/* ============================ */
/* Header                       */
/* ============================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.header-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.header-logo .brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-gray);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.header-nav a:hover,
.header-nav a.active {
    color: #fff;
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-gray);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.lang-selector:hover {
    border-color: var(--color-accent);
    color: #fff;
}

.lang-selector img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.btn-login {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-login:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(227,30,36,0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ============================ */
/* Hero Section                 */
/* ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--gradient-main);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.hero-text h1 span {
    display: block;
}

.hero-text h1 .highlight {
    color: var(--color-accent);
}

.hero-text p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-text p span {
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227,30,36,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    flex: 1;
    max-width: 560px;
    position: relative;
}

.hero-chart {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.hero-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-chart-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
}

.hero-chart-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.hero-chart-pair {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--color-border);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
}

.hero-chart-price {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.price-item {
    flex: 1;
}

.price-item .label {
    font-size: 12px;
    color: var(--color-text-gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-item .value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.price-item.bid .value {
    color: var(--color-accent);
}

.price-item.ask .value {
    color: var(--color-primary);
}

.hero-chart-graph {
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.2);
}

.hero-chart-graph svg {
    width: 100%;
    height: 100%;
}

/* ============================ */
/* Section Common              */
/* ============================ */

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-dark-2 {
    background: var(--color-dark-2);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.section-title span {
    display: inline;
}

.section-title .accent {
    color: var(--color-primary);
}

.section-description {
    font-size: 17px;
    color: var(--color-text-gray);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* ============================ */
/* Why Choose Section          */
/* ============================ */

.why-choose {
    background: var(--color-dark);
}

.why-choose-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.why-choose-top .left {
    flex: 1;
}

.why-choose-top .right {
    max-width: 400px;
    text-align: right;
}

.why-choose-top .right .link-more {
    color: var(--color-accent);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.why-choose-top .right .link-more:hover {
    gap: 12px;
}

.why-choose-top .right p {
    color: var(--color-text-gray);
    font-size: 15px;
    margin-bottom: 12px;
}

.why-choose-top .right h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.advantage-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card.bg {
    background: rgba(227,30,36,0.05);
    border-color: rgba(227,30,36,0.15);
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0,212,170,0.15);
}

.advantage-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,212,170,0.1);
    border-radius: 50%;
}

.advantage-card .icon img {
    width: 28px;
    height: 28px;
}

.advantage-card .name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

/* ============================ */
/* Platform Section           */
/* ============================ */

.platform {
    background: var(--color-dark-2);
    overflow: hidden;
}

.platform-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.platform-text {
    flex: 1;
}

.platform-text .bg-title {
    position: absolute;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    top: 0;
    left: 0;
    pointer-events: none;
}

.platform-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
}

.platform-text p {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.platform-text .btn-primary {
    margin-top: 8px;
}

.platform-image {
    flex: 1;
    position: relative;
}

.platform-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ============================ */
/* Information Module          */
/* ============================ */

.info-module {
    background: var(--color-dark);
}

.info-module-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.info-module-image {
    flex: 1;
}

.info-module-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.info-module-text {
    flex: 1;
}

.info-module-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
}

.info-module-text p {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================ */
/* Account Section            */
/* ============================ */

.account {
    background: var(--color-dark-2);
}

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

.account-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.account-header p {
    font-size: 17px;
    color: var(--color-text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.account-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.account-tab {
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-gray);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.account-tab:hover {
    color: #fff;
    border-color: var(--color-accent);
}

.account-tab.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.account-table-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
}

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

.account-table thead {
    background: rgba(255,255,255,0.05);
}

.account-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-border);
}

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

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

.account-table td:first-child {
    color: var(--color-accent);
    font-weight: 600;
}

.account-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.account-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

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

/* ============================ */
/* Products Section          */
/* ============================ */

.products {
    background: var(--color-dark);
}

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

.products-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.products-header p {
    font-size: 17px;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: attr(data-num);
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0,212,170,0.15);
}

.product-card .icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227,30,36,0.15), rgba(0,212,170,0.15));
    border-radius: 50%;
}

.product-card .icon svg {
    width: 36px;
    height: 36px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

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

/* ============================ */
/* Awards Section            */
/* ============================ */

.awards {
    background: var(--color-dark-2);
    overflow: hidden;
}

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

.awards-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.awards-header p {
    font-size: 17px;
    color: var(--color-text-gray);
}

.awards-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.awards-slider::-webkit-scrollbar {
    height: 6px;
}

.awards-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}

.awards-slider::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.award-item {
    flex: 0 0 280px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    scroll-snap-align: start;
    transition: var(--transition);
}

.award-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.award-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

.award-item p {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.6;
    white-space: pre-line;
}

/* ============================ */
/* Payments Section          */
/* ============================ */

.payments {
    background: var(--color-dark);
}

.payments-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.payments-text {
    flex: 1;
}

.payments-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.payments-text p {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.payments-text .tag {
    display: inline-block;
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.payments-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.payment-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.payment-item.bg {
    background: rgba(227,30,36,0.05);
}

.payment-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.payment-item img {
    width: 100%;
    max-width: 160px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.payment-item .name {
    font-size: 15px;
    color: var(--color-text-gray);
    font-weight: 500;
}

/* ============================ */
/* Advertising Section       */
/* ============================ */

.advertising {
    background: var(--color-dark-2);
    overflow: hidden;
}

.advertising-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.advertising-text {
    flex: 1;
}

.advertising-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.2;
}

.advertising-text h2 span {
    display: block;
}

.advertising-text h2 .accent {
    color: var(--color-primary);
}

.advertising-image {
    flex: 1;
}

.advertising-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ============================ */
/* Footer                    */
/* ============================ */

.footer {
    background: var(--color-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-gray);
    transition: var(--transition);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--color-text-gray);
    transition: var(--transition);
}

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

.footer-contact .contact-item {
    margin-bottom: 16px;
}

.footer-contact .contact-item .label {
    font-size: 13px;
    color: var(--color-text-gray-dark);
    margin-bottom: 4px;
}

.footer-contact .contact-item .value {
    font-size: 14px;
    color: var(--color-text-gray);
}

.footer-risk {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 40px;
}

.footer-risk h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-risk p {
    font-size: 13px;
    color: var(--color-text-gray-dark);
    line-height: 1.8;
}

.footer-risk p a {
    color: var(--color-accent);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: var(--color-text-gray-dark);
}

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

.footer-bottom .links a {
    font-size: 13px;
    color: var(--color-text-gray-dark);
    transition: var(--transition);
}

.footer-bottom .links a:hover {
    color: var(--color-accent);
}

/* ============================ */
/* Cookie Banner             */
/* ============================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 16px 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--color-text-gray);
}

.cookie-banner .btn-agree {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-banner .btn-agree:hover {
    background: var(--color-primary-dark);
}

.cookie-banner .btn-reject {
    background: transparent;
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-banner .btn-reject:hover {
    border-color: #fff;
}

/* ============================ */
/* Chat Widget               */
/* ============================ */

.chat-widget {
    position: fixed;
    bottom: 80px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(227,30,36,0.4);
    transition: var(--transition);
}

.chat-widget:hover {
    transform: scale(1.1);
}

.chat-widget svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

/* ============================ */
/* News Page Styles          */
/* ============================ */

.news-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--gradient-main);
    text-align: center;
}

.news-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.news-hero p {
    font-size: 18px;
    color: var(--color-text-gray);
}

.news-list-section {
    padding: 60px 0 100px;
    background: var(--color-dark);
}

.news-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-filter-item {
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-gray);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.news-filter-item:hover,
.news-filter-item.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

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

.news-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0,212,170,0.15);
}

.news-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(227,30,36,0.9);
    backdrop-filter: blur(10px);
}

.news-card-body {
    padding: 24px;
}

.news-card-date {
    font-size: 13px;
    color: var(--color-text-gray-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .read-more {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.news-card:hover .read-more {
    gap: 12px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.news-pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-gray);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.news-pagination a:hover {
    border-color: var(--color-accent);
    color: #fff;
}

.news-pagination a.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ============================ */
/* News Detail Page          */
/* ============================ */

.news-detail-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    background: var(--gradient-main);
}

.news-detail-hero .container {
    max-width: 900px;
}

.news-detail-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    margin-bottom: 20px;
}

.news-detail-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--color-text-gray);
}

.news-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-content {
    padding: 60px 0 100px;
    background: var(--color-dark);
}

.news-detail-content .container {
    max-width: 900px;
}

.news-detail-image {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text-gray);
}

.news-detail-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px;
}

.news-detail-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 16px;
}

.news-detail-body p {
    margin-bottom: 24px;
}

.news-detail-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    margin: 32px 0;
    background: rgba(255,255,255,0.03);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: #fff;
    font-size: 18px;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.news-detail-body li {
    margin-bottom: 12px;
    color: var(--color-text-gray);
}

.news-detail-body strong {
    color: #fff;
    font-weight: 700;
}

.news-detail-body img {
    width: 100%;
    border-radius: var(--radius);
    margin: 32px 0;
}

.news-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.news-detail-share .label {
    font-size: 15px;
    color: var(--color-text-gray);
    font-weight: 600;
}

.news-detail-share .share-buttons {
    display: flex;
    gap: 12px;
}

.news-detail-share .share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-gray);
    transition: var(--transition);
    font-size: 16px;
}

.news-detail-share .share-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.news-detail-nav .nav-item {
    flex: 1;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.news-detail-nav .nav-item:hover {
    border-color: var(--color-accent);
}

.news-detail-nav .nav-item .nav-label {
    font-size: 13px;
    color: var(--color-text-gray-dark);
    margin-bottom: 8px;
}

.news-detail-nav .nav-item .nav-title {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail-nav .nav-item.next {
    text-align: right;
}

/* ============================ */
/* Responsive                */
/* ============================ */

@media (max-width: 1024px) {
    .hero-content,
    .platform-inner,
    .info-module-inner,
    .payments-inner,
    .advertising-inner {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 42px;
    }

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

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

    .section-title,
    .account-header h2,
    .products-header h2,
    .awards-header h2 {
        font-size: 32px;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .advantages-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title,
    .account-header h2,
    .products-header h2,
    .awards-header h2 {
        font-size: 26px;
    }

    .news-detail-hero h1 {
        font-size: 26px;
    }

    .news-detail-nav {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
