/* Extracted from strategies.html block #1 attrs:  */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #667eea;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .play-now-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .play-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem 0;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb li {
            color: white;
            opacity: 0.9;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .breadcrumb a:hover {
            opacity: 0.8;
        }
        
        .breadcrumb .separator {
            opacity: 0.5;
        }
        
        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        /* Hero Section */
        .hero {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* Strategy Quick Stats */
        .strategy-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .stat-badge {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .stat-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .stat-value {
            font-weight: bold;
            color: #667eea;
            font-size: 1.1rem;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: #666;
        }
        
        /* Content Sections */
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333;
            position: relative;
            padding-bottom: 1rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        /* Strategy Cards */
        .strategy-grid {
            display: grid;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .strategy-card {
            background: linear-gradient(145deg, #ffffff 0%, #fafaff 100%);
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }
        
        .strategy-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .strategy-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .strategy-title {
            flex: 1;
        }
        
        .strategy-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.3rem;
        }
        
        .strategy-level {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .level-beginner {
            background: #e8f5e9;
            color: #2e7d32;
        }
        
        .level-intermediate {
            background: #fff3e0;
            color: #e65100;
        }
        
        .level-advanced {
            background: #fce4ec;
            color: #c2185b;
        }
        
        .strategy-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .strategy-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .detail-item {
            background: rgba(102, 126, 234, 0.05);
            padding: 1rem;
            border-radius: 10px;
            border-left: 3px solid #667eea;
        }
        
        .detail-label {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.3rem;
        }
        
        .detail-value {
            font-weight: bold;
            color: #333;
        }
        
        .strategy-steps {
            margin: 1.5rem 0;
        }
        
        .strategy-steps h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .strategy-steps ol {
            margin-left: 1.5rem;
            color: #666;
        }
        
        .strategy-steps li {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .pros, .cons {
            padding: 1.5rem;
            border-radius: 12px;
        }
        
        .pros {
            background: linear-gradient(145deg, #e8f5e9 0%, #f1f8f4 100%);
            border-left: 4px solid #2e7d32;
        }
        
        .cons {
            background: linear-gradient(145deg, #ffebee 0%, #fef5f7 100%);
            border-left: 4px solid #c62828;
        }
        
        .pros h5, .cons h5 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .pros h5 {
            color: #2e7d32;
        }
        
        .cons h5 {
            color: #c62828;
        }
        
        .pros ul, .cons ul {
            list-style: none;
            margin-left: 0;
        }
        
        .pros li, .cons li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        .pros li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2e7d32;
            font-weight: bold;
        }
        
        .cons li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #c62828;
            font-weight: bold;
        }
        
        .strategy-example {
            background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }
        
        .example-title {
            font-weight: bold;
            color: #667eea;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .example-content {
            color: #555;
            line-height: 1.8;
        }
        
        /* Interactive Bankroll Calculator */
        .calculator-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2.5rem;
            color: white;
            margin: 2rem 0;
        }
        
        .calculator-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .calc-input-group {
            margin-bottom: 1.5rem;
        }
        
        .calc-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .calc-input, .calc-select {
            width: 100%;
            padding: 0.75rem;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .calc-input:focus, .calc-select:focus {
            outline: none;
            border-color: white;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .calc-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .calc-select option {
            background: #667eea;
            color: white;
        }
        
        .calc-result {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .result-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .result-label {
            font-size: 0.95rem;
        }
        
        .result-value {
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .calc-button {
            width: 100%;
            padding: 1rem;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .calc-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .comparison-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .comparison-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tbody tr:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .rating {
            display: flex;
            gap: 0.2rem;
        }
        
        .star {
            color: #ffd700;
        }
        
        .star.empty {
            color: #ddd;
        }
        
        /* Strategy Finder Styles */
        .strategy-option {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-align: left;
            color: white;
            width: 100%;
        }
        
        .strategy-option:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
            transform: translateX(5px);
        }
        
        .option-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .option-content {
            flex: 1;
        }
        
        .option-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }
        
        .option-desc {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }
        
        .progress-dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        .quiz-step {
            animation: fadeInSlide 0.4s ease-out;
        }
        
        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .recommended-strategy-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .strategy-match-score {
            background: rgba(46, 204, 113, 0.3);
            border: 2px solid #2ecc71;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .strategy-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }
        
        /* Tips Section */
        .tips-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .tip-card {
            background: linear-gradient(145deg, #fafbff 0%, #ffffff 100%);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid;
            transition: transform 0.3s;
        }
        
        .tip-card.tip-success {
            border-color: #2ecc71;
        }
        
        .tip-card.tip-warning {
            border-color: #f39c12;
        }
        
        .tip-card.tip-danger {
            border-color: #e74c3c;
        }
        
        .tip-card:hover {
            transform: translateX(5px);
        }
        
        .tip-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .tip-icon {
            font-size: 1.3rem;
        }
        
        .tip-text {
            color: #666;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
            text-align: center;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin-top: 2rem;
        }
        
        .cta-btn {
            background: white;
            color: #667eea;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        /* Footer */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #667eea;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #333;
            margin-top: 2rem;
            color: #999;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 2rem;
            }
            
            .content-section {
                padding: 2rem;
            }
            
            .strategy-card {
                padding: 1.5rem;
            }
            
            .comparison-table {
                font-size: 0.9rem;
            }
        }
