/* ===================================================================
   Algo Products — Shared Styles
   Used by: robots, indicators, strategy pages
   Theme colors are set via CSS custom properties on each page wrapper.
   =================================================================== */

/* ===== Theme Variables ===== */
.robots-page-wrapper {
    --algo-theme: #06b6d4;
    --algo-theme-rgb: 6, 182, 212;
    --algo-theme-dark: #0891b2;
    --algo-bg1: #021014;
    --algo-bg2: #041f28;
    --algo-card-bg1: #0a1628;
    --algo-card-bg2: #041014;
    --algo-menu-bg: rgba(6, 20, 35, 0.99);
}

.indicators-page-wrapper {
    --algo-theme: #3b82f6;
    --algo-theme-rgb: 59, 130, 246;
    --algo-theme-dark: #2563eb;
    --algo-bg1: #020a14;
    --algo-bg2: #041428;
    --algo-card-bg1: #0a1428;
    --algo-card-bg2: #040a14;
    --algo-menu-bg: rgba(6, 20, 35, 0.99);
}

.strategy-page-wrapper {
    --algo-theme: #f59e0b;
    --algo-theme-rgb: 245, 158, 11;
    --algo-theme-dark: #d97706;
    --algo-bg1: #140a02;
    --algo-bg2: #281404;
    --algo-card-bg1: #1a0f04;
    --algo-card-bg2: #0a0602;
    --algo-menu-bg: rgba(20, 10, 2, 0.99);
}

/* ===== Page Wrapper ===== */
.robots-page-wrapper,
.indicators-page-wrapper,
.strategy-page-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #000000 0%, var(--algo-bg1) 50%, var(--algo-bg2) 100%);
}

/* ===== Network Background ===== */
.robots-network-bg-full,
.indicators-network-bg-full,
.strategy-network-bg-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.robots-network-bg-full canvas,
.indicators-network-bg-full canvas,
.strategy-network-bg-full canvas {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ===== Hero Section ===== */
.robots-hero-section,
.indicators-hero-section,
.strategy-hero-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 50px;
    text-align: center;
}

.robots-hero-content,
.indicators-hero-content,
.strategy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.robots-hero-icon,
.indicators-hero-icon,
.strategy-hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(var(--algo-theme-rgb), 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--algo-theme-rgb), 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: heroIconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both, algo-pulse-glow 3s ease-in-out 0.6s infinite;
}

.robots-hero-icon i,
.indicators-hero-icon i,
.strategy-hero-icon i {
    font-size: 48px;
    color: var(--algo-theme);
}

.robots-hero-content h1,
.indicators-hero-content h1,
.strategy-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 60px rgba(var(--algo-theme-rgb), 0.4);
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.robots-hero-content .subtitle,
.indicators-hero-content .subtitle,
.strategy-hero-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

/* Hero Stats */
.robots-hero-stats,
.indicators-hero-stats,
.strategy-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.robots-hero-stats .stat-box,
.indicators-hero-stats .stat-box,
.strategy-hero-stats .stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 35px;
    transition: all 0.3s ease;
}

.robots-hero-stats .stat-box:hover,
.indicators-hero-stats .stat-box:hover,
.strategy-hero-stats .stat-box:hover {
    background: rgba(var(--algo-theme-rgb), 0.1);
    border-color: rgba(var(--algo-theme-rgb), 0.3);
    transform: translateY(-4px);
}

.robots-hero-stats .stat-number,
.indicators-hero-stats .stat-number,
.strategy-hero-stats .stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--algo-theme);
    line-height: 1;
}

.robots-hero-stats .stat-label,
.indicators-hero-stats .stat-label,
.strategy-hero-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ===== Shared Keyframes ===== */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroIconPop {
    0% { opacity: 0; transform: scale(0.5); }
    70% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes algo-pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(var(--algo-theme-rgb), 0.2); }
    50% { box-shadow: 0 0 50px rgba(var(--algo-theme-rgb), 0.4); }
}

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

/* ===== Filters Section ===== */
.robots-filters-section,
.indicators-filters-section,
.strategy-filters-section {
    position: relative;
    z-index: 100;
    padding: 0 0 40px;
}

.robots-filters-card,
.indicators-filters-card,
.strategy-filters-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.robots-filters-card .filters-bar,
.indicators-filters-card .filters-bar,
.strategy-filters-card .filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.robots-filters-card .filter-group,
.indicators-filters-card .filter-group,
.strategy-filters-card .filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.robots-filters-card .filter-group label,
.indicators-filters-card .filter-group label,
.strategy-filters-card .filter-group label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.robots-filters-card .filter-group label i,
.indicators-filters-card .filter-group label i,
.strategy-filters-card .filter-group label i {
    color: var(--algo-theme);
}

