        /* Particles container */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            pointer-events: none;
        }

        :root {
            /* Ultra Premium Dark Theme - Monero Inspired */
            --bg-body: #030305;
            --bg-secondary: #080809;
            --bg-card: rgba(12, 12, 15, 0.75);
            --bg-card-hover: rgba(20, 20, 28, 0.85);
            --bg-glass: rgba(255, 255, 255, 0.015);

            --text-primary: #ffffff;
            --text-secondary: #b8b8c0;
            --text-muted: #6e6e7a;

            --accent-primary: #F26822;
            --accent-secondary: #FF9F43;
            --accent-tertiary: #FFB366;
            --accent-glow: rgba(242, 104, 34, 0.5);
            --accent-glow-subtle: rgba(242, 104, 34, 0.15);
            --accent-gradient: linear-gradient(135deg, #F26822 0%, #FF9F43 50%, #FFB366 100%);
            --accent-gradient-subtle: linear-gradient(135deg, rgba(242, 104, 34, 0.1) 0%, rgba(255, 159, 67, 0.05) 100%);

            --success: #00D68F;
            --success-glow: rgba(0, 214, 143, 0.3);
            --warning: #FFAA00;
            --danger: #FF4757;

            --border-color: rgba(255, 255, 255, 0.08);
            /* More subtle definition */
            --border-glow: rgba(242, 104, 34, 0.3);
            --glass-border: 1px solid var(--border-color);
            --glass-blur: blur(30px);
            /* Deeper blur for depth */

            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 40px rgba(242, 104, 34, 0.15);
            --shadow-glow-intense: 0 0 60px rgba(242, 104, 34, 0.25);

            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: all 0.15s ease-out;
            --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
            --border-radius: 20px;
            --border-radius-sm: 12px;
            --border-radius-xs: 8px;
        }

        /* Premium Floating Elements */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        @keyframes floatReverse {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(15px) rotate(-2deg);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        @keyframes glow {

            0%,
            100% {
                box-shadow: 0 0 20px var(--accent-glow-subtle), 0 0 40px transparent;
            }

            50% {
                box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow-subtle);
            }
        }

        @keyframes borderGlow {

            0%,
            100% {
                border-color: rgba(242, 104, 34, 0.2);
            }

            50% {
                border-color: rgba(242, 104, 34, 0.5);
            }
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(0.95);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }

            100% {
                transform: scale(0.95);
                opacity: 1;
            }
        }

        /* Premium Security Badge Animation */
        @keyframes shield-pulse {

            0%,
            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 8px var(--success-glow));
            }

            50% {
                transform: scale(1.05);
                filter: drop-shadow(0 0 16px var(--success-glow));
            }
        }

        /* Trust Badge Styles */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(0, 214, 143, 0.1) 0%, rgba(0, 214, 143, 0.05) 100%);
            border: 1px solid rgba(0, 214, 143, 0.3);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--success);
            text-transform: uppercase;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* animation: pulse-ring 3s ease-in-out infinite; */
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            animation: shield-pulse 2s ease-in-out infinite;
        }

        /* Premium Verified Badge */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.15) 0%, rgba(255, 159, 67, 0.1) 100%);
            border: 1px solid rgba(242, 104, 34, 0.3);
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--accent-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .verified-badge::before {
            content: '✓';
            font-weight: 900;
        }

        /* Premium Gradient Text */
        .gradient-text {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gradient-text-shimmer {
            background: linear-gradient(90deg,
                    #F26822 0%,
                    #FF9F43 25%,
                    #FFD700 50%,
                    #FF9F43 75%,
                    #F26822 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s linear infinite;
        }

        /* Premium Card Glow Border */
        .premium-border {
            position: relative;
            background: var(--bg-card);
            border: 1px solid transparent;
            border-radius: var(--border-radius);
        }

        .premium-border::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: var(--border-radius);
            padding: 1px;
            background: linear-gradient(135deg,
                    rgba(242, 104, 34, 0.3) 0%,
                    rgba(255, 159, 67, 0.1) 30%,
                    rgba(255, 255, 255, 0.05) 50%,
                    rgba(255, 159, 67, 0.1) 70%,
                    rgba(242, 104, 34, 0.3) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            animation: borderGlow 4s ease-in-out infinite;
        }

        /* Security Features Section */
        .security-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 32px;
            padding: 24px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .security-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .security-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        /* Premium Button Tactile Feel */
        button,
        .btn-primary,
        .btn-secondary,
        .nav-link,
        .lang-btn {
            transition: var(--transition-fast);
        }

        button:active,
        .btn-primary:active,
        .btn-secondary:active,
        .nav-link:active,
        .lang-btn:active {
            transform: scale(0.96);
        }

        .security-item svg {
            width: 18px;
            height: 18px;
            color: var(--success);
        }

        /* Premium Stats Number Animation */
        .stat-number,
        .stat-value,
        .hashrate-value,
        .value {
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            letter-spacing: -0.02em;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            letter-spacing: -0.02em;
            /* Tighter headers */
        }

        /* Skeleton Loading */
        @keyframes skeleton-shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .skeleton {
            display: inline-block;
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0.05) 25%,
                    rgba(255, 255, 255, 0.1) 37%,
                    rgba(255, 255, 255, 0.05) 63%);
            background-size: 400% 100%;
            animation: skeleton-shimmer 1.4s ease infinite;
            border-radius: 4px;
            color: transparent !important;
            user-select: none;
            min-height: 1em;
        }

        .skeleton-text {
            height: 0.8em;
            width: 100%;
            margin-bottom: 0.2em;
        }

        .skeleton-rect {
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius);
        }

        /* Premium Stats Number Animation */
        .stat-number {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.5rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(242, 104, 34, 0.3);
        }

        /* 
         * ==========================================
         * CORE STYLES & ANIMATIONS
         * ==========================================
         */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Custom selection */
        ::selection {
            background: rgba(242, 104, 34, 0.3);
            color: #fff;
        }

        ::-moz-selection {
            background: rgba(242, 104, 34, 0.3);
            color: #fff;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-body);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(242, 104, 34, 0.3);
            border-radius: 5px;
            border: 2px solid var(--bg-body);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(242, 104, 34, 0.5);
        }

        /* Firefox scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: rgba(242, 104, 34, 0.3) var(--bg-body);
        }

        /* Focus visible for accessibility */
        *:focus-visible {
            outline: 2px solid var(--accent-primary);
            outline-offset: 3px;
        }

        /* Hide focus for mouse users */
        *:focus:not(:focus-visible) {
            outline: none;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* Animated Background Mesh - Subtle */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 15% 50%, rgba(242, 104, 34, 0.03), transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(242, 104, 34, 0.02), transparent 40%);
            pointer-events: none;
            z-index: -1;
            /* Animation removed for cleaner look */
        }

        @keyframes bgPulse {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }

            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 
         * ==========================================
         * HEADER
         * ==========================================
         */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: var(--glass-border);
            transition: var(--transition);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            color: var(--accent-primary);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #ccc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .tagline {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-top: -4px;
        }

        .nav {
            display: flex;
            gap: 8px;
        }

        .nav-link {
            padding: 8px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.2);
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--success);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: livePulse 2s infinite;
        }

        @keyframes livePulse {
            0% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
            }

            50% {
                opacity: 0.6;
                box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
            }

            100% {
                opacity: 1;
            }
        }

        .live-timer-ring {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            position: relative;
            transform: rotate(-90deg);
        }

        .live-timer-ring svg {
            width: 100%;
            height: 100%;
        }

        .live-timer-ring circle {
            fill: none;
            stroke-width: 4;
            cx: 20;
            cy: 20;
            r: 16;
        }

        .live-timer-ring .bg-ring {
            stroke: rgba(255, 255, 255, 0.1);
        }

        .live-timer-ring .progress-ring {
            stroke: var(--success);
            stroke-dasharray: 100;
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 1s linear;
            stroke-linecap: round;
        }

        /* Language Switcher */
        .lang-switch {
            display: flex;
            gap: 4px;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px;
            border-radius: 8px;
            margin-left: 12px;
        }

        .lang-btn {
            background: transparent;
            border: none;
            color: var(--text-muted);
            padding: 4px 8px;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            transition: var(--transition);
        }

        .lang-btn.active {
            background: var(--bg-card);
            color: var(--text-primary);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .lang-btn:hover:not(.active) {
            color: var(--text-secondary);
        }

        /* 
         * ==========================================
         * HERO SECTION - ULTRA PREMIUM
         * ==========================================
         */
        .hero {
            padding: 120px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Animated gradient orbs */
        .hero::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.08) 0%, transparent 60%);
            filter: blur(100px);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 15%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 159, 67, 0.05) 0%, transparent 60%);
            filter: blur(80px);
            pointer-events: none;
        }

        /* Hero Hierarchy */
        .hero-content {
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.1;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 32px;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 1rem;
            border-radius: 50px;
            /* Pillow shape for main CTAs */
        }

        .pool-hashrate {
            display: inline-block;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
            /* Add separation from new content */
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 32px;
            width: 100%;
            max-width: 800px;
        }

        .pool-hashrate .label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
        }

        .hashrate-value {
            font-family: var(--font-mono);
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.1;
            position: relative;
            display: inline-block;
        }

        .hashrate-value span {
            background: linear-gradient(135deg, #F26822 0%, #FF9F43 40%, #FFD93D 60%, #FF9F43 80%, #F26822 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 4s linear infinite;
            filter: drop-shadow(0 10px 30px rgba(242, 104, 34, 0.3));
        }

        /* Glowing ring behind hashrate - Subtle */
        .hashrate-value::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 140%;
            background: radial-gradient(ellipse at center, rgba(242, 104, 34, 0.08) 0%, transparent 70%);
            z-index: -1;
        }

        .pool-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 28px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 15px var(--success), 0 0 30px var(--success-glow);
            animation: pulse-ring 2s ease-in-out infinite;
        }

        /* Hero Trust Badges */
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .hero-badge:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(242, 104, 34, 0.3);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            color: var(--success);
        }

        .hero-badge.premium svg {
            color: var(--accent-primary);
        }

        /* 
         * ==========================================
         * CARDS, STATS & LAYOUT - PREMIUM
         * ==========================================
         */
        .stats-section {
            padding: 80px 0;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 48px;
        }

        .card,
        .stat-card,
        .chart-card,
        .round-card,
        .miner-card,
        .workers-card,
        .blocks-card,
        .payments-card,
        .start-card,
        .connection-box {
            background: var(--bg-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        /* Premium card inner glow */
        .stat-card::before,
        .chart-card::before,
        .round-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(242, 104, 34, 0.3) 50%,
                    transparent 100%);
            opacity: 0.5;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 28px;
        }

        .stat-card:hover,
        .card:hover {
            transform: translateY(-6px);
            /* Organic colored glow instead of black shadow */
            box-shadow:
                0 20px 40px -10px rgba(0, 0, 0, 0.5),
                0 0 30px -5px rgba(242, 104, 34, 0.15);
            border-color: rgba(242, 104, 34, 0.3);
            background: linear-gradient(145deg, rgba(25, 25, 35, 0.9), rgba(20, 20, 25, 0.8));
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.1) 0%, rgba(255, 159, 67, 0.05) 100%);
            border: 1px solid rgba(242, 104, 34, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
            transition: var(--transition);
        }

        .stat-icon svg {
            width: 24px;
            height: 24px;
        }

        .stat-card:hover .stat-icon {
            background: var(--accent-gradient);
            border-color: transparent;
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(242, 104, 34, 0.4);
        }

        /* Scroll Reveal Animation */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
            will-change: opacity, transform;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .stat-value {
            font-family: var(--font-mono);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }

        /* Chart */
        .chart-section {
            padding: 40px 0;
        }

        .chart-card {
            padding: 28px;
            margin-bottom: 28px;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .chart-header h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .chart-header h3 svg {
            color: var(--accent-primary);
        }

        .chart-container {
            position: relative;
            height: 280px;
            width: 100%;
        }

        /* Round Stats - Premium */
        .round-card {
            padding: 28px;
            margin-bottom: 28px;
        }

        .round-card h3 {
            font-size: 1.15rem;
            margin-bottom: 24px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .round-stats {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
        }

        .round-stat .label {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: block;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .round-stat .value {
            font-family: var(--font-mono);
            font-size: 1.15rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .progress-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: var(--accent-gradient);
            border-radius: 5px;
            transition: width 1s ease;
            box-shadow: 0 0 20px var(--accent-glow);
            position: relative;
        }

        /* Animated progress shimmer */
        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.3) 50%,
                    transparent 100%);
            animation: shimmer 2s linear infinite;
        }

        .luck-indicator {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .luck-good {
            background: linear-gradient(135deg, rgba(0, 214, 143, 0.15) 0%, rgba(0, 214, 143, 0.05) 100%);
            color: var(--success);
            border: 1px solid rgba(0, 214, 143, 0.3);
        }

        .luck-normal {
            background: linear-gradient(135deg, rgba(255, 170, 0, 0.15) 0%, rgba(255, 170, 0, 0.05) 100%);
            color: var(--warning);
            border: 1px solid rgba(255, 170, 0, 0.3);
        }

        .luck-bad {
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(255, 71, 87, 0.05) 100%);
            color: var(--danger);
            border: 1px solid rgba(255, 71, 87, 0.3);
        }

        /* 
         * ==========================================
         * MINER SECTION & WORKERS - PREMIUM
         * ==========================================
         */
        .miner-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-body) 100%);
            border-top: 1px solid var(--border-color);
            position: relative;
        }

        .miner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #F26822 0%, #FF9F43 50%, #FFD93D 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 4s linear infinite;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .miner-lookup {
            max-width: 700px;
            margin: 0 auto 48px;
        }

        .input-wrapper {
            display: flex;
            gap: 12px;
            padding: 10px;
            background: var(--bg-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.03);
            transition: var(--transition);
        }

        .input-wrapper:focus-within {
            border-color: rgba(242, 104, 34, 0.4);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .input-wrapper input {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-mono);
            font-size: 0.95rem;
            outline: none;
        }

        .input-wrapper input::placeholder {
            color: var(--text-muted);
        }

        .btn-primary {
            padding: 14px 36px;
            background: var(--accent-gradient);
            border: none;
            border-radius: var(--border-radius-sm);
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(242, 104, 34, 0.4);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .miner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .miner-card {
            padding: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .miner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .miner-card:hover::before {
            opacity: 1;
        }

        .miner-card .label {
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .miner-card .value {
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: var(--font-mono);
        }

        .hidden {
            display: none !important;
        }

        /* Workers, Blocks, Payments - Premium */
        .workers-section,
        .blocks-section,
        .payments-section {
            margin-top: 48px;
        }

        .workers-card,
        .blocks-card,
        .payments-card {
            padding: 28px;
            position: relative;
        }

        .workers-card::before,
        .blocks-card::before,
        .payments-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(242, 104, 34, 0.3) 50%, transparent 100%);
        }

        .workers-card h3,
        .blocks-card h3,
        .payments-card h3 {
            font-size: 1.15rem;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-weight: 600;
        }

        .workers-card h3 svg,
        .blocks-card h3 svg,
        .payments-card h3 svg {
            color: var(--accent-primary);
            width: 22px;
            height: 22px;
        }

        /* Generic Table Styles - Premium */
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        th,
        td {
            padding: 18px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        th {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.02);
        }

        td {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: var(--text-secondary);
            transition: var(--transition-fast);
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background: rgba(242, 104, 34, 0.03);
            color: var(--text-primary);
        }

        .worker-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            background: rgba(0, 214, 143, 0.08);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--success);
        }

        .worker-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--success-glow);
            animation: pulse-ring 2s ease-in-out infinite;
        }

        .block-hash {
            max-width: 160px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: var(--accent-secondary);
            transition: var(--transition);
            cursor: pointer;
        }

        .block-hash:hover {
            color: var(--accent-primary);
        }

        .block-status {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .block-status.locked {
            background: linear-gradient(135deg, rgba(255, 170, 0, 0.12) 0%, rgba(255, 170, 0, 0.05) 100%);
            color: var(--warning);
            border: 1px solid rgba(255, 170, 0, 0.25);
        }

        .block-status.unlocked {
            background: linear-gradient(135deg, rgba(0, 214, 143, 0.12) 0%, rgba(0, 214, 143, 0.05) 100%);
            color: var(--success);
            border: 1px solid rgba(0, 214, 143, 0.25);
        }

        .block-status.orphaned {
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.12) 0%, rgba(255, 71, 87, 0.05) 100%);
            color: var(--danger);
            border: 1px solid rgba(255, 71, 87, 0.25);
        }

        .payment-amount {
            color: var(--success);
            font-weight: 700;
            font-family: var(--font-mono);
            text-shadow: 0 0 20px var(--success-glow);
        }

        .no-workers {
            text-align: center;
            padding: 60px 24px;
            color: var(--text-muted);
            font-style: italic;
            background: rgba(255, 255, 255, 0.01);
            border-radius: var(--border-radius-sm);
        }

        /* 
         * ==========================================
         * GET STARTED - PREMIUM
         * ==========================================
         */
        .start-section {
            padding: 100px 0;
            position: relative;
        }

        .start-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.06) 0%, transparent 60%);
            filter: blur(60px);
            pointer-events: none;
        }

        .start-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin-bottom: 56px;
            position: relative;
            z-index: 1;
        }

        .start-card {
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .start-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(242, 104, 34, 0.2) 50%, transparent 100%);
        }

        .start-card:hover {
            transform: translateY(-8px);
        }

        .start-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .start-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .step-num {
            width: 72px;
            height: 72px;
            margin: 0 auto 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-gradient);
            border-radius: 50%;
            font-size: 1.75rem;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 12px 32px rgba(242, 104, 34, 0.4);
            transition: var(--transition);
            position: relative;
        }

        .step-num::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: var(--accent-gradient);
            opacity: 0.2;
            z-index: -1;
        }

        .start-card:hover .step-num {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 16px 40px rgba(242, 104, 34, 0.5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-sm);
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: rgba(242, 104, 34, 0.1);
            border-color: rgba(242, 104, 34, 0.3);
            color: var(--accent-secondary);
            transform: translateY(-2px);
        }

        /* Connection Details - Premium */
        .connection-box {
            padding: 48px;
            margin-top: 48px;
            background: linear-gradient(145deg, #141419 0%, #0a0a0f 100%);
            border: 1px solid rgba(242, 104, 34, 0.15);
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.02);
            z-index: 1;
        }

        .connection-box::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.08), transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .connection-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(242, 104, 34, 0.4) 50%, transparent 100%);
        }

        .connection-box h3 {
            position: relative;
            font-size: 1.35rem;
            margin-bottom: 32px;
            font-weight: 700;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .connection-box h3::before {
            content: '🔗';
            font-size: 1.2rem;
        }

        .conn-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .conn-item .label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
            font-weight: 600;
        }

        .conn-item code {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: rgba(5, 5, 8, 0.6);
            border: 1px solid rgba(242, 104, 34, 0.2);
            border-radius: var(--border-radius-sm);
            color: var(--accent-secondary);
            font-family: var(--font-mono);
            font-size: 0.9rem;
            word-break: break-all;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .conn-item code:hover {
            background: rgba(242, 104, 34, 0.08);
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(242, 104, 34, 0.1);
            transform: translateY(-3px);
        }

        .conn-item code::after {
            content: '📋';
            font-size: 1rem;
            opacity: 0.4;
            margin-left: 12px;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .conn-item code:hover::after {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.15);
        }

        .conn-item code:active {
            transform: scale(0.98);
        }

        /* Footer - Premium */
        .footer {
            padding: 80px 0 40px;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, #020203 100%);
            border-top: 1px solid var(--border-color);
            text-align: center;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-logo svg {
            width: 32px;
            height: 32px;
            color: var(--accent-primary);
        }

        .footer-logo span {
            font-size: 1.25rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-tagline {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 32px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .footer-bottom a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .footer-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .footer-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-trust-item svg {
            width: 16px;
            height: 16px;
            color: var(--success);
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            padding: 12px 24px;
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            color: white;
            z-index: 2000;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .toast.success {
            border-color: var(--success);
            color: var(--success);
        }

        /* Refresh Indicator */
        .refresh-indicator {
            display: none !important;
            /* Hidden to reduce clutter, relying on header timer */
        }

        .refresh-indicator.active {
            opacity: 1;
        }

        .spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--accent-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* 
         * ==========================================
         * RESPONSIVE DESIGN - COMPREHENSIVE
         * ==========================================
         */

        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-badges {
                gap: 12px;
            }
        }

        /* Tablets */
        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .calc-results {
                grid-template-columns: repeat(2, 1fr);
            }

            .conn-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                gap: 20px;
            }
        }

        /* Mobile landscape / small tablets */
        @media (max-width: 768px) {
            :root {
                --border-radius: 16px;
                --border-radius-sm: 10px;
            }

            .header-content {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 0;
                gap: 8px;
            }

            .nav {
                width: 100%;
                order: 3;
                justify-content: center;
                margin-top: 12px;
                gap: 8px;
            }

            .nav-link {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .lang-switcher {
                order: 2;
            }

            .hero {
                padding: 130px 0 60px;
            }

            .hero::before,
            .hero::after {
                display: none;
            }

            .hashrate-value {
                font-size: 2.8rem;
            }

            .hashrate-value span {
                filter: none;
            }

            .pool-hashrate .label {
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .hero-badges {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .hero-badge {
                padding: 8px 16px;
                font-size: 0.75rem;
                width: fit-content;
            }

            .stats-section {
                padding: 40px 0 60px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .stat-card {
                padding: 22px;
            }

            .stat-icon {
                width: 48px;
                height: 48px;
                min-width: 48px;
            }

            .stat-value {
                font-size: 1.2rem;
            }

            .chart-container {
                height: 220px;
            }

            .miner-section {
                padding: 60px 0;
            }

            .miner-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .miner-card {
                padding: 24px 16px;
            }

            .miner-card .value {
                font-size: 1.4rem;
            }

            .input-wrapper {
                flex-direction: column;
                padding: 12px;
            }

            .input-wrapper input {
                width: 100%;
            }

            .btn-primary {
                width: 100%;
                padding: 14px;
                text-align: center;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            /* Tables responsive */
            .workers-card,
            .blocks-card,
            .payments-card {
                padding: 20px;
                overflow-x: auto;
            }

            table {
                min-width: 500px;
            }

            th,
            td {
                padding: 14px 12px;
                font-size: 0.8rem;
            }

            .start-section {
                padding: 60px 0;
            }

            .start-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .start-card {
                padding: 32px 24px;
            }

            .step-num {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .connection-box {
                padding: 28px 20px;
            }

            .conn-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .conn-item code {
                padding: 14px 16px;
                font-size: 0.8rem;
            }

            .why-section {
                padding: 60px 0;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .why-card {
                padding: 28px 20px;
            }

            .why-icon {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }

            .calc-section,
            .faq-section {
                padding: 60px 0;
            }

            .calc-card {
                padding: 28px 20px;
            }

            .calc-input-group {
                flex-direction: column;
            }

            .calc-results {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .calc-result .value {
                font-size: 1.4rem;
            }

            .faq-question {
                padding: 18px 20px;
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
                font-size: 0.9rem;
            }

            .footer {
                padding: 50px 0 30px;
            }

            .footer-trust {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .footer-links {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .logo span {
                font-size: 1.1rem;
            }

            .hero {
                padding: 120px 0 50px;
            }

            .hashrate-value {
                font-size: 2.2rem;
            }

            .pool-status {
                font-size: 0.8rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .miner-grid {
                grid-template-columns: 1fr;
            }

            .miner-card .value {
                font-size: 1.3rem;
            }

            .stat-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .stat-icon {
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .start-card {
                padding: 28px 20px;
            }

            .round-stats {
                flex-direction: column;
                gap: 16px;
            }

            .round-stat {
                text-align: center;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .hashrate-value {
                font-size: 1.8rem;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 6px 12px;
            }

            .nav-link {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {

            .stat-card:hover,
            .card:hover,
            .why-card:hover,
            .start-card:hover,
            .calc-result:hover {
                transform: none;
            }

            .stat-card:active,
            .why-card:active {
                transform: scale(0.98);
            }
        }

        /* High contrast mode */
        @media (prefers-contrast: high) {
            :root {
                --border-color: rgba(255, 255, 255, 0.2);
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* 
         * ==========================================
         * WHY EUROXMR SECTION - PREMIUM
         * ==========================================
         */
        .why-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-secondary) 100%);
            position: relative;
        }

        .why-section::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.05) 0%, transparent 60%);
            filter: blur(60px);
            pointer-events: none;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 48px;
            position: relative;
            z-index: 1;
        }

        .why-card {
            background: var(--bg-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 36px 28px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: rgba(242, 104, 34, 0.3);
            box-shadow: 0 24px 48px rgba(242, 104, 34, 0.15), var(--shadow-glow);
        }

        .why-card:hover::before {
            opacity: 1;
        }

        .why-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.1) 0%, rgba(255, 159, 67, 0.05) 100%);
            border: 1px solid rgba(242, 104, 34, 0.15);
            border-radius: 16px;
            color: var(--accent-primary);
            transition: var(--transition);
        }

        .why-icon svg {
            width: 32px;
            height: 32px;
        }

        .why-card:hover .why-icon {
            background: var(--accent-gradient);
            border-color: transparent;
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(242, 104, 34, 0.4);
        }

        .why-card:nth-child(2) .why-icon {
            animation-delay: 0.5s;
        }

        .why-card:nth-child(3) .why-icon {
            animation-delay: 1s;
        }

        .why-card:nth-child(4) .why-icon {
            animation-delay: 1.5s;
        }

        .why-card:nth-child(5) .why-icon {
            animation-delay: 2s;
        }

        @keyframes iconFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .why-card h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--text-primary);
            font-weight: 700;
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 
         * ==========================================
         * CALCULATOR SECTION - PREMIUM
         * ==========================================
         */
        .calc-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-body) 100%);
            position: relative;
        }

        .calc-section::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.06) 0%, transparent 60%);
            filter: blur(60px);
            pointer-events: none;
        }

        .calc-card {
            background: var(--bg-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .calc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(242, 104, 34, 0.3) 50%, transparent 100%);
        }

        .calc-input-group {
            display: flex;
            gap: 20px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .calc-input {
            flex: 1;
            min-width: 200px;
        }

        .calc-input label {
            display: block;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .calc-input input,
        .calc-input select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(5, 5, 8, 0.6);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            color: var(--text-primary);
            font-family: var(--font-mono);
            font-size: 1rem;
            transition: var(--transition);
        }

        .calc-input input:focus,
        .calc-input select:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 24px rgba(242, 104, 34, 0.25), inset 0 0 4px rgba(242, 104, 34, 0.1);
        }

        .calc-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
        }

        .calc-result {
            text-align: center;
            padding: 24px 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .calc-result:hover {
            background: rgba(242, 104, 34, 0.05);
            border-color: rgba(242, 104, 34, 0.2);
        }

        .calc-result .label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .calc-result .value {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .calc-result .sub {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        @media (max-width: 600px) {
            .calc-results {
                grid-template-columns: 1fr;
            }
        }

        /* 
         * ==========================================
         * FAQ SECTION - PREMIUM
         * ==========================================
         */
        .faq-section {
            padding: 100px 0;
            position: relative;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 5%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(242, 104, 34, 0.04) 0%, transparent 60%);
            filter: blur(60px);
            pointer-events: none;
        }

        .faq-list {
            max-width: 850px;
            margin: 48px auto 0;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(242, 104, 34, 0.25);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .faq-item.active {
            border-color: rgba(242, 104, 34, 0.4);
            box-shadow: 0 12px 32px rgba(242, 104, 34, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--accent-primary);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--accent-primary);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0.6;
        }

        .faq-item:hover .faq-icon {
            opacity: 1;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            opacity: 1;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 28px;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .faq-answer-content code {
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.12) 0%, rgba(242, 104, 34, 0.06) 100%);
            padding: 3px 8px;
            border-radius: 6px;
            color: var(--accent-secondary);
            font-family: var(--font-mono);
            font-size: 0.85rem;
        }

        /* 
         * ==========================================
         * TRUST STATS
         * ==========================================
         */
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
            padding: 40px;
            background: var(--bg-card);
            border-radius: var(--border-radius);
            border: var(--glass-border);
        }

        .trust-stat {
            text-align: center;
        }

        .trust-stat .value {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .trust-stat .label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* 
         * ==========================================
         * XMRIG CONFIG GENERATOR
         * ==========================================
         */


        /* 
         * ==========================================
         * LOTTERY SECTION - PREMIUM STYLES
         * ==========================================
         */
        .lottery-section {
            padding: 80px 0;
            position: relative;
        }

        .lottery-main-card {
            padding: 40px;
            background: var(--bg-card);
            border-radius: var(--border-radius);
        }

        .lottery-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .lottery-stat-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .lottery-stat-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(242, 104, 34, 0.3);
            transform: translateY(-2px);
        }

        .lottery-stat-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.1) 0%, rgba(255, 159, 67, 0.05) 100%);
            border: 1px solid rgba(242, 104, 34, 0.15);
            color: var(--accent-primary);
            transition: var(--transition);
        }

        .lottery-stat-icon svg {
            width: 24px;
            height: 24px;
        }

        .lottery-stat-card:hover .lottery-stat-icon {
            background: var(--accent-gradient);
            border-color: transparent;
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(242, 104, 34, 0.4);
        }

        .lottery-stat-content {
            flex: 1;
        }

        .lottery-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .lottery-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text-primary);
        }

        .lottery-countdown,
        .lottery-user-shares,
        .lottery-participants {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .lottery-countdown {
            color: var(--accent-secondary);
            animation: pulse-ring 2s ease-in-out infinite;
        }

        /* How It Works */
        .lottery-how-it-works {
            padding: 30px;
            background: linear-gradient(135deg, rgba(242, 104, 34, 0.05) 0%, rgba(255, 159, 67, 0.02) 100%);
            border: 1px solid rgba(242, 104, 34, 0.15);
            border-radius: var(--border-radius-sm);
            margin-bottom: 40px;
        }

        .lottery-how-it-works h4 {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .lottery-rules {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .lottery-rule {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .lottery-rule-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--accent-gradient);
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
            color: white;
        }

        /* Winners Table */
        .lottery-winners {
            margin-bottom: 30px;
        }

        .lottery-winners h4 {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .lottery-winners-table-wrapper {
            overflow-x: auto;
            border-radius: var(--border-radius-sm);
            border: 1px solid var(--border-color);
        }

        .lottery-winners-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .lottery-winners-table th,
        .lottery-winners-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .lottery-winners-table th {
            background: rgba(0, 0, 0, 0.3);
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .lottery-winners-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .lottery-winners-table tbody tr:last-child td {
            border-bottom: none;
        }

        .lottery-no-winners {
            text-align: center;
            color: var(--text-muted);
            padding: 40px 20px !important;
            font-style: italic;
        }

        .lottery-winner-address {
            font-family: var(--font-mono);
            color: var(--accent-secondary);
        }

        .lottery-winner-amount {
            color: var(--success);
            font-weight: 600;
        }

        .lottery-txid {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .lottery-txid a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .lottery-txid a:hover {
            text-decoration: underline;
        }

        /* Transparency Notice */
        .lottery-transparency {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding: 20px 24px;
            background: rgba(0, 214, 143, 0.05);
            border: 1px solid rgba(0, 214, 143, 0.2);
            border-radius: var(--border-radius-sm);
        }

        .transparency-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--success);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .transparency-badge svg {
            color: var(--success);
        }

        .lottery-github-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .lottery-github-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            border-color: rgba(242, 104, 34, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lottery-main-card {
                padding: 24px;
            }

            .lottery-stats-grid {
                grid-template-columns: 1fr;
            }

            .lottery-rules {
                flex-direction: column;
            }

            .lottery-transparency {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ===========================================
         * LOTTERY TEASER - Hero Section
         * =========================================== */
        .lottery-teaser {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 24px;
            margin: 24px auto;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            text-decoration: none;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        @keyframes lottery-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
            }

            50% {
                box-shadow: 0 0 35px rgba(255, 215, 0, 0.3), 0 0 50px rgba(242, 104, 34, 0.2), 0 4px 20px rgba(0, 0, 0, 0.3);
            }
        }

        .lottery-teaser:hover {
            transform: translateY(-2px);
            border-color: rgba(242, 104, 34, 0.4);
            background: rgba(242, 104, 34, 0.08);
        }

        .lottery-teaser-icon {
            font-size: 1.5rem;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .lottery-teaser-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .lottery-teaser-title {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .lottery-teaser-prize {
            font-family: var(--font-mono);
            font-size: 1.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FFD700 0%, #FF9F43 50%, #F26822 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lottery-teaser-countdown {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding-left: 20px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lottery-teaser-label {
            font-size: 0.65rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lottery-teaser-time {
            font-family: var(--font-mono);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .lottery-teaser-arrow {
            color: var(--text-muted);
            transition: var(--transition);
            margin-left: auto;
        }

        .lottery-teaser:hover .lottery-teaser-arrow {
            color: var(--accent-primary);
            transform: translateX(4px);
        }

        /* ===========================================
         * SOCIAL PROOF BAR - Hero Section
         * =========================================== */
        .social-proof-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            margin-top: 48px;
            padding: 24px 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--border-radius);
            position: relative;
            z-index: 1;
        }

        .proof-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-align: center;
        }

        .proof-item.live {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .proof-item.live .proof-label {
            width: 100%;
        }

        .proof-live-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--success-glow);
            animation: livePulse 2s infinite;
        }

        .proof-value {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .proof-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .proof-divider {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lottery-teaser {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 12px;
                padding: 16px 20px;
                max-width: 90%;
            }

            .lottery-teaser-countdown {
                padding-left: 0;
                border-left: none;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }

            .lottery-teaser-arrow {
                display: none;
            }

            .social-proof-bar {
                flex-wrap: wrap;
                gap: 20px;
                padding: 20px;
            }

            .proof-divider {
                display: none;
            }

            .proof-item {
                flex: 1;
                min-width: 80px;
            }
        }

        /* ===========================================
         * STEPPER PROGRESS - Onboarding
         * =========================================== */
        .stepper-progress {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 40px;
            padding: 20px;
        }

        .stepper-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .stepper-indicator {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .stepper-step.completed .stepper-indicator,
        .stepper-step.active .stepper-indicator {
            background: var(--accent-gradient);
            border-color: var(--accent-primary);
            color: white;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .stepper-step span {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .stepper-step.completed span,
        .stepper-step.active span {
            color: var(--accent-primary);
        }

        .stepper-line {
            width: 80px;
            height: 2px;
            background: var(--border-color);
            margin: 0 8px;
            margin-bottom: 28px;
        }

        /* ===========================================
         * OS DETECTION BADGE
         * =========================================== */
        .os-detect {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(0, 214, 143, 0.1);
            border: 1px solid rgba(0, 214, 143, 0.3);
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--success);
            margin-bottom: 16px;
        }

        .os-icon {
            font-size: 1rem;
        }

        .os-detected {
            color: var(--text-muted);
        }

        /* ===========================================
         * WALLET VALIDATION
         * =========================================== */
        .input-validation-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-validation-wrapper input {
            padding-right: 40px;
        }

        .validation-icon {
            position: absolute;
            right: 12px;
            font-size: 1.2rem;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .validation-icon.valid::before {
            content: '✓';
            color: var(--success);
        }

        .validation-icon.invalid::before {
            content: '✗';
            color: var(--danger);
        }

        .validation-icon.valid,
        .validation-icon.invalid {
            opacity: 1;
        }

        .validation-message {
            font-size: 0.75rem;
            margin-top: 4px;
            min-height: 16px;
        }

        .validation-message.valid {
            color: var(--success);
        }

        .validation-message.invalid {
            color: var(--danger);
        }

        input.validatable.valid {
            border-color: var(--success);
        }

        input.validatable.invalid {
            border-color: var(--danger);
        }

        /* ===========================================
         * CONFIG ACTIONS (Copy + Download)
         * =========================================== */
        .config-actions {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .config-download-btn {
            background: var(--accent-gradient);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .config-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .stepper-line {
                width: 40px;
            }

            .stepper-indicator {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .config-actions {
                flex-direction: column;
            }
        }

        /* ===========================================
         * REDESIGN: Decentralization Section
         * =========================================== */
        .decentralization-section {
            padding: 60px 0;
        }

        .decentralization-card {
            background: var(--bg-card);
            padding: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Removed decentralization-card::before to avoid double bar with trust-stats border */

        .decentralization-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--accent-gradient-subtle);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .decentralization-icon svg {
            width: 40px;
            height: 40px;
            color: var(--accent-primary);
        }

        .decentralization-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .decentralization-intro {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .decentralization-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            text-align: left;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--border-radius-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-primary);
            transform: translateY(-2px);
        }

        .benefit-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .benefit-item strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .benefit-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .decentralization-note {
            font-size: 0.95rem;
            color: var(--text-muted);
            background: rgba(242, 104, 34, 0.05);
            padding: 16px 24px;
            border-radius: var(--border-radius-sm);
            border-left: 3px solid var(--accent-primary);
            display: inline-block;
        }

        /* Why Card Highlight */
        .why-card-highlight {
            border: 1px solid var(--accent-primary);
            background: rgba(242, 104, 34, 0.05);
        }

        .why-card-highlight .why-icon {
            background: var(--accent-gradient);
            color: white;
        }

        .why-card-highlight .why-icon svg {
            color: white;
        }

        /* ===========================================
         * REDESIGN: Lottery Terms
         * =========================================== */
        .lottery-terms {
            margin-top: 24px;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--border-radius-sm);
            border: 1px solid var(--border-color);
            text-align: left;
        }

        .lottery-terms h5 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lottery-terms ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lottery-terms li {
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 6px 0 6px 20px;
            position: relative;
        }

        .lottery-terms li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-primary);
        }

        /* ===========================================
         * REDESIGN: Footer Email Link
         * =========================================== */
        .footer-email-link {
            color: var(--accent-primary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .footer-email-link:hover {
            color: var(--accent-secondary);
            text-decoration: underline;
        }

        /* ===========================================
         * REDESIGN: Footer Disclaimer
         * =========================================== */
        .footer-disclaimer {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--border-radius-xs);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-disclaimer strong {
            color: var(--text-secondary);
        }

        /* ===========================================
         * REDESIGN: Hide empty hashrate
         * =========================================== */
        .pool-hashrate.hidden {
            display: none;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .decentralization-card {
                padding: 32px 20px;
            }

            .decentralization-card h3 {
                font-size: 1.4rem;
            }

            .decentralization-intro {
                font-size: 1rem;
            }

            .decentralization-benefits {
                grid-template-columns: 1fr;
            }
        }

        /* ===========================================
         * DECORATIVE SVG PATTERNS - Visual Richness
         * =========================================== */
        .why-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            width: 300px;
            height: 300px;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23F26822' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            transform: translateY(-50%);
            pointer-events: none;
            opacity: 0.6;
        }



        /* Config Generator - Premium */
        .config-generator {
            margin-top: 60px;
            padding: 30px;
            background: var(--bg-card);
            border: var(--glass-border);
            border-radius: var(--border-radius);
            position: relative;
            z-index: 1;
        }

        .config-generator h4 {
            font-size: 1.5rem;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--text-primary);
        }

        .config-generator h4 svg {
            color: var(--accent-primary);
        }

        .config-inputs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .config-output {
            background: #1e1e24;
            /* Darker background for code block */
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            overflow: hidden;
            position: relative;
        }

        .config-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border-color);
        }

        .config-copy-btn,
        .config-download-btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .config-copy-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
        }

        .config-copy-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .config-download-btn {
            background: rgba(242, 104, 34, 0.1);
            color: var(--accent-primary);
            border-color: rgba(242, 104, 34, 0.2);
        }

        .config-download-btn:hover {
            background: rgba(242, 104, 34, 0.2);
            transform: translateY(-1px);
        }

        #config_output {
            margin: 0;
            padding: 24px;
            color: #a9b7c6;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            overflow-x: auto;
            white-space: pre;
        }

        /* ===========================================
         * DISCORD FLOATING BUBBLE
         * =========================================== */
        .discord-bubble {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4),
                        0 0 40px rgba(88, 101, 242, 0.2);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-decoration: none;
            animation: discord-pulse 2s ease-in-out infinite;
        }

        .discord-bubble svg {
            width: 32px;
            height: 32px;
            color: white;
            transition: transform 0.3s ease;
        }

        .discord-bubble:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 8px 32px rgba(88, 101, 242, 0.6),
                        0 0 60px rgba(88, 101, 242, 0.3);
        }

        .discord-bubble:hover svg {
            transform: scale(1.1);
        }

        .discord-bubble:active {
            transform: scale(0.95);
        }

        /* Discord Bubble Tooltip */
        .discord-bubble-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(20, 20, 25, 0.95);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            border: 1px solid rgba(88, 101, 242, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .discord-bubble-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(20, 20, 25, 0.95);
        }

        .discord-bubble:hover .discord-bubble-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Discord Pulse Animation */
        @keyframes discord-pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4),
                            0 0 40px rgba(88, 101, 242, 0.2);
            }
            50% {
                box-shadow: 0 4px 30px rgba(88, 101, 242, 0.6),
                            0 0 60px rgba(88, 101, 242, 0.3);
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .discord-bubble {
                width: 52px;
                height: 52px;
                bottom: 16px;
                right: 16px;
            }

            .discord-bubble svg {
                width: 26px;
                height: 26px;
            }

            .discord-bubble-tooltip {
                display: none;
            }
        }