/* DayTrade101 - Modern Dark Theme Styles */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --bg-dark: #0a0e27;
        --bg-secondary: #151b3d;
        --bg-card: #1a2142;
        --accent-primary: #00d4ff;
        --accent-secondary: #7c3aed;
        --accent-success: #10b981;
        --accent-warning: #f59e0b;
        --accent-danger: #ef4444;
        --text-primary: #ffffff;
        --text-secondary: #94a3b8;
        --border-color: #2d3561;
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: var(--bg-dark);
        color: var(--text-primary);
        line-height: 1.6;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header & Navigation */
    header {
        background: var(--bg-secondary);
        border-bottom: 2px solid var(--border-color);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo p {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    .nav-menu a:hover {
        color: var(--accent-primary);
    }
    
    /* Hero Section */
    .hero {
        text-align: center;
        padding: 3rem 0;
        background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
        border-radius: 12px;
        margin: 2rem 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        color: var(--text-secondary);
    }
    
    /* Sections */
    .section {
        margin: 3rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Info Banners */
    .info-banner {
        background: var(--bg-card);
        border-left: 4px solid var(--accent-primary);
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .fund-cost-banner {
        border-left-color: var(--accent-warning);
        background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), var(--bg-card));
    }
    
    .fund-cost-banner strong {
        color: var(--accent-warning);
        font-size: 1.1rem;
    }
    
    .fund-cost-banner .highlight {
        color: var(--accent-success);
        font-weight: 600;
    }
    
    /* Filters */
    .filters {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .filters input,
    .filters select {
        padding: 0.75rem 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        font-size: 0.95rem;
        min-width: 200px;
    }
    
    .filters input:focus,
    .filters select:focus {
        outline: none;
        border-color: var(--accent-primary);
    }
    
    /* Table Wrapper with Sticky Headers */
    .table-wrapper {
        overflow-x: auto;
        background: var(--bg-card);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Tables */
    table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }
    
    thead {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--bg-secondary);
    }
    
    thead th {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        color: var(--accent-primary);
        border-bottom: 2px solid var(--border-color);
        white-space: nowrap;
    }
    
    tbody tr {
        border-bottom: 1px solid var(--border-color);
        transition: background 0.2s;
        cursor: pointer;
    }
    
    tbody tr:hover {
        background: rgba(0, 212, 255, 0.05);
    }
    
    tbody td {
        padding: 1rem;
        vertical-align: middle;
    }
    
    /* Company Cell with Icon */
    .company-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        min-width: 100px;
    }
    
    .company-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--accent-primary);
    }
    
    .company-name {
        font-weight: 600;
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* Country Flag Cell */
    .country-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .flag-icon {
        width: 32px;
        height: 24px;
        border-radius: 4px;
        object-fit: cover;
    }
    
    .country-code {
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-weight: 600;
    }
    
    /* Trustpilot Cell */
    .trustpilot-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .trustpilot-score {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--accent-success);
    }
    
    .trustpilot-stars {
        color: #fbbf24;
        font-size: 1rem;
    }
    
    .trustpilot-reviews {
        font-size: 0.8rem;
        color: var(--text-secondary);
    }
    
    /* Platform Icons */
    .platform-cell {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .platform-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    
    .platform-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
    
    .platform-icon span {
        font-size: 0.7rem;
        color: var(--text-secondary);
    }
    
    /* Payment Method Icons */
    .payment-cell {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .payment-icon {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        background: var(--bg-secondary);
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
    }
    
    .payment-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
    
    .payment-icon span {
        font-size: 0.8rem;
    }
    
    /* Discount Badge */
    .discount-badge {
        background: linear-gradient(135deg, var(--accent-danger), #dc2626);
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-block;
    }
    
    .discount-code {
        background: var(--bg-dark);
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.85rem;
        border: 1px dashed var(--accent-primary);
    }
    
    /* Action Buttons */
    .action-btn {
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        color: white;
        padding: 0.7rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        text-decoration: none;
        display: inline-block;
        font-size: 0.9rem;
    }
    
    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
    }
    
    /* Tooltip */
    .tooltip-header {
        position: relative;
        cursor: help;
    }
    
    .tooltip {
        visibility: hidden;
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg-dark);
        color: var(--text-primary);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        z-index: 100;
        border: 1px solid var(--accent-primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .tooltip-header:hover .tooltip {
        visibility: visible;
    }
    
    /* Fund:Cost Ratio Highlight */
    .fund-cost-ratio {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--accent-success);
    }
    
    /* Regulators */
    .regulator-list {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .regulator-badge {
        background: var(--bg-secondary);
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--accent-primary);
        border: 1px solid var(--border-color);
    }
    
    /* Footer */
    footer {
        background: var(--bg-secondary);
        border-top: 2px solid var(--border-color);
        padding: 2rem 0;
        margin-top: 4rem;
        text-align: center;
        color: var(--text-secondary);
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav-menu {
            width: 100%;
            justify-content: center;
            margin-top: 1rem;
            gap: 1rem;
        }
        
        .hero h2 {
            font-size: 1.8rem;
        }
        
        .filters {
            flex-direction: column;
        }
        
        .filters input,
        .filters select {
            width: 100%;
        }
        
        .table-wrapper {
            max-height: 60vh;
        }
        
        thead th {
            padding: 0.7rem 0.5rem;
            font-size: 0.85rem;
        }
        
        tbody td {
            padding: 0.7rem 0.5rem;
            font-size: 0.9rem;
        }
    }
    
    /* Loading State */
    .loading {
        text-align: center;
        padding: 3rem;
        color: var(--text-secondary);
    }
    
    .loading::after {
        content: '...';
        animation: dots 1.5s steps(4, end) infinite;
    }
    
    @keyframes dots {
        0%, 20% { content: '.'; }
        40% { content: '..'; }
        60%, 100% { content: '...'; }
    }
    
    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 3rem;
        color: var(--text-secondary);
        font-style: italic;
    }
    
    /* Error State */
    .error-state {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid var(--accent-danger);
        padding: 1rem;
        border-radius: 8px;
        color: var(--accent-danger);
        margin: 1rem 0;
    }
    