/* spinblitz.ca - Unique Global Stylesheet (SEO Differentiated Structure) */

:root {
    --sb-bg: #040914;
    --sb-card-bg: #0a1122;
    --sb-text: #e0e6ed;
    --sb-cyan: #00d4ff;
    --sb-gold: #ffc800;
    --sb-border: rgba(0, 212, 255, 0.2);
    --sb-radius: 12px;
    --sb-font: 'Outfit', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--sb-bg);
    color: var(--sb-text);
    font-family: var(--sb-font);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--sb-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sb-gold);
}

.sb-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sb-cyan);
    color: #000;
    padding: 8px;
    z-index: 10000;
    transition: top 0.2s;
}

.sb-skip-link:focus {
    top: 0;
}

/* Header & Nav */
.sb-header {
    background: rgba(4, 9, 20, 0.95);
    border-bottom: 1px solid var(--sb-border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sb-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.sb-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.sb-logo-link {
    display: block;
    height: 50px;
}

.sb-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.sb-desktop-menu {
    display: flex;
    gap: 1.5rem;
}

.sb-desktop-menu a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.sb-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--sb-cyan), #0077ff);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.sb-btn:hover {
    background: linear-gradient(90deg, var(--sb-gold), #ff8800);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
    color: #000 !important;
}

.sb-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--sb-cyan);
    font-size: 2rem;
    cursor: pointer;
}

/* Unique Hero Section Layout */
.sb-hero-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--sb-cyan);
}

.sb-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 9, 20, 0.95) 0%, rgba(4, 9, 20, 0.6) 50%, rgba(4, 9, 20, 0.2) 100%);
    z-index: 1;
}

.sb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.sb-hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sb-hero-content p {
    font-size: 1.2rem;
    color: var(--sb-text);
    margin-bottom: 2rem;
}

/* Typography and Content Area */
.sb-article-block {
    padding: 4rem 0;
}

.sb-article-block h2 {
    color: var(--sb-cyan);
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--sb-gold);
    padding-left: 15px;
}

.sb-article-block h3 {
    color: var(--sb-gold);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sb-article-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Modern Unique Table CSS */
.sb-datagrid {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
}

.sb-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--sb-card-bg);
}

.sb-table caption {
    padding: 1.2rem;
    background: rgba(0, 212, 255, 0.1);
    font-weight: bold;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid var(--sb-border);
}

.sb-table th,
.sb-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-table th {
    color: var(--sb-cyan);
    font-weight: 700;
}

.sb-table tbody tr:hover {
    background: rgba(255, 200, 0, 0.05);
}

/* Modern Unique CSS Chart Layout */
.sb-visual-graph {
    background: var(--sb-card-bg);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.sb-graph-header {
    text-align: center;
    color: var(--sb-gold);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sb-graph-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sb-hz-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sb-hz-label {
    width: 30%;
    color: var(--sb-text);
    font-weight: 600;
    text-align: right;
    padding-right: 15px;
    font-size: 1rem;
}

.sb-hz-track {
    width: 55%;
    background: rgba(255, 255, 255, 0.05);
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.sb-hz-fill {
    height: 100%;
    background: linear-gradient(90deg, #005bb5, var(--sb-cyan));
    border-radius: 8px 0 0 8px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transition: width 1.5s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.sb-hz-val {
    width: 15%;
    color: var(--sb-gold);
    font-weight: 800;
    text-align: left;
    padding-left: 15px;
    font-size: 1.1rem;
}

/* Author Box */
.sb-author-card {
    display: flex;
    align-items: center;
    background: var(--sb-card-bg);
    border: 1px solid var(--sb-border);
    padding: 2rem;
    border-radius: var(--sb-radius);
    margin-top: 4rem;
}

.sb-author-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2rem;
    border: 3px solid var(--sb-cyan);
}

.sb-author-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Footer structure */
.sb-footer {
    background: #02050b;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--sb-border);
    margin-top: 4rem;
}

.sb-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.sb-footer-column h4 {
    color: var(--sb-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.sb-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sb-disclaimer {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sticky Mobile CTA */
.sb-sticky-cta {
    display: none;
}

@media (max-width: 900px) {
    .sb-desktop-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(4, 9, 20, 0.98);
        padding: 2rem;
        border-bottom: 1px solid var(--sb-cyan);
    }

    .sb-desktop-menu.active {
        display: flex;
    }

    .sb-mobile-btn {
        display: block;
    }

    .sb-hero-content h1 {
        font-size: 2.2rem;
    }

    .sb-graph-bars {
        height: 220px;
    }

    .sb-graph-label {
        font-size: 0.75rem;
        transform: rotate(-35deg);
        bottom: -50px;
    }

    .sb-visual-graph {
        padding-bottom: 4rem;
    }

    .sb-author-card {
        flex-direction: column;
        text-align: center;
    }

    .sb-author-pic {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .sb-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(4, 9, 20, 0.95);
        padding: 1rem;
        z-index: 9999;
        text-align: center;
        border-top: 1px solid var(--sb-gold);
    }

    .sb-sticky-cta .sb-btn {
        width: 100%;
    }

    .sb-footer {
        padding-bottom: 100px;
    }
}