/* ===================================
   BLOG V1.1 UNIFIED CSS STYLESHEET
   Version: 1.1
   Description: Consolidated styles for all blog articles
   Prefix: .blog-v1-1 to prevent conflicts
   =================================== */

/* ===================================
   1. GLOBAL RESET & BASE STYLES
   =================================== */
.blog-v1-1 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blog-v1-1 {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   2. CONTAINER & LAYOUT
   =================================== */
.blog-v1-1 .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===================================
   3. HERO SECTION
   =================================== */
.blog-v1-1 .blog-hero {
    background: linear-gradient(
            135deg,
            #3f0074 0%,
            #751bc5 40%,
            #8c1dc1 70%,
            #fa27a2 100%
    );
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(117, 27, 197, 0.4);
}

/* Pattern Overlay */
.blog-v1-1 .blog-hero::before {
    content: "♠♥♦♣";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 180px;
    opacity: 0.08;
    letter-spacing: 30px;
    color: #fede39;
}

/* Glowing Orb Effect */
.blog-v1-1 .blog-hero::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
            circle,
            rgba(254, 222, 57, 0.3) 0%,
            transparent 60%
    );
    border-radius: 50%;
    filter: blur(40px);
}

.blog-v1-1 .blog-hero h1 {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(to right, #fede39, #ffc940, #ff9d3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(254, 222, 57, 0.3);
}

.blog-v1-1 .blog-hero p {
    font-size: 1.3em;
    opacity: 0.95;
    max-width: 800px;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

/* ===================================
   4. NAVIGATION
   =================================== */
.blog-v1-1 .blog-nav {
    background: rgba(22, 0, 122, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(124, 100, 230, 0.4);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 50px;
    position: sticky;
    top: 20px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(140, 29, 193, 0.3);
}

.blog-v1-1 .blog-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-v1-1 .blog-nav a {
    color: #bee1fc;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 600;
    border: 1px solid transparent;
    background: rgba(117, 27, 197, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-v1-1 .blog-nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(250, 39, 162, 0.4),
            transparent
    );
    transition: left 0.5s ease;
}

.blog-v1-1 .blog-nav a:hover::before {
    left: 100%;
}

.blog-v1-1 .blog-nav a:hover {
    background: linear-gradient(135deg, #8c1dc1, #fa27a2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 39, 162, 0.4);
    border-color: #fa27a2;
}

/* ===================================
   5. SECTIONS
   =================================== */
.blog-v1-1 .blog-section {
    background: linear-gradient(
            135deg,
            rgba(36, 30, 56, 0.9),
            rgba(22, 0, 122, 0.3)
    );
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    scroll-margin-top: 120px;
    border: 1px solid rgba(124, 100, 230, 0.2);
    position: relative;
}

.blog-v1-1 .blog-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #751bc5, #fa27a2, #50aef3);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.blog-v1-1 .blog-section:hover::before {
    opacity: 0.1;
}

/* ===================================
   6. TYPOGRAPHY
   =================================== */
.blog-v1-1 .blog-section h2 {
    color: #fede39;
    font-size: 2.5em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #751bc5;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(254, 222, 57, 0.3);
}

.blog-v1-1 .blog-section h3 {
    color: #50aef3;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-v1-1 .blog-section h4 {
    color: #ffc940;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-v1-1 .blog-section p {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-v1-1 strong {
    color: #ffc940;
    font-weight: 600;
}

/* ===================================
   7. CARDS & HIGHLIGHTS
   =================================== */
.blog-v1-1 .blog-card {
    background: linear-gradient(
            135deg,
            rgba(254, 222, 57, 0.15),
            rgba(255, 201, 64, 0.1)
    );
    border-left: 4px solid #fede39;
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.blog-v1-1 .blog-highlight {
    background: linear-gradient(
            135deg,
            rgba(255, 157, 62, 0.2),
            rgba(248, 116, 17, 0.1)
    );
    border-left: 4px solid #ff9d3e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.blog-v1-1 .blog-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(
            circle,
            rgba(254, 222, 57, 0.2) 0%,
            transparent 70%
    );
    border-radius: 50%;
}

.blog-v1-1 .blog-highlight p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* ===================================
   8. TABLES
   =================================== */
.blog-v1-1 .blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(16, 0, 74, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.blog-v1-1 .table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-v1-1 .blog-table th {
    background: linear-gradient(135deg, #751bc5, #8c1dc1);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-v1-1 .blog-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(124, 100, 230, 0.2);
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.blog-v1-1 .blog-table tr:hover td {
    background: rgba(250, 39, 162, 0.1);
    color: #ffffff;
}

/* ===================================
   9. GRID LAYOUTS
   =================================== */
.blog-v1-1 .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.blog-v1-1 .blog-grid-item {
    background: linear-gradient(
            135deg,
            rgba(63, 0, 116, 0.4),
            rgba(22, 0, 122, 0.3)
    );
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.blog-v1-1 .blog-grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fa27a2, #e1407e, #8c1dc1);
    border-radius: 12px;
    z-index: -1;
    margin: -2px;
}

.blog-v1-1 .blog-grid-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(250, 39, 162, 0.3);
}

.blog-v1-1 .blog-grid-item h4 {
    color: #ffc940;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-v1-1 .blog-grid-item p {
    color: #e0e0e0;
}

/* ===================================
   10. LISTS
   =================================== */
.blog-v1-1 .blog-card ul,
.blog-v1-1 .blog-section ul {
    color: #e0e0e0;
    margin: 20px 0;
}

.blog-v1-1 .blog-card li,
.blog-v1-1 .blog-section li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.blog-v1-1 .blog-card li::before {
    content: "♦";
    color: #ff9d3e;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.blog-v1-1 .blog-section ol,
.blog-v1-1 .blog-section ul {
    color: #e0e0e0;
    margin: 20px 0;
}

.blog-v1-1 .blog-section ol li,
.blog-v1-1 .blog-section ul li {
    margin: 10px 0;
    padding-left: 10px;
}

/* ===================================
   11. CTA BUTTONS
   =================================== */
.blog-v1-1 .blog-cta {
    background: linear-gradient(135deg, #00b17c, #50aef3, #1d8ee0);
    background-size: 200% 200%;
    animation: blog-v1-1-gradientShift 3s ease infinite;
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(0, 177, 124, 0.3);
}

@keyframes blog-v1-1-gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.blog-v1-1 .blog-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(80, 174, 243, 0.5);
}

/* ===================================
   12. SPECIAL COMPONENTS
   =================================== */

/* Quick Reference Box */
.blog-v1-1 .quick-ref-box {
    background: linear-gradient(
            135deg,
            rgba(190, 225, 252, 0.1),
            rgba(158, 214, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    margin: 35px 0;
    border: 1px solid rgba(80, 174, 243, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 120px;
    z-index: 50;
}

.blog-v1-1 .quick-ref-box h3 {
    color: #50aef3;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Step Guide */
.blog-v1-1 .step-guide {
    counter-reset: step-counter;
}

.blog-v1-1 .step-item {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 80px;
    margin: 20px 0;
    background: linear-gradient(
            135deg,
            rgba(80, 174, 243, 0.1),
            rgba(29, 142, 224, 0.05)
    );
    border-radius: 12px;
    border: 1px solid rgba(80, 174, 243, 0.3);
}

.blog-v1-1 .step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #50aef3, #1d8ee0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

/* Hand Ranking Visual */
.blog-v1-1 .hand-ranking-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(124, 100, 230, 0.1);
    border-radius: 8px;
    margin: 8px 0;
    border: 1px solid rgba(124, 100, 230, 0.3);
}

/* Playing Cards */
.blog-v1-1 .playing-card {
    display: inline-block;
    width: 45px;
    height: 63px;
    border: 2px solid #7c64e6;
    border-radius: 6px;
    background: linear-gradient(135deg, #16007a, #3f0074);
    text-align: center;
    line-height: 63px;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.blog-v1-1 .playing-card:hover {
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(124, 100, 230, 0.4);
}

.blog-v1-1 .card-red {
    color: #fa27a2;
}

.blog-v1-1 .card-black {
    color: #ffffff;
}

/* Strategy Calculator */
.blog-v1-1 .strategy-calculator {
    background: linear-gradient(
            135deg,
            rgba(190, 225, 252, 0.1),
            rgba(158, 214, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    margin: 35px 0;
    border: 1px solid rgba(80, 174, 243, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-v1-1 .strategy-calculator h3 {
    color: #50aef3;
    margin-bottom: 25px;
    font-size: 1.8em;
}

/* Input Fields */
.blog-v1-1 .blog-input {
    width: 100%;
    padding: 15px;
    margin: 12px 0;
    border: 2px solid rgba(80, 174, 243, 0.3);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.blog-v1-1 .blog-input:focus {
    outline: none;
    border-color: #50aef3;
    box-shadow: 0 0 25px rgba(80, 174, 243, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

/* Buttons */
.blog-v1-1 .blog-button {
    background: linear-gradient(135deg, #751bc5, #8c1dc1, #fa27a2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(140, 29, 193, 0.3);
}

.blog-v1-1 .blog-button:hover {
    background: linear-gradient(135deg, #8c1dc1, #fa27a2, #e1407e);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 39, 162, 0.4);
}

/* Probability Meter */
.blog-v1-1 .probability-meter {
    background: rgba(16, 0, 74, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(124, 100, 230, 0.3);
}

.blog-v1-1 .probability-bar {
    width: 100%;
    height: 20px;
    background: rgba(124, 100, 230, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.blog-v1-1 .probability-fill {
    height: 100%;
    background: linear-gradient(90deg, #fa27a2, #ffc940, #00b17c);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

/* Variation Badge */
.blog-v1-1 .variation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8c1dc1, #fa27a2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    margin: 3px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(140, 29, 193, 0.3);
}

/* Platform Rating Stars */
.blog-v1-1 .platform-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 12px 0;
}

.blog-v1-1 .star {
    color: #fede39;
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(254, 222, 57, 0.5);
}

/* FAQ Enhancement */
.blog-v1-1 .blog-faq h3 {
    color: #ffc940;
    margin: 25px 0 15px 0;
    font-size: 1.4em;
    padding-left: 30px;
    position: relative;
}

.blog-v1-1 .blog-faq h3::before {
    content: "❓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* Strategy Level Badges */
.blog-v1-1 .strategy-level {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin: 5px;
}

.blog-v1-1 .level-beginner {
    background: linear-gradient(135deg, #00b17c, #50aef3);
    color: white;
}

.blog-v1-1 .level-intermediate {
    background: linear-gradient(135deg, #ffc940, #ff9d3e);
    color: #16007a;
}

.blog-v1-1 .level-advanced {
    background: linear-gradient(135deg, #fa27a2, #e1407e);
    color: white;
}

.blog-v1-1 .level-expert {
    background: linear-gradient(135deg, #8c1dc1, #751bc5);
    color: white;
}

/* ===================================
   13. GAMES SHOWCASE (from hub.index.html)
   =================================== */
.blog-v1-1 .games-showcase-container {
    margin: 40px 0;
    position: relative;
}

.blog-v1-1 .games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.blog-v1-1 .game-card {
    background: linear-gradient(
            135deg,
            rgba(63, 0, 116, 0.6),
            rgba(22, 0, 122, 0.4)
    );
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.blog-v1-1 .game-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #751bc5, #fa27a2);
    border-radius: 12px;
    z-index: -1;
    margin: -2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-v1-1 .game-card:hover::before {
    opacity: 1;
}

.blog-v1-1 .game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(250, 39, 162, 0.4);
}

.blog-v1-1 .game-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #16007a, #3f0074);
}

.blog-v1-1 .game-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-v1-1 .game-card:hover .game-thumbnail img {
    transform: scale(1.1);
}

.blog-v1-1 .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-v1-1 .game-card:hover .game-overlay {
    opacity: 1;
}

.blog-v1-1 .play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b17c, #50aef3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0, 177, 124, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.blog-v1-1 .game-card:hover .play-button {
    transform: scale(1);
}

.blog-v1-1 .game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #751bc5, #8c1dc1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.blog-v1-1 .badge-live {
    background: linear-gradient(135deg, #fa27a2, #e1407e);
    animation: blog-v1-1-pulse 2s infinite;
}

.blog-v1-1 .badge-hot {
    background: linear-gradient(135deg, #f87411, #ff9d3e);
}

.blog-v1-1 .badge-tournament {
    background: linear-gradient(135deg, #fede39, #ffc940);
    color: #16007a;
}

.blog-v1-1 .badge-special {
    background: linear-gradient(135deg, #50aef3, #1d8ee0);
}

.blog-v1-1 .badge-private {
    background: linear-gradient(135deg, #8c1dc1, #3f0074);
}

.blog-v1-1 .badge-speed {
    background: linear-gradient(135deg, #00b17c, #50aef3);
}

.blog-v1-1 .badge-free {
    background: linear-gradient(135deg, #00b17c, #00b17c);
}

@keyframes blog-v1-1-pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.blog-v1-1 .game-info {
    padding: 20px;
}

.blog-v1-1 .game-info h4 {
    color: #ffc940;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-v1-1 .game-info p {
    color: #bee1fc;
    font-size: 0.9em;
    margin-bottom: 12px;
    opacity: 0.9;
}

.blog-v1-1 .game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
}

.blog-v1-1 .players-count {
    color: #50aef3;
    font-weight: 600;
}

.blog-v1-1 .game-rating {
    color: #fede39;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(254, 222, 57, 0.3);
}

.blog-v1-1 .swiper-navigation {
    display: none;
}

/* ===================================
   14. SCROLLBAR STYLING
   =================================== */
.blog-v1-1::-webkit-scrollbar {
    width: 12px;
}

.blog-v1-1::-webkit-scrollbar-track {
    background: #16007a;
}

.blog-v1-1::-webkit-scrollbar-thumb {
    background: linear-gradient(#751bc5, #fa27a2);
    border-radius: 6px;
}

.blog-v1-1::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#8c1dc1, #e1407e);
}

/* ===================================
   15. RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .blog-v1-1 .blog-container {
        padding: 15px;
    }

    .blog-v1-1 .blog-hero {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .blog-v1-1 .blog-hero h1 {
        font-size: 1.8em;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .blog-v1-1 .blog-hero p {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .blog-v1-1 .blog-hero::before {
        font-size: 120px;
        right: -20px;
    }

    .blog-v1-1 .blog-nav {
        position: static;
        padding: 15px;
        margin-bottom: 30px;
    }

    .blog-v1-1 .blog-nav ul {
        gap: 8px;
        justify-content: flex-start;
    }

    .blog-v1-1 .blog-nav a {
        padding: 8px 12px;
        font-size: 0.85em;
        white-space: nowrap;
    }

    .blog-v1-1 .blog-section {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .blog-v1-1 .blog-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .blog-v1-1 .blog-section h3 {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .blog-v1-1 .blog-section p {
        font-size: 1em;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .blog-v1-1 .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    .blog-v1-1 .blog-grid-item {
        padding: 20px 15px;
    }

    .blog-v1-1 .blog-grid-item h4 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .blog-v1-1 .blog-table {
        font-size: 0.8em;
        min-width: 600px;
        margin: 15px 0;
    }

    .blog-v1-1 .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 15px 0;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .blog-v1-1 .blog-table th,
    .blog-v1-1 .blog-table td {
        padding: 8px 6px;
        min-width: 80px;
    }

    .blog-v1-1 .blog-card {
        padding: 15px;
        margin: 15px 0;
    }

    .blog-v1-1 .blog-card li {
        font-size: 0.95em;
        margin: 8px 0;
        padding-left: 20px;
    }

    .blog-v1-1 .blog-highlight {
        padding: 15px;
        margin: 15px 0;
    }

    .blog-v1-1 .quick-ref-box {
        position: static;
        padding: 20px 15px;
        margin: 20px 0;
    }

    .blog-v1-1 .quick-ref-box h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .blog-v1-1 .step-item {
        padding: 15px 15px 15px 60px;
        margin: 15px 0;
    }

    .blog-v1-1 .step-item::before {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
        left: 15px;
    }

    .blog-v1-1 .playing-card {
        width: 35px;
        height: 50px;
        line-height: 50px;
        font-size: 0.9em;
        margin: 0 2px;
    }

    .blog-v1-1 .blog-cta {
        display: block;
        text-align: center;
        margin: 15px 0;
        padding: 15px 25px;
        font-size: 1em;
    }

    .blog-v1-1 .strategy-calculator {
        padding: 20px 15px;
        margin: 20px 0;
    }

    /* Games Grid Mobile */
    .blog-v1-1 .games-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 20px;
        margin: 20px -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .blog-v1-1 .games-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-v1-1 .game-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .blog-v1-1 .swiper-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .blog-v1-1 .swiper-button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #751bc5, #8c1dc1);
        color: white;
        border: none;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .blog-v1-1 .swiper-button:hover {
        background: linear-gradient(135deg, #8c1dc1, #fa27a2);
        transform: scale(1.1);
    }

    .blog-v1-1 .swiper-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

@media (max-width: 480px) {
    .blog-v1-1 .blog-container {
        padding: 10px;
    }

    .blog-v1-1 .blog-hero {
        padding: 30px 15px;
    }

    .blog-v1-1 .blog-hero h1 {
        font-size: 1.6em;
    }

    .blog-v1-1 .blog-hero p {
        font-size: 1em;
    }

    .blog-v1-1 .blog-nav {
        padding: 12px;
    }

    .blog-v1-1 .blog-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .blog-v1-1 .blog-nav a {
        padding: 10px;
        text-align: center;
        font-size: 0.9em;
    }

    .blog-v1-1 .blog-section {
        padding: 20px 12px;
    }

    .blog-v1-1 .blog-section h2 {
        font-size: 1.6em;
    }

    .blog-v1-1 .blog-section h3 {
        font-size: 1.3em;
    }

    .blog-v1-1 .blog-table {
        font-size: 0.75em;
    }

    .blog-v1-1 .blog-table th,
    .blog-v1-1 .blog-table td {
        padding: 6px 4px;
        min-width: 70px;
    }

    .blog-v1-1 .step-item {
        padding: 12px 12px 12px 50px;
    }

    .blog-v1-1 .step-item::before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
        left: 12px;
    }

    .blog-v1-1 .playing-card {
        width: 30px;
        height: 42px;
        line-height: 42px;
        font-size: 0.8em;
    }
}

/* ===================================
   16. PERFORMANCE OPTIMIZATIONS
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .blog-v1-1 *,
    .blog-v1-1 *::before,
    .blog-v1-1 *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading state for images */
.blog-v1-1 img[loading="lazy"] {
    background: linear-gradient(135deg, #16007a, #3f0074);
}
