 /* ==================== */
        /* ROOT VARIABLES WITH GLASS EFFECT */
        /* ==================== */
        :root {
            --primary: #00b04f;
            --primary-dark: #008c3e;
            --primary-light: rgba(0, 176, 79, 0.15);
            --primary-glass: rgba(0, 176, 79, 0.08);
            --secondary: #2e5bff;
            --secondary-glass: rgba(46, 91, 255, 0.08);
            --accent: #f0b90b;
            --accent-glass: rgba(240, 185, 11, 0.08);
            --dark: #121826;
            --darker: #0a0f1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --border: rgba(222, 226, 230, 0.3);
            --success: #28a745;
            --success-glass: rgba(40, 167, 69, 0.1);
            --danger: #dc3545;
            --danger-glass: rgba(220, 53, 69, 0.1);
            --warning: #ffc107;
            --info: #17a2b8;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: all 0.3s ease;
            
            /* Light theme */
            --bg-primary: #f0f2f5;
            --bg-secondary: rgba(255, 255, 255, 0.8);
            --bg-tertiary: rgba(255, 255, 255, 0.9);
            --text-primary: #1a1a1a;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --card-bg: rgba(255, 255, 255, 0.85);
            --sidebar-bg: rgba(255, 255, 255, 0.8);
            --chart-bg: rgba(255, 255, 255, 0.9);
            --header-bg: rgba(255, 255, 255, 0.9);
            --footer-bg: rgba(18, 24, 38, 0.95);
        }

        /* Dark Theme */
        [data-theme="dark"] {
            --primary: #00d56c;
            --primary-dark: #00b04f;
            --primary-light: rgba(0, 213, 108, 0.2);
            --primary-glass: rgba(0, 213, 108, 0.1);
            --secondary: #4a7bff;
            --bg-primary: #0f1419;
            --bg-secondary: rgba(26, 32, 38, 0.8);
            --bg-tertiary: rgba(36, 44, 51, 0.9);
            --text-primary: #e9ecef;
            --text-secondary: #adb5bd;
            --text-muted: #6c757d;
            --border: rgba(52, 58, 64, 0.4);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
            --card-bg: rgba(26, 32, 38, 0.85);
            --sidebar-bg: rgba(36, 44, 51, 0.8);
            --chart-bg: rgba(26, 32, 38, 0.9);
            --header-bg: rgba(15, 20, 25, 0.9);
            --footer-bg: rgba(10, 15, 26, 0.95);
            --glass-bg: rgba(26, 32, 38, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            transition: var(--transition);
            overflow-x: hidden;
            min-height: 100vh;
            font-size: 15px;
        }

        /* ==================== */
        /* GLASS EFFECT UTILITY */
        /* ==================== */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
        }

        .glass-light {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ==================== */
        /* HEADER & NAVIGATION - SEO VÄNLIG */
        /* ==================== */
        .header {
            background: var(--header-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0;
            box-shadow: var(--shadow);
        }

        .header-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 800;
            font-size: 1.5rem;
            padding: 8px 16px;
            border-radius: 12px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
        }

        .logo-img {
            height: 45px;
            width: 45px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid var(--primary);
            box-shadow: 0 4px 12px rgba(0, 176, 79, 0.2);
            loading: lazy;
        }

        .logo-text {
            color: var(--primary);
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Breadcrumb Navigation för SEO */
        .breadcrumb {
            padding: 10px 25px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }

        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: var(--text-muted);
        }

        .nav-menu {
            display: flex;
            gap: 5px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-link {
            padding: 10px 18px;
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            font-size: 0.95rem;
            background: transparent;
            border: 1px solid transparent;
        }

        .nav-link:hover {
            background: var(--primary-light);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-link.active {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 176, 79, 0.15);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .theme-toggle {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

        .theme-toggle:hover {
            background: var(--primary-light);
            color: var(--primary);
            transform: rotate(15deg);
        }

        .mobile-toggle {
            display: none;
        }

        /* ==================== */
        /* MAIN LAYOUT WITH GLASS EFFECTS */
        /* ==================== */
        .dashboard-container {
            width: 100%;
            max-width: 100%;
            margin: 25px auto;
            padding: 0 25px;
        }
        
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* ==================== */
        /* TICKER WITH GLASS EFFECT */
        /* ==================== */
        .crypto-ticker {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            position: relative;
            height: 50px;
            margin-top: 0;
        }

        .ticker-container {
            display: flex;
            animation: ticker-scroll 40s linear infinite;
            height: 100%;
            align-items: center;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0 25px;
            white-space: nowrap;
            height: 100%;
            border-right: 1px solid var(--border);
        }

        .ticker-symbol {
            font-weight: 700;
            color: var(--text-primary);
            min-width: 70px;
        }

        .ticker-price {
            font-weight: 600;
            color: var(--text-primary);
            min-width: 110px;
        }

        .ticker-change {
            font-weight: 600;
            min-width: 90px;
        }

        .price-up { color: var(--success); }
        .price-down { color: var(--danger); }

        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }

        /* ==================== */
        /* CARDS WITH GLASS EFFECT */
        /* ==================== */
        .card {
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
        }

        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .card-header {
            padding: 22px 28px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-content {
            padding: 28px;
        }

        /* ==================== */
        /* HERO SECTION - SEO OPTIMERAD */
        /* ==================== */
        .hero-section {
            background: 
                linear-gradient(135deg, 
                    rgba(18, 24, 38, 0.1) 0%, 
                    rgba(10, 15, 26, 0.5) 100%),
                linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://ai-prediction.net/ai-prediction.png') center/cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 50px;
            max-width: 900px;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(45deg, #ffffff, #4BF109);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 35px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 79, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 300px;
            height: 300px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
            loading: lazy;
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.05);
            border-color: var(--primary);
        }

        /* ==================== */
        /* BUTTONS WITH GLASS EFFECT */
        /* ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            white-space: nowrap;
            backdrop-filter: blur(10px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 176, 79, 0.3);
        }

        .btn-secondary {
            background: var(--glass-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* ==================== */
        /* AI PREDICTION TOOLS SECTION */
        /* ==================== */
        .ai-tools-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .ai-tool-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .ai-tool-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .ai-tool-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px auto;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 25px rgba(0, 176, 79, 0.25);
        }

        .ai-tool-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .ai-tool-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .ai-tool-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 25px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ai-tool-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 176, 79, 0.3);
        }

        /* ==================== */
        /* MARKET DATA WITH GLASS CARDS */
        /* ==================== */
        .market-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .market-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 25px;
            text-align: center;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .market-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .market-symbol {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .market-price {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        /* ==================== */
        /* FEATURES GRID WITH GLASS EFFECT */
        /* ==================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .feature-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
            text-align: center;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px auto;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(0, 176, 79, 0.2);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* ==================== */
        /* NEWS WIDGET WITH GLASS EFFECT */
        /* ==================== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-item {
            padding: 25px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .news-item:hover {
            transform: translateX(5px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .news-category {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-glass);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 15px;
            border: 1px solid rgba(0, 176, 79, 0.2);
        }

        .news-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .news-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.85rem;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        /* ==================== */
        /* BINANCE WIDGET - UPPDATERAD */
        /* ==================== */
        .binance-widget {
            background: linear-gradient(135deg, 
                rgba(28, 28, 28, 0.9) 0%, 
                rgba(0, 0, 0, 0.9) 100%),
                url('https://ai-prediction.net/binance2.jpg') center/cover;
            border: 1px solid rgba(240, 185, 11, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .binance-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            text-align: center;
        }

        .binance-title {
            color: #f0b90b;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .binance-bonus {
            color: #00ff88;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 35px;
            padding: 20px;
            background: rgba(0, 255, 136, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid rgba(0, 255, 136, 0.2);
            box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
        }

        .btn-binance {
            background: linear-gradient(135deg, #f0b90b 0%, #e6a800 100%);
            color: #000;
            padding: 18px 40px;
            font-weight: 800;
            font-size: 1.0rem;
            border-radius: var(--radius);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            box-shadow: 0 10px 30px rgba(240, 185, 11, 0.3);
        }

        .btn-binance:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 185, 11, 0.5);
        }

        /* ==================== */
        /* VERPEX BANNER */
        /* ==================== */
        .verpex-banner {
            background: linear-gradient(135deg, 
                rgba(30, 30, 40, 0.9) 0%, 
                rgba(15, 15, 25, 0.95) 100%);
            border: 1px solid rgba(100, 80, 255, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .verpex-content {
            position: relative;
            z-index: 2;
            padding: 30px;
            text-align: center;
        }

        .verpex-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .verpex-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px rgba(106, 17, 203, 0.3);
        }

        .verpex-title {
            color: #6a11cb;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .verpex-offer {
            color: #00ffaa;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            padding: 18px;
            background: rgba(0, 255, 170, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid rgba(0, 255, 170, 0.2);
            box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
        }

        .btn-verpex {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 18px 40px;
            font-weight: 800;
            font-size: 1.2rem;
            border-radius: var(--radius);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            width: 100%;
            justify-content: center;
        }

        .btn-verpex:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(106, 17, 203, 0.5);
            color: white;
        }

        .verpex-features {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .verpex-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .verpex-feature i {
            color: #00ffaa;
            font-size: 1rem;
        }

        /* ==================== */
        /* FEAR & GREED INDEX */
        /* ==================== */
        .fear-greed-widget {
            text-align: center;
            padding: 20px;
        }

        .gauge-container {
            margin: 25px auto;
            position: relative;
            width: 220px;
            height: 110px;
        }

        .gauge-background {
            position: absolute;
            width: 100%;
            height: 55px;
            background: linear-gradient(to right, 
                #dc3545 0%, 
                #fd7e14 25%, 
                #ffc107 50%, 
                #28a745 75%, 
                #00b04f 100%);
            border-radius: 110px 110px 0 0;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .gauge-needle {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform-origin: bottom center;
            transform: translateX(-50%) rotate(0deg);
            width: 4px;
            height: 90px;
            background: #000;
            z-index: 2;
            transition: transform 1s ease;
            border-radius: 2px;
        }

        .gauge-value {
            position: absolute;
            top: 35px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-primary);
            z-index: 3;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .gauge-label {
            margin-top: 15px;
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* ==================== */
        /* QUICK STATS - GLASS CARDS */
        /* ==================== */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .stat-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
        }

        /* ==================== */
        /* TOP GAINERS */
        /* ==================== */
        .gainers-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .gainer-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .gainer-item:hover {
            transform: translateX(5px);
            border-color: var(--success);
            box-shadow: var(--shadow);
        }

        .gainer-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gainer-rank {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--success), #20c997);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }

        .gainer-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .gainer-symbol {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .gainer-change {
            font-weight: 800;
            font-size: 1.2rem;
            padding: 8px 16px;
            border-radius: 20px;
            background: var(--success-glass);
            color: var(--success);
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        /* ==================== */
        /* LOADING SCREEN */
        /* ==================== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            border: 5px solid var(--gray);
            border-top: 5px solid var(--primary);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(0, 176, 79, 0.3);
        }

        .loading-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ==================== */
        /* FOOTER - SEO OPTIMERAD */
        /* ==================== */
        .footer {
            background: var(--footer-bg);
            backdrop-filter: blur(20px);
            color: white;
            margin-top: 80px;
            border-top: 3px solid var(--primary);
        }

        .footer-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 70px 25px 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            padding: 5px 0;
            display: block;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 8px 20px rgba(0, 176, 79, 0.3);
        }

        .footer-bottom {
            padding-top: 35px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            line-height: 1.6;
            flex: 1;
            min-width: 300px;
        }

        .footer-legal {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* ==================== */
        /* LIVE INDICATOR - FIXED TO GREEN */
        /* ==================== */
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(40, 167, 69, 0.2);
            backdrop-filter: blur(10px);
            color: var(--success);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-left: 10px;
            border: 1px solid rgba(40, 167, 69, 0.3);
            animation: pulse 1.5s infinite;
        }

        .free-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-left: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(0, 176, 79, 0.3);
        }

        /* ==================== */
        /* SEO OPTIMERINGAR - NYA KLASSER */
        /* ==================== */
        .seo-content {
            padding: 40px;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            margin-top: 40px;
        }

        .seo-content h2 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.8rem;
            font-weight: 800;
        }

        .seo-content h3 {
            color: var(--text-primary);
            margin: 30px 0 15px;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .seo-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .seo-content ul {
            margin-left: 25px;
            margin-bottom: 25px;
        }

        .seo-content li {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 10px;
            font-size: 1.05rem;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .seo-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .seo-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .seo-item h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .seo-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .hidden-text {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Risk Warning Styling */
        .risk-warning {
            color: #ff6b6b;
            font-size: 0.9rem;
            margin-top: 10px;
            padding: 10px 15px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 107, 107, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Affiliate Notice */
        .affiliate-notice {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 8px;
            opacity: 0.8;
        }

        /* ==================== */
        /* RESPONSIVE DESIGN */
        /* ==================== */
        @media (max-width: 1600px) {
            .dashboard-container {
                grid-template-columns: 1fr 350px;
            }
            
            .market-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .seo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ai-tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1400px) {
            .dashboard-container {
                grid-template-columns: 1fr 320px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-image {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 1200px) {
            .dashboard-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .sidebar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .nav-menu {
                gap: 3px;
            }
            
            .nav-link {
                padding: 8px 14px;
                font-size: 0.9rem;
            }
            
            .hero-content {
                padding: 50px 40px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-image {
                width: 220px;
                height: 220px;
            }
            
            .seo-grid {
                grid-template-columns: 1fr;
            }
            
            .ai-tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header-container {
                padding: 0 20px;
                height: 70px;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo-img {
                height: 40px;
                width: 40px;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--header-bg);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                border-top: 1px solid var(--border);
                gap: 10px;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-toggle {
                display: flex;
                width: 45px;
                height: 45px;
                background: var(--glass-bg);
                border: 1px solid var(--glass-border);
                border-radius: 12px;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                font-size: 1.2rem;
                color: var(--text-secondary);
                transition: var(--transition);
            }
            
            .mobile-toggle:hover {
                color: var(--primary);
                border-color: var(--primary);
            }
            
            .market-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                grid-template-columns: 1fr;
            }
            
            .hero-content {
                padding: 40px 30px;
                text-align: center;
            }
            
            .hero-bg-overlay {
                display: none;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .ai-tools-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .dashboard-container {
                padding: 0 20px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                padding: 16px 32px;
            }
            
            .market-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .market-item {
                padding: 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-links a:hover {
                transform: none;
                padding-left: 5px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }
            
            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .seo-content {
                padding: 30px;
            }
            
            .ai-tools-grid {
                grid-template-columns: 1fr;
            }
            
            .ai-tool-card {
                padding: 25px;
            }
            
            .ai-tool-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 15px;
                height: 65px;
            }
            
            .logo {
                font-size: 1.2rem;
                gap: 10px;
                padding: 6px 12px;
            }
            
            .logo-img {
                height: 35px;
                width: 35px;
            }
            
            .card-header,
            .card-content {
                padding: 20px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .features-grid {
                gap: 20px;
            }
            
            .feature-item {
                padding: 25px;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .seo-content h2 {
                font-size: 1.5rem;
            }
            
            .seo-content h3 {
                font-size: 1.2rem;
            }
            
            .ai-tool-card {
                padding: 20px;
            }
            
            .ai-tool-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            
            .ai-tool-title {
                font-size: 1.1rem;
            }
        }