.robots-filters-card .filter-buttons,
.indicators-filters-card .filter-buttons,
.strategy-filters-card .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.robots-filters-card .filter-btn,
.indicators-filters-card .filter-btn,
.strategy-filters-card .filter-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.robots-filters-card .filter-btn:hover,
.indicators-filters-card .filter-btn:hover,
.strategy-filters-card .filter-btn:hover {
    background: rgba(var(--algo-theme-rgb), 0.1);
    border-color: rgba(var(--algo-theme-rgb), 0.3);
}

.robots-filters-card .filter-btn.active,
.indicators-filters-card .filter-btn.active,
.strategy-filters-card .filter-btn.active {
    background: linear-gradient(135deg, var(--algo-theme), var(--algo-theme-dark));
    border-color: transparent;
    color: white;
}

/* ===== Custom Dropdown ===== */
.robots-page-wrapper .custom-dropdown,
.indicators-page-wrapper .custom-dropdown,
.strategy-page-wrapper .custom-dropdown {
    position: relative;
    min-width: 200px;
    z-index: 50;
}

.robots-page-wrapper .custom-dropdown.open,
.indicators-page-wrapper .custom-dropdown.open,
.strategy-page-wrapper .custom-dropdown.open {
    z-index: 9999;
}

.robots-page-wrapper .custom-dropdown .dropdown-toggle,
.indicators-page-wrapper .custom-dropdown .dropdown-toggle,
.strategy-page-wrapper .custom-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.robots-page-wrapper .custom-dropdown .dropdown-toggle:hover,
.indicators-page-wrapper .custom-dropdown .dropdown-toggle:hover,
.strategy-page-wrapper .custom-dropdown .dropdown-toggle:hover {
    background: rgba(var(--algo-theme-rgb), 0.1);
    border-color: rgba(var(--algo-theme-rgb), 0.3);
}

.robots-page-wrapper .custom-dropdown.open .dropdown-toggle,
.indicators-page-wrapper .custom-dropdown.open .dropdown-toggle,
.strategy-page-wrapper .custom-dropdown.open .dropdown-toggle {
    background: rgba(var(--algo-theme-rgb), 0.15);
    border-color: rgba(var(--algo-theme-rgb), 0.5);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.robots-page-wrapper .custom-dropdown .dropdown-icon,
.indicators-page-wrapper .custom-dropdown .dropdown-icon,
.strategy-page-wrapper .custom-dropdown .dropdown-icon {
    color: var(--algo-theme);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.robots-page-wrapper .custom-dropdown .dropdown-text,
.indicators-page-wrapper .custom-dropdown .dropdown-text,
.strategy-page-wrapper .custom-dropdown .dropdown-text {
    flex: 1;
    text-align: left;
}

.robots-page-wrapper .custom-dropdown .dropdown-arrow,
.indicators-page-wrapper .custom-dropdown .dropdown-arrow,
.strategy-page-wrapper .custom-dropdown .dropdown-arrow {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.robots-page-wrapper .custom-dropdown.open .dropdown-arrow,
.indicators-page-wrapper .custom-dropdown.open .dropdown-arrow,
.strategy-page-wrapper .custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.robots-page-wrapper .custom-dropdown .dropdown-menu,
.indicators-page-wrapper .custom-dropdown .dropdown-menu,
.strategy-page-wrapper .custom-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--algo-menu-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--algo-theme-rgb), 0.4);
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--algo-theme-rgb), 0.15);
}

.robots-page-wrapper .custom-dropdown.open .dropdown-menu,
.indicators-page-wrapper .custom-dropdown.open .dropdown-menu,
.strategy-page-wrapper .custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.robots-page-wrapper .custom-dropdown .dropdown-item,
.indicators-page-wrapper .custom-dropdown .dropdown-item,
.strategy-page-wrapper .custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.robots-page-wrapper .custom-dropdown .dropdown-item:hover,
.indicators-page-wrapper .custom-dropdown .dropdown-item:hover,
.strategy-page-wrapper .custom-dropdown .dropdown-item:hover {
    background: rgba(var(--algo-theme-rgb), 0.15);
    color: white;
}

.robots-page-wrapper .custom-dropdown .dropdown-item.active,
.indicators-page-wrapper .custom-dropdown .dropdown-item.active,
.strategy-page-wrapper .custom-dropdown .dropdown-item.active {
    background: rgba(var(--algo-theme-rgb), 0.2);
    color: var(--algo-theme);
}

.robots-page-wrapper .custom-dropdown .dropdown-item i:first-child,
.indicators-page-wrapper .custom-dropdown .dropdown-item i:first-child,
.strategy-page-wrapper .custom-dropdown .dropdown-item i:first-child {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.robots-page-wrapper .custom-dropdown .dropdown-item span,
.indicators-page-wrapper .custom-dropdown .dropdown-item span,
.strategy-page-wrapper .custom-dropdown .dropdown-item span {
    flex: 1;
}

.robots-page-wrapper .custom-dropdown .dropdown-item .check-icon,
.indicators-page-wrapper .custom-dropdown .dropdown-item .check-icon,
.strategy-page-wrapper .custom-dropdown .dropdown-item .check-icon {
    font-size: 0.75rem;
    color: var(--algo-theme);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.robots-page-wrapper .custom-dropdown .dropdown-item.active .check-icon,
.indicators-page-wrapper .custom-dropdown .dropdown-item.active .check-icon,
.strategy-page-wrapper .custom-dropdown .dropdown-item.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

.robots-page-wrapper .custom-dropdown .dropdown-divider,
.indicators-page-wrapper .custom-dropdown .dropdown-divider,
.strategy-page-wrapper .custom-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

/* Dropdown overlay */
.robots-page-wrapper .dropdown-overlay,
.indicators-page-wrapper .dropdown-overlay,
.strategy-page-wrapper .dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: transparent;
}

/* ===== Search ===== */
.robots-filters-card .search-group,
.indicators-filters-card .search-group,
.strategy-filters-card .search-group {
    flex: 1;
    min-width: 220px;
}

.robots-filters-card .search-wrapper,
.indicators-filters-card .search-wrapper,
.strategy-filters-card .search-wrapper {
    position: relative;
    width: 100%;
}

.robots-filters-card .search-wrapper i,
.indicators-filters-card .search-wrapper i,
.strategy-filters-card .search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.robots-filters-card .search-input,
.indicators-filters-card .search-input,
.strategy-filters-card .search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.robots-filters-card .search-input:focus,
.indicators-filters-card .search-input:focus,
.strategy-filters-card .search-input:focus {
    outline: none;
    border-color: rgba(var(--algo-theme-rgb), 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.robots-filters-card .search-input::placeholder,
.indicators-filters-card .search-input::placeholder,
.strategy-filters-card .search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Products Section ===== */
.robots-products-section,
.indicators-products-section,
.strategy-products-section {
    position: relative;
    z-index: 10;
    padding: 0 0 80px;
}

.robots-products-grid,
.indicators-products-grid,
.strategy-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ===== Product Card ===== */
.robots-product-card,
.indicators-product-card,
.strategy-product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.robots-product-card.animate-in,
.indicators-product-card.animate-in,
.strategy-product-card.animate-in {
    animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.robots-product-card:hover,
.indicators-product-card:hover,
.strategy-product-card:hover {
    background: rgba(var(--algo-theme-rgb), 0.08);
    border-color: rgba(var(--algo-theme-rgb), 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(var(--algo-theme-rgb), 0.2);
}

.robots-product-card .card-image-wrapper,
.indicators-product-card .card-image-wrapper,
.strategy-product-card .card-image-wrapper {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.robots-product-card .card-image,
.indicators-product-card .card-image,
.strategy-product-card .card-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--algo-card-bg1), var(--algo-card-bg2));
}

.robots-product-card .card-image img,
.indicators-product-card .card-image img,
.strategy-product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.robots-product-card:hover .card-image img,
.indicators-product-card:hover .card-image img,
.strategy-product-card:hover .card-image img {
    transform: scale(1.08);
}

.robots-product-card .placeholder-icon,
.indicators-product-card .placeholder-icon,
.strategy-product-card .placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--algo-card-bg1), var(--algo-card-bg2));
}

.robots-product-card .placeholder-icon i,
.indicators-product-card .placeholder-icon i,
.strategy-product-card .placeholder-icon i {
    font-size: 48px;
    color: rgba(var(--algo-theme-rgb), 0.3);
}

/* Card Badges */
.robots-product-card .card-badges,
.indicators-product-card .card-badges,
.strategy-product-card .card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.robots-product-card .badge,
.indicators-product-card .badge,
.strategy-product-card .badge {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.robots-product-card .badge-new,
.indicators-product-card .badge-new,
.strategy-product-card .badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.robots-product-card .badge-popular,
.indicators-product-card .badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.robots-product-card .badge-updated,
.indicators-product-card .badge-updated {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.robots-product-card .badge-hot,
.indicators-product-card .badge-hot,
.strategy-product-card .badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.robots-product-card .badge-bestseller,
.indicators-product-card .badge-bestseller,
.strategy-product-card .badge-bestseller {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: white;
}

.robots-product-card .badge-recommended,
.indicators-product-card .badge-recommended,
.strategy-product-card .badge-recommended {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

/* Platform Badge (shared by robots/indicators) */
.robots-product-card .platform-badge,
.indicators-product-card .platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--algo-theme);
}

/* Card Content */
.robots-product-card .card-content,
.indicators-product-card .card-content,
.strategy-product-card .card-content {
    padding: 20px;
}

.robots-product-card .card-title,
.indicators-product-card .card-title,
.strategy-product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.robots-product-card .card-title a,
.indicators-product-card .card-title a,
.strategy-product-card .card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.robots-product-card .card-title a:hover,
.indicators-product-card .card-title a:hover,
.strategy-product-card .card-title a:hover {
    color: var(--algo-theme);
}

/* Card Meta */
.robots-product-card .card-meta,
.indicators-product-card .card-meta,
.strategy-product-card .card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.robots-product-card .card-meta .meta-item,
.indicators-product-card .card-meta .meta-item,
.strategy-product-card .card-meta .meta-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.robots-product-card .card-meta .meta-item i,
.indicators-product-card .card-meta .meta-item i,
.strategy-product-card .card-meta .meta-item i {
    color: var(--algo-theme);
    font-size: 0.75rem;
}

/* Card Tags */
.robots-product-card .card-tags,
.indicators-product-card .card-tags,
.strategy-product-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    min-height: 26px;
}

.robots-product-card .tag,
.indicators-product-card .tag,
.strategy-product-card .tag {
    font-size: 0.7rem;
    color: rgba(var(--algo-theme-rgb), 0.8);
    background: rgba(var(--algo-theme-rgb), 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.robots-product-card .tag-more,
.indicators-product-card .tag-more,
.strategy-product-card .tag-more {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 10px;
}

/* Card Button */
.robots-product-card .card-btn,
.indicators-product-card .card-btn,
.strategy-product-card .card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, rgba(var(--algo-theme-rgb), 0.15), rgba(var(--algo-theme-rgb), 0.08));
    border: 1px solid rgba(var(--algo-theme-rgb), 0.3);
    border-radius: 10px;
    color: var(--algo-theme);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.robots-product-card .card-btn:hover,
.indicators-product-card .card-btn:hover,
.strategy-product-card .card-btn:hover {
    background: linear-gradient(135deg, var(--algo-theme), var(--algo-theme-dark));
    border-color: transparent;
    color: white;
}

/* ===== Empty State ===== */
.robots-empty-state,
.indicators-empty-state,
.strategy-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.robots-empty-state .empty-icon,
.indicators-empty-state .empty-icon,
.strategy-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(var(--algo-theme-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robots-empty-state .empty-icon i,
.indicators-empty-state .empty-icon i,
.strategy-empty-state .empty-icon i {
    font-size: 32px;
    color: var(--algo-theme);
}

.robots-empty-state h3,
.indicators-empty-state h3,
.strategy-empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.robots-empty-state p,
.indicators-empty-state p,
.strategy-empty-state p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.robots-empty-state .btn-reset,
.indicators-empty-state .btn-reset,
.strategy-empty-state .btn-reset {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--algo-theme), var(--algo-theme-dark));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.robots-empty-state .btn-reset:hover,
.indicators-empty-state .btn-reset:hover,
.strategy-empty-state .btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--algo-theme-rgb), 0.4);
}

/* ===== Pagination ===== */
.robots-pagination,
.indicators-pagination,
.strategy-pagination {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.robots-pagination .pagination,
.indicators-pagination .pagination,
.strategy-pagination .pagination {
    display: flex;
    gap: 8px;
}

.robots-pagination .pagination-info,
.indicators-pagination .pagination-info,
.strategy-pagination .pagination-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive — 1024px ===== */
@media (max-width: 1024px) {
    .robots-filters-card .filters-bar,
    .indicators-filters-card .filters-bar,
    .strategy-filters-card .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .robots-filters-card .filter-group,
    .indicators-filters-card .filter-group,
    .strategy-filters-card .filter-group {
        flex-wrap: wrap;
    }

    .robots-products-grid,
    .indicators-products-grid,
    .strategy-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* ===== Responsive — 768px ===== */
@media (max-width: 768px) {
    .robots-hero-section,
    .indicators-hero-section,
    .strategy-hero-section {
        padding: 80px 0 40px;
    }

    .robots-hero-content h1,
    .indicators-hero-content h1,
    .strategy-hero-content h1 {
        font-size: 2.25rem;
    }

    .robots-hero-icon,
    .indicators-hero-icon,
    .strategy-hero-icon {
        width: 80px;
        height: 80px;
    }

    .robots-hero-icon i,
    .indicators-hero-icon i,
    .strategy-hero-icon i {
        font-size: 36px;
    }

    .robots-hero-stats,
    .indicators-hero-stats {
        gap: 12px;
    }

    .robots-hero-stats .stat-box,
    .indicators-hero-stats .stat-box {
        padding: 14px 20px;
        flex: 1;
        min-width: 90px;
    }

    .robots-hero-stats .stat-number,
    .indicators-hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .robots-hero-stats .stat-label,
    .indicators-hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .robots-filters-card,
    .indicators-filters-card,
    .strategy-filters-card {
        padding: 16px;
    }

    .robots-filters-card .filters-bar,
    .indicators-filters-card .filters-bar {
        gap: 16px;
    }

    .robots-filters-card .filter-group,
    .indicators-filters-card .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .robots-filters-card .filter-group label,
    .indicators-filters-card .filter-group label {
        font-size: 0.8rem;
    }

    .robots-filters-card .filter-buttons,
    .indicators-filters-card .filter-buttons {
        width: 100%;
    }

    .robots-filters-card .filter-btn,
    .indicators-filters-card .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex: 1;
        text-align: center;
        min-width: auto;
    }

    .robots-page-wrapper .custom-dropdown,
    .indicators-page-wrapper .custom-dropdown {
        width: 100%;
        min-width: unset;
    }

    .robots-filters-card .search-group,
    .indicators-filters-card .search-group {
        width: 100%;
        min-width: unset;
    }

    .robots-products-grid,
    .indicators-products-grid,
    .strategy-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .robots-product-card .card-content,
    .indicators-product-card .card-content {
        padding: 16px;
    }

    .robots-product-card .card-title,
    .indicators-product-card .card-title {
        font-size: 1rem;
    }

    /* Empty State Mobile */
    .indicators-empty-state,
    .strategy-empty-state {
        padding: 50px 20px;
    }

    .indicators-empty-state .empty-icon,
    .strategy-empty-state .empty-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .indicators-empty-state .empty-icon i,
    .strategy-empty-state .empty-icon i {
        font-size: 26px;
    }

    .indicators-empty-state h3,
    .strategy-empty-state h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .indicators-empty-state p,
    .strategy-empty-state p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .indicators-empty-state .btn-reset,
    .strategy-empty-state .btn-reset {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* ===== Responsive — 480px ===== */
@media (max-width: 480px) {
    .robots-hero-content h1,
    .indicators-hero-content h1,
    .strategy-hero-content h1 {
        font-size: 1.75rem;
    }

    .robots-hero-content .subtitle,
    .indicators-hero-content .subtitle {
        font-size: 1rem;
    }

    .robots-hero-stats,
    .indicators-hero-stats,
    .strategy-hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .robots-hero-stats .stat-box,
    .indicators-hero-stats .stat-box {
        width: 100%;
        text-align: center;
    }

    .robots-filters-card .filter-btn,
    .indicators-filters-card .filter-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    /* Empty State Extra Small */
    .indicators-empty-state,
    .strategy-empty-state {
        padding: 40px 16px;
    }

    .indicators-empty-state {
        margin: 0 -8px;
    }

    .indicators-empty-state .empty-icon,
    .strategy-empty-state .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .indicators-empty-state .empty-icon i,
    .strategy-empty-state .empty-icon i {
        font-size: 24px;
    }

    .indicators-empty-state h3,
    .strategy-empty-state h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .indicators-empty-state p,
    .strategy-empty-state p {
        font-size: 0.85rem;
        margin-bottom: 16px;
        padding: 0 8px;
    }

    .indicators-empty-state .btn-reset,
    .strategy-empty-state .btn-reset {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
}
