/* Оптимизированные стили главной страницы homepage-optimized.css */

/* CSS Variables */
:root {
    --main-bg: #131722;
    --darker-bg: #1e222d;
    --border-color: #2a2e39;
    --accent-color: #95ce5a;
    --secondary-accent: #5a95ce;
    --tertiary-accent: #304FFE;
    --text-light: #d1d4dc;
    --text-lighter: #fff;
    --text-muted: #9ca3af;
    --chart-green: #26a69a;
    --chart-red: #ef5350;
    --light-bg: #f8f9fa;
    --light-text: #333;
    --gradient-blue: linear-gradient(135deg, #304FFE, #5a95ce);
    --gradient-green: linear-gradient(135deg, #95ce5a, #78a93a);
}

/* Base Styles */
body { margin: 0; padding: 0; overflow-x: hidden; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }

.home-wrapper {
    padding: 0;
    font-family: "Roboto", "Open Sans", Arial, sans-serif;
    color: var(--text-light);
    background: transparent;
}

.container { max-width: 1450px; margin: 0 auto; padding: 0 15px; }

/* SEO Hidden Title */
.seo-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Animation Classes */
.fade-in-section, .fade-in-left, .fade-in-right, .fade-in-scale {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }
.fade-in-scale { transform: scale(0.9); }

.fade-in-section.is-visible, .fade-in-left.is-visible, .fade-in-right.is-visible, .fade-in-scale.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left.is-visible { transform: translateX(0); }
.fade-in-right.is-visible { transform: translateX(0); }
.fade-in-scale.is-visible { transform: scale(1); }

/* Section Divider */
.section-divider {
    height: 4px;
    width: 100%;
    margin: 20px 0;
    background: linear-gradient(90deg, rgba(19,23,34,0), var(--accent-color) 50%, rgba(19,23,34,0));
    border-radius: 2px;
    opacity: 0.4;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine-divider 3s infinite;
}

@keyframes shine-divider {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--main-bg));
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    padding: 5px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    margin-top: -2px;
}

.hero-container {
    width: 70%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    padding: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232a2e39' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 0h35v35H0V0zm5 5h25v25H5V5zm5 5h15v15H10V10zm5 5h5v5h-5v-5zM40 5h25v25H40V5zm5 5h15v15H45V10zm5 5h5v5h-5v-5zM70 35H35v35h35V35zm-5 5H40v25h25V40zm-5 5H45v15h15V45zm-5 5h-5v5h5v-5zM30 40H5v25h25V40zm-5 5H10v15h15V45zm-5 5h-5v5h5v-5z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero-main { display: flex; flex-direction: column; justify-content: flex-start; }

/* Hero Slider */
.hero-slider-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 420px;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
    background: var(--darker-bg);
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.hero-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(19,23,34,0.95) 0%, rgba(19,23,34,0.8) 50%, rgba(19,23,34,0.2) 100%);
    padding: 25px 20px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.hero-slide:hover .hero-slide-content { transform: translateY(-5px); }

.hero-slide-title {
    color: var(--text-lighter);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transform: translateY(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-slide:hover .hero-slide-title { transform: translateY(-3px); }

.hero-slide-title a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-slide-title a:hover { color: var(--accent-color) !important; }

.hero-slide-category {
    display: inline-block;
    background: rgba(149,206,90,0.2);
    color: var(--accent-color);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    border: 1px solid var(--accent-color);
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-slide:hover .hero-slide-category {
    transform: translateY(-3px);
    background: rgba(149,206,90,0.3);
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-slider-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 18px;
}

.hero-slider-button:hover {
    background: var(--accent-color);
    color: var(--main-bg);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 18px rgba(149,206,90,0.5);
}

.hero-slider-button:active { transform: scale(0.95); }

/* Hero Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-slider-dot:hover {
    background: rgba(149,206,90,0.5);
    transform: scale(1.1);
}

.hero-slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(149,206,90,0.7);
}

/* Trader Tools */
.trader-tools-quick {
    background: rgba(30,34,45,0.8);
    border-radius: 8px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trader-tools-quick-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-lighter);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.trader-tools-quick-title i {
    margin-right: 10px;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    box-shadow: 0 3px 8px rgba(124,179,66,0.3);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trader-tools-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.trader-tool-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(19,23,34,0.8);
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(42,46,57,0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.trader-tool-quick-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    z-index: 1;
    opacity: 0;
}

.trader-tool-quick-item:hover::before {
    animation: shine 1.5s ease forwards;
}

@keyframes shine {
    0% { top: -150%; left: -150%; opacity: 0.5; }
    100% { top: 150%; left: 150%; opacity: 0; }
}

.trader-tool-quick-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background: rgba(19,23,34,0.95);
}

.trader-tool-quick-icon {
    font-size: 18px;
    margin-bottom: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-icon-1, .tool-icon-2, .tool-icon-3, .tool-icon-4 {
    background: linear-gradient(135deg, #7cb342, #558b2f);
    box-shadow: 0 4px 10px rgba(124,179,66,0.3);
}

.trader-tool-quick-item:hover .trader-tool-quick-icon { transform: scale(1.1); box-shadow: 0 6px 14px rgba(0,0,0,0.25); }

.trader-tool-quick-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-lighter);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Hero Banner */
.hero-banner {
    margin-top: 25px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(30,34,45,0.5);
    border: 1px solid var(--border-color);
}

.hero-banner img {
    display: block;
    width: 100%;
    max-height: 120px;
    object-fit: cover;
}

.hero-banner a { display: block; }

/* Market Overview Widget */
.market-overview {
    background: var(--main-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.market-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.market-overview-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-lighter);
    margin: 0;
    display: flex;
    align-items: center;
}

.market-overview-title i {
    margin-right: 12px;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    box-shadow: 0 3px 8px rgba(124,179,66,0.3);
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tradingview-widget-container {
    flex-grow: 1;
    height: calc(100% - 45px);
    overflow: hidden;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--darker-bg), #0f131d);
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    width: 120px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M10,30 L10,15 L15,15 L15,45 L10,45 Z' fill='rgba(38, 166, 154, 0.3)' /%3E%3Cpath d='M25,45 L25,20 L30,20 L30,35 L25,35 Z' fill='rgba(239, 83, 80, 0.3)' /%3E%3Cpath d='M40,25 L40,10 L45,10 L45,40 L40,40 Z' fill='rgba(38, 166, 154, 0.3)' /%3E%3Cpath d='M55,20 L55,5 L60,5 L60,35 L55,35 Z' fill='rgba(38, 166, 154, 0.3)' /%3E%3Cpath d='M70,40 L70,25 L75,25 L75,50 L70,50 Z' fill='rgba(239, 83, 80, 0.3)' /%3E%3Cpath d='M85,30 L85,15 L90,15 L90,45 L85,45 Z' fill='rgba(38, 166, 154, 0.3)' /%3E%3Cpath d='M100,40 L100,20 L105,20 L105,50 L100,50 Z' fill='rgba(239, 83, 80, 0.3)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-lighter);
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 0;
    letter-spacing: 0.5px;
    z-index: 1;
}

.section-title i {
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    box-shadow: 0 4px 12px rgba(124,179,66,0.3);
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-header:hover .section-title i {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(124,179,66,0.45);
}

.section-link {
    display: flex;
    align-items: center;
    color: var(--accent-color) !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    background: rgba(149,206,90,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(149,206,90,0.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.section-link:hover {
    transform: translateY(-3px);
    background: rgba(149,206,90,0.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.section-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.section-link:hover i { transform: translateX(3px); }

/* Key Categories */
.key-categories-section { margin-bottom: 50px; }

.key-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.key-category-card {
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.key-category-card::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transform: scaleX(0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.key-category-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

.key-category-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.key-category-header {
    padding: 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    height: 180px;
    overflow: hidden;
}

.key-category-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.key-category-card:hover .key-category-header img { transform: scale(1.1); }

.key-category-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(19,23,34,0.9), transparent);
    z-index: 1;
}

.key-category-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-lighter);
    margin: 0 0 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.key-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.key-category-card:hover .key-category-title::after { width: 100%; }

.key-category-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    transform: translateY(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.key-category-card:hover .key-category-subtitle {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.key-category-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.key-category-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.key-category-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.key-category-topic {
    font-size: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    font-weight: normal;
}

.key-category-topic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(149,206,90,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.key-category-topic:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.key-category-topic:hover::before {
    width: 150%;
    height: 150%;
}

.key-category-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 5px 15px rgba(149,206,90,0.3);
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.key-category-link:hover::before { left: 100%; }

.key-category-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.5);
}

.key-category-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.key-category-link:hover i { transform: translateX(5px); }

/* Category Tabs */
.category-tabs-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--darker-bg), #0f131d);
    border-radius: 10px;
    padding: 10px;
    gap: 8px;
    position: relative;
    z-index: 2;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
}

.category-tab {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: rgba(19,23,34,0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    min-width: fit-content;
    max-width: 180px;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(149,206,90,0.05) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.category-tab:hover::before { left: 100%; }

.category-tab:hover {
    color: var(--text-lighter);
    background: rgba(30,34,45,0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border-color: rgba(149,206,90,0.3);
}

.category-tab.active {
    color: var(--main-bg);
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    box-shadow: 0 4px 10px rgba(149,206,90,0.3);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.category-tab-icon {
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 1px;
    z-index: 2;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.category-tab:hover .category-tab-icon {
    transform: translateY(-2px);
    color: var(--accent-color);
}

.category-tab.active .category-tab-icon { color: var(--main-bg); }

.category-content { display: none; }
.category-content.active { display: block; }

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.post-card {
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.post-card::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent), var(--accent-color));
    opacity: 0;
    transform: scaleX(0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.post-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(149,206,90,0.08), transparent 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.post-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.post-card-featured .post-thumbnail { height: 100%; }
.post-card-featured .post-content { display: flex; flex-direction: column; justify-content: center; }
.post-card-featured .post-title { font-size: 24px; }
.post-card-featured .post-excerpt { margin-bottom: 20px; -webkit-line-clamp: 3; }

.post-thumbnail {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(19,23,34,0.7), transparent);
    z-index: 1;
    pointer-events: none;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(149,206,90,0.1);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: none;
    border: 1px solid rgba(149,206,90,0.3);
}

.post-date {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: rgba(19,23,34,0.8);
    color: var(--text-light);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(42,46,57,0.6);
    transition: all 0.3s ease;
}

.post-card:hover .post-date {
    background: rgba(149,206,90,0.15);
    border-color: rgba(149,206,90,0.3);
}

.post-date i {
    margin-right: 5px;
    color: var(--accent-color);
}

.post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.post-title a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
    background-image: linear-gradient(90deg, var(--accent-color), var(--accent-color));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.5s ease, color 0.3s ease;
}

.post-card:hover .post-title { transform: translateY(-3px); }

.post-card:hover .post-title a {
    color: var(--accent-color);
    background-size: 100% 2px;
}

.post-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.post-card:hover .post-excerpt { color: var(--text-light); }

.post-meta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    transition: border-color 0.3s ease;
}

.post-card:hover .post-meta { border-color: rgba(149,206,90,0.3); }

.post-meta-item {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.post-card:hover .post-meta-item:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

.post-meta-item i {
    color: var(--accent-color);
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.post-meta-item:hover i { transform: scale(1.2); }

/* Load More Button */
.load-more-button {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 4px 10px rgba(149,206,90,0.3);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.load-more-button:hover::before { left: 100%; }

.load-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.load-more-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.load-more-button:hover i { transform: translateX(5px); }

.load-more-container {
    display: flex;
    justify-content: center;
}

/* Brokers Section */
.brokers-section { margin-bottom: 30px; }

.brokers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.broker-card {
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

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

.broker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
    z-index: 1;
}

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

.broker-logo {
    height: 120px;
    background: var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.broker-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.broker-card:hover .broker-logo img { transform: scale(1.05); }

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

.broker-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--text-lighter);
    transition: color 0.3s ease;
}

.broker-card:hover .broker-title { color: var(--accent-color); }

.broker-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.broker-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.broker-stars {
    display: flex;
    margin-right: 10px;
    color: #ffc107;
}

.broker-reviews {
    font-size: 12px;
    color: var(--text-muted);
}

.broker-link {
    display: block;
    padding: 12px 0;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 10px rgba(149,206,90,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.broker-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
}

.broker-link:hover::before { left: 100%; }

.broker-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

/* Broker Ratings */
.broker-ratings-section { margin-bottom: 40px; }

.broker-ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.broker-rating-card {
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.broker-rating-card::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent), var(--accent-color));
    opacity: 0;
    transform: scaleX(0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.broker-rating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

.broker-rating-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.broker-rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(149,206,90,0.08), transparent 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.broker-rating-card:hover::before { opacity: 1; }

.broker-rating-header {
    padding: 0;
    position: relative;
    height: 180px;
    overflow: hidden;
}

.broker-rating-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.broker-rating-card:hover .broker-rating-header img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.broker-rating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(19,23,34,0.4), rgba(19,23,34,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    z-index: 1;
    transition: background 0.3s ease;
}

.broker-rating-card:hover .broker-rating-overlay {
    background: linear-gradient(to bottom, rgba(19,23,34,0.3), rgba(19,23,34,0.85));
}

.broker-rating-badge {
    background: var(--accent-color);
    color: var(--main-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.broker-rating-card:hover .broker-rating-badge {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 15px rgba(149,206,90,0.4);
}

.broker-rating-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-lighter);
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.broker-rating-card:hover .broker-rating-title { transform: translateY(-3px); }

.broker-rating-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.broker-rating-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.broker-rating-card:hover .broker-rating-description { color: var(--text-light); }

.broker-rating-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    margin-top: auto;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 10px rgba(149,206,90,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.broker-rating-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
}

.broker-rating-link:hover::before { left: 100%; }

.broker-rating-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.broker-rating-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.broker-rating-link:hover i { transform: translateX(5px); }

/* Elliott Wave Section */
.elliott-wave-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--darker-bg), #131722);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: relative;
}

.elliott-wave-header-wrapper { margin-bottom: 25px; }

.elliott-wave-header {
    background: linear-gradient(135deg, var(--darker-bg), #0f131d);
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elliott-wave-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.elliott-wave-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-lighter);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.elliott-wave-title i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 22px;
    background: rgba(149,206,90,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.elliott-wave-header:hover .elliott-wave-title i {
    transform: scale(1.1);
    background: rgba(149,206,90,0.2);
}

.elliott-wave-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elliott-wave-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    text-align: center;
}

.elliott-wave-chart {
    width: 100%;
    max-width: 100%;
    height: 500px;
    margin-bottom: 30px;
    position: relative;
    background: var(--main-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.elliott-wave-chart:hover {
    box-shadow: 0 10px 25px rgba(149,206,90,0.2);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.elliott-wave-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
}

.elliott-wave-detail-item {
    background: rgba(30,34,45,0.6);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.elliott-wave-detail-item:hover {
    background: rgba(30,34,45,0.8);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.elliott-wave-detail-title {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.elliott-wave-detail-title i { margin-right: 10px; }

.elliott-wave-detail-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.elliott-wave-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 5px 15px rgba(149,206,90,0.3);
    position: relative;
    overflow: hidden;
}

.elliott-wave-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.elliott-wave-link:hover::before { left: 100%; }

.elliott-wave-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.elliott-wave-link i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.elliott-wave-link:hover i { transform: translateX(-3px); }

/* Authors Section */
.authors-section { margin-bottom: 40px; }

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

.author-card {
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

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

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.03);
    transform: skewX(-15deg);
    transition: all 0.6s ease;
    z-index: 1;
}

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

.author-photo {
    position: relative;
    padding-top: 25px;
    z-index: 2;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--main-bg);
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.author-card:hover .author-avatar {
    box-shadow: 0 8px 25px rgba(149,206,90,0.3);
    border-color: rgba(149,206,90,0.3);
}

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

.author-card:hover .author-avatar img { transform: scale(1.08); }

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.author-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.author-social-link:hover {
    background: var(--accent-color);
    color: var(--main-bg);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(149,206,90,0.3);
}

.author-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--text-lighter);
}

.author-position {
    font-size: 14px;
    color: var(--accent-color);
    margin: 0 0 15px;
    font-weight: 600;
}

.author-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.author-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 4px 12px rgba(149,206,90,0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.author-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
}

.author-link:hover::before { left: 100%; }

.author-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.author-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.author-link:hover i { transform: translateX(5px); }

/* Quiz Section */
.quiz-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--darker-bg), #0d1625);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: relative;
}

.quiz-header {
    background: linear-gradient(135deg, var(--darker-bg), #0f131d);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.quiz-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232a2e39' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 0h30v30H0V0zm20 10H10v10h10V10zM30 0h30v30H30V0zm20 10H40v10h10V10zM0 30h30v30H0V30zm20 10H10v10h10V10zM30 30h30v30H30V30zm20 10H40v10h10V10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.quiz-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quiz-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-lighter);
    margin: 0 0 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-title i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 28px;
    background: rgba(149,206,90,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quiz-carousel {
    position: relative;
    overflow: hidden;
}

.quiz-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.quiz-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-question { margin-bottom: 30px; width: 100%; }

.quiz-question-image {
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin: 0 auto 20px;
    background-color: var(--main-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
}

.quiz-question-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quiz-question-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--main-bg);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.quiz-question-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-lighter);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.quiz-option {
    background: rgba(30,34,45,0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.quiz-option:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: rgba(149,206,90,0.3);
}

.quiz-option.selected {
    background: rgba(149,206,90,0.1);
    border-color: var(--accent-color);
}

.quiz-option.correct {
    background: rgba(38,166,154,0.1);
    border-color: var(--chart-green);
}

.quiz-option.incorrect {
    background: rgba(239,83,80,0.1);
    border-color: var(--chart-red);
}

.quiz-option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.quiz-option:hover .quiz-option-letter {
    background: var(--accent-color);
    color: var(--main-bg);
}

.quiz-option.selected .quiz-option-letter {
    background: var(--accent-color);
    color: var(--main-bg);
}

.quiz-option.correct .quiz-option-letter {
    background: var(--chart-green);
    color: var(--main-bg);
}

.quiz-option.incorrect .quiz-option-letter {
    background: var(--chart-red);
    color: var(--main-bg);
}

.quiz-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.quiz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 5px 15px rgba(149,206,90,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quiz-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.quiz-button:hover::before { left: 100%; }

.quiz-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.quiz-button:disabled {
    background: #2a2e39;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-button-prev {
    background: rgba(255,255,255,0.05);
    color: var(--text-light) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.quiz-button-prev:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quiz-progress {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 30px;
}

.quiz-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.quiz-progress-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.quiz-progress-dot.completed { background: var(--chart-green); }

.quiz-result {
    background: rgba(30,34,45,0.8);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    display: none;
    text-align: left;
    border: 1px solid var(--border-color);
}

.quiz-result.success { border-color: var(--chart-green); }
.quiz-result.error { border-color: var(--chart-red); }

.quiz-result-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quiz-result.success .quiz-result-text { color: var(--chart-green); }
.quiz-result.error .quiz-result-text { color: var(--chart-red); }

.quiz-prize {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: none;
    text-align: center;
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.quiz-prize::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(149,206,90,0) 0%, rgba(149,206,90,0.05) 50%, rgba(149,206,90,0) 100%);
    transform: rotate(45deg);
    z-index: 0;
    animation: shine-slow 3s infinite linear;
}

@keyframes shine-slow {
    0% { top: -50%; left: -50%; }
    100% { top: 150%; left: 150%; }
}

.quiz-prize-content { position: relative; z-index: 1; }

.quiz-prize-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.quiz-prize-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quiz-prize-image {
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quiz-prize-image img {
    width: 100%;
    display: block;
}

.quiz-prize-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #29b6f6;
    color: #fff !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 5px 15px rgba(41,182,246,0.3);
    position: relative;
    overflow: hidden;
}

.quiz-prize-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
}

.quiz-prize-button:hover::before { left: 100%; }

.quiz-prize-button:hover {
    background: #0288d1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41,182,246,0.4);
}

.quiz-prize-button i { margin-right: 8px; }

/* Subscribe Section */
.subscribe-section {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0088cc, #005f90);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.subscribe-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 8s infinite ease-in-out;
    z-index: 1;
}

.subscribe-bubble:nth-child(1) {
    width: 120px;
    height: 120px;
    top: -30px;
    left: 10%;
    animation-delay: 0s;
    opacity: 0.3;
}

.subscribe-bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 5%;
    animation-delay: 1s;
    opacity: 0.2;
}

.subscribe-bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 30%;
    animation-delay: 2s;
    opacity: 0.15;
}

.subscribe-bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 3s;
    opacity: 0.25;
}

.subscribe-bubble:nth-child(5) {
    width: 60px;
    height: 60px;
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
    opacity: 0.2;
}

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

.telegram-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

.subscribe-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    z-index: 5;
}

.subscribe-text {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.subscribe-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.subscribe-title i {
    margin-right: 15px;
    font-size: 32px;
    animation: pulse-icon 2s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.subscribe-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: #0088cc !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.subscribe-button:hover::before {
    animation: shine-button 1.2s infinite;
}

@keyframes shine-button {
    0% { left: -100%; }
    100% { left: 100%; }
}

.subscribe-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: #f0f0f0;
}

.subscribe-button i {
    margin-right: 10px;
    font-size: 20px;
    color: #0088cc;
    transition: transform 0.3s ease;
}

.subscribe-button:hover i {
    transform: scale(1.2);
    animation: pulse-telegram 1s infinite alternate;
}

@keyframes pulse-telegram {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.subscribe-image {
    position: relative;
    width: 270px;
    height: 270px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    transform: rotate(-3deg);
    animation: float-image 5s infinite ease-in-out;
}

.subscribe-image:hover img {
    transform: scale(1.05) rotate(0deg);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@keyframes float-image {
    0% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    100% { transform: translateY(0) rotate(-3deg); }
}

.subscribe-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: 2;
    animation: rotate-bg 15s linear infinite;
}

.subscribe-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    transform: rotate(-10deg);
    z-index: 1;
    animation: rotate-bg 10s linear infinite reverse;
}

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

.telegram-symbol {
    position: absolute;
    color: rgba(255,255,255,0.2);
    font-size: 24px;
    z-index: 1;
    animation: float-symbol 6s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.telegram-symbol:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.telegram-symbol:nth-child(2) {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.telegram-symbol:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.telegram-symbol:nth-child(4) {
    top: 15%;
    right: 10%;
    animation-delay: 3s;
}

.telegram-symbol:nth-child(5) {
    bottom: 25%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float-symbol {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.5; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
}

/* SEO Section */
.seo-section {
    margin-bottom: 0;
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.seo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.seo-title-container { flex: 1; }

.seo-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-lighter);
    margin: 0 0 15px;
    line-height: 1.2;
}

.seo-title span {
    color: var(--accent-color);
    position: relative;
}

.seo-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
}

.seo-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.seo-stats-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.seo-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
}

.seo-stat {
    display: flex;
    align-items: center;
    background: rgba(30,34,45,0.6);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.seo-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
    background: rgba(30,34,45,0.8);
}

.seo-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    color: var(--accent-color);
}

.seo-stat-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-lighter);
    line-height: 1.2;
}

.seo-stat-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.seo-buttons {
    display: flex;
    gap: 15px;
}

.seo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.seo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: skewX(-15deg);
    transition: all 0.5s ease;
}

.seo-button:hover::before { left: 100%; }

.seo-button-primary {
    background: linear-gradient(135deg, var(--accent-color), #78a93a);
    color: var(--main-bg) !important;
    box-shadow: 0 5px 15px rgba(149,206,90,0.3);
}

.seo-button-primary:hover {
    background: linear-gradient(135deg, #a9dd78, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149,206,90,0.4);
}

.seo-button-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-light) !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.seo-button-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
}

.seo-button i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.seo-button:hover i { transform: translateX(-3px); }

.seo-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(30,34,45,0.4);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.seo-text p {
    margin-bottom: 15px;
}

.seo-text p:last-child { margin-bottom: 0; }

/* Popular Slider */
.popular-slider-section {
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.popular-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.popular-slider {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    transition: transform 0.5s ease;
    width: max-content;
}

.popular-slide {
    width: 380px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: var(--darker-bg);
}

.popular-slide:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(149,206,90,0.3);
    border-color: var(--accent-color);
}

.popular-slide-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.popular-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.popular-slide:hover .popular-slide-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.popular-slide-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--darker-bg);
}

.popular-slide-title {
    color: var(--text-lighter);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.popular-slide-title a {
    color: var(--text-lighter) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-slide:hover .popular-slide-title a { color: var(--accent-color) !important; }

.popular-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.popular-slider-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(19,23,34,0.6);
    border: 1px solid var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    pointer-events: auto;
}

.popular-slider-button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(149,206,90,0.3);
}

.popular-slider-button i { font-size: 22px; }

.popular-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.popular-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(149,206,90,0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr; gap: 20px; }
    .market-overview { max-width: 600px; margin: 0 auto; }
    .key-categories-grid, .posts-grid, .brokers-grid, .authors-grid, .trader-tools-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .broker-ratings-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card-featured { grid-column: span 2; }
    .quiz-options { grid-template-columns: 1fr; }
    .elliott-wave-details { grid-template-columns: 1fr; }
    .hero-container { width: 90%; }
    .seo-header { flex-direction: column; align-items: flex-start; }
    .seo-stats-buttons { width: 100%; flex-direction: column; gap: 20px; }
    .seo-buttons { justify-content: center; width: 100%; }
}

@media (max-width: 992px) {
    .post-card-featured { grid-template-columns: 1fr; }
    .subscribe-content { flex-direction: column; text-align: center; padding: 30px; }
    .subscribe-text { margin-bottom: 20px; max-width: 100%; }
    .subscribe-title { justify-content: center; }
    .category-tabs { flex-wrap: wrap; justify-content: center; }
    .seo-container { flex-direction: column; }
    .seo-title { font-size: 36px; text-align: center; }
    .seo-description { text-align: center; }
    .seo-buttons { justify-content: center; }
    .seo-stats { justify-content: center; }
    .popular-slide { width: 330px; }
    .hero-container { width: 95%; }
    .broker-ratings-grid { grid-template-columns: 1fr; }
    .market-overview, .elliott-wave-section, .elliott-wave-header-wrapper { display: none; }
}

@media (max-width: 768px) {
    .key-categories-grid, .posts-grid, .brokers-grid, .authors-grid { grid-template-columns: 1fr; }
    .trader-tools-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card-featured { grid-column: auto; }
    .elliott-wave-chart { height: 300px; }
    .quiz-buttons { flex-direction: column; width: 100%; }
    .quiz-button { width: 100%; }
    .popular-slide { width: 280px; }
    .seo-stats { grid-template-columns: 1fr; }
    .hero-container { width: 100%; border-radius: 0; }
    .hero-slider-container { border-radius: 0; height: 450px; }
    .hero-slide img { object-position: center; }
    .hero-slide-content { padding-bottom: 50px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .section-link { width: 100%; justify-content: center; }
    .hero-title { font-size: 32px; }
    .hero-buttons, .seo-buttons { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
    .broker-ratings-grid { gap: 20px; }
    .post-card { max-width: 100%; }
    .post-thumbnail { height: 180px; }
    .post-title { font-size: 16px; }
    .post-excerpt { -webkit-line-clamp: 3; }
    .subscribe-content { padding: 25px 20px; }
    .subscribe-title { font-size: 24px; }
    .subscribe-description { font-size: 14px; }
    .subscribe-image { width: 220px; height: 220px; }
    .subscribe-image img { width: 180px; height: 180px; }
}

@media (max-width: 576px) {
    .section-header { padding: 15px; }
    .section-title { font-size: 20px; }
    .section-title i { width: 35px; height: 35px; font-size: 18px; margin-right: 10px; }
    .seo-title { font-size: 28px; }
    .seo-description { font-size: 16px; }
    .popular-slide { width: 250px; }
    .trader-tools-quick-grid { grid-template-columns: 1fr; }
    .quiz-question-image { height: 200px; }
    .quiz-question-text { font-size: 18px; }
    .quiz-title { font-size: 24px; }
    .quiz-description { font-size: 16px; }
    .elliott-wave-header { padding: 15px; }
    .elliott-wave-title { font-size: 20px; }
    .elliott-wave-title i { width: 35px; height: 35px; font-size: 18px; }
    .elliott-wave-section { padding: 15px; }
    .hero-container { width: 100%; border-radius: 0; border-left: none; border-right: none; }
    .hero-slider-container { height: 400px; }
    .hero-content { padding: 15px; }
    .popular-slider-controls { padding: 0 10px; }
    .popular-slider-button { width: 40px; height: 40px; }
    .post-card { border-radius: 8px; }
    .post-thumbnail { height: 200px; max-width: 100%; }
    .post-content { padding: 15px; }
    .subscribe-section { margin: 0 15px 40px 15px; }
    .telegram-wave, .subscribe-bubble:nth-child(n+3) { display: none; }
    .subscribe-image { width: 180px; height: 180px; }
    .subscribe-image img { width: 150px; height: 150px; }
}

@media (max-width: 768px) {
    .hero-slide img { object-position: center; }
}