/* Header - reuse from homepage */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(26, 28, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 246, 255, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--color-cyan);
}

.nav a.active {
    color: var(--color-cyan);
}

/* Tutorial Hero */
.tutorial-hero {
    padding: 140px 0 30px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(0, 246, 255, 0.08) 0%, transparent 60%);
}

.tutorial-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 6px;
}

.tutorial-hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.tutorial-carousel {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(34, 38, 45, 0.9);
    border: 1px solid rgba(0, 246, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.carousel-progress-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
    transition: width 0.4s ease;
}

.carousel-viewport {
    overflow: hidden;
    cursor: grab;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 2.5rem 3rem;
}

/* Slide Content */
.slide-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.slide-step {
    display: inline-block;
    background: rgba(0, 246, 255, 0.15);
    color: var(--color-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    flex-shrink: 0;
}

.slide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #fff;
    margin: 0;
}

.slide-visual {
    margin-bottom: 1.5rem;
}

.slide-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
}

/* Side arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 246, 255, 0.3);
    color: var(--color-cyan);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
    background: rgba(0, 246, 255, 0.15);
    border-color: rgba(0, 246, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 246, 255, 0.25);
}

.carousel-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.carousel-arrow--left {
    left: 12px;
}

.carousel-arrow--right {
    right: 12px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-cyan);
    box-shadow: 0 0 8px rgba(0, 246, 255, 0.5);
}

/* Game Visual Elements */
.tut-card {
    width: 70px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tut-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tut-card.card-sm {
    width: 55px;
}

.tut-card.card-lg {
    width: 85px;
}

.tut-card.glow-match {
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.6);
    border: 2px solid var(--color-cyan);
}

.tut-power-disk {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #f4a100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: #1a1c20;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tut-board-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.tut-board-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.tut-board-header--protagonist {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tut-board-header--protector {
    background: rgba(85, 227, 161, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(85, 227, 161, 0.3);
}

.tut-board-header--conspirator {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tut-board-header--hand {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tut-card-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tut-garden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 240px;
    padding: 0.75rem;
    background: rgba(85, 227, 161, 0.05);
    border: 2px solid rgba(85, 227, 161, 0.2);
    border-radius: 10px;
}

.tut-garden-cell {
    aspect-ratio: 2/3;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.tut-garden-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tut-garden-cell--matched {
    box-shadow: 0 0 12px rgba(0, 246, 255, 0.5);
    border: 2px solid var(--color-cyan);
}

/* Board 2x2 grid (matches in-game layout) */
.tut-board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.tut-board-grid--full {
    max-width: none;
}

.tut-board-grid .tut-card {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 120px;
}

.tut-board-section--highlight {
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

/* Layout helpers */
.vs-boards {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vs-divider {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--color-red);
    font-weight: 700;
}

.card-spread {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}

.start-flow {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.start-flow-hand {
    flex: 3;
    justify-content: center;
}

.start-flow-zone {
    flex: 1;
    margin: 0;
}

.start-flow .tut-card.card-lg {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 160px;
}

/* Resources (bonus actions & reveal tokens) */
.tut-resources {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.tut-resource {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tut-resource-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.tut-bonus-disk {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.7);
    background: linear-gradient(180deg, #2a2d35 0%, #1a1c22 100%);
    color: #daa520;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.tut-bonus-disk--sm {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
}

.tut-reveal-disk {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 100%);
    color: #1a1c22;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.tut-reveal-disk--sm {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
}

/* Action buttons (mimics in-game .btn-game) */
.tut-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tut-action-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tut-action-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.tut-end-turn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tut-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    min-width: 120px;
    flex-shrink: 0;
}

.tut-action-btn--primary {
    background: linear-gradient(180deg, rgba(0, 246, 255, 0.25) 0%, rgba(0, 246, 255, 0.15) 100%);
    border-color: rgba(0, 246, 255, 0.4);
    color: var(--color-cyan);
}

.tut-action-btn--warning {
    background: rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.35);
    color: #daa520;
}

.tut-action-btn--success {
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.35);
    color: #00c853;
}

/* Slide intro text */
.slide-intro {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

/* Action cards (slide 3) */
.tut-action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.tut-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
}

.tut-action-card strong {
    font-size: 0.8rem;
    color: #fff;
}

.tut-action-card span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.tut-action-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tut-action-card--primary {
    border-color: rgba(0, 246, 255, 0.3);
}

.tut-action-card--primary .tut-action-card-icon {
    background: rgba(0, 246, 255, 0.15);
    color: var(--color-cyan);
    border-color: rgba(0, 246, 255, 0.3);
}

.tut-action-card--warning {
    grid-column: 1 / -1;
    border-color: rgba(218, 165, 32, 0.3);
}

.tut-action-card--warning .tut-action-card-icon {
    background: rgba(218, 165, 32, 0.15);
    color: #daa520;
    border-color: rgba(218, 165, 32, 0.3);
}

/* Action category tags (slide 3) */
.tut-action-tags {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tut-action-tag {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    line-height: 1.3;
}

.tut-action-tag--logistic {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tut-action-tag--defensive {
    background: rgba(85, 227, 161, 0.15);
    color: #55e3a1;
    border: 1px solid rgba(85, 227, 161, 0.3);
}

.tut-action-tag--offensive {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Resource boxes (slide 3) */
.tut-resources-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tut-resource-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.tut-resource-box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.tut-resource-box-header strong {
    font-size: 0.8rem;
    color: #fff;
}

.tut-resource-box-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.tut-resource-list {
    list-style: disc;
    padding: 0 0 0 1.1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.tut-resource-list li::marker {
    color: var(--color-cyan);
}

.tut-resource-list ul {
    list-style: disc;
    padding: 0 0 0 1rem;
    margin: 0.2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tut-resource-list ul li::marker {
    color: var(--color-cyan);
}

/* Conspiracy phases (slide 7) */
.tut-conspire-phases {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tut-conspire-phase {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.tut-conspire-phase--react {
    border-color: rgba(0, 246, 255, 0.2);
}

.tut-conspire-phase-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tut-conspire-phase-header strong {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tut-conspire-phase-body {
    padding: 0.75rem;
}

.tut-conspire-phase-text {
    margin: 0 0 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.tut-conspire-react-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tut-conspire-react-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.tut-conspire-react-list li i {
    color: var(--color-cyan);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.tut-conspire-phase-note {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    color: rgba(239, 68, 68, 0.8);
    line-height: 1.4;
    font-style: italic;
}

.tut-conspire-phase-note i {
    margin-right: 0.3rem;
    color: #ef4444;
}

.tut-conspire-phase-desc {
    display: block;
    text-align: center;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.tut-conspire-phase-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.tut-conspire-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* Reveal panels (slide 8) */
.tut-reveal-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 1.25rem;
}

.tut-reveal-panel {
    text-align: center;
}

.tut-reveal-panel .split-panel-label {
    margin-bottom: 1.5rem;
}

.tut-reveal-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.tut-reveal-visual .tut-card {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 120px;
}

/* Dispatch board with SVG arrows */
.tut-dispatch-board {
    position: relative;
}

.tut-dispatch-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.tut-arrow-line {
    stroke: rgba(0, 246, 255, 0.5);
    stroke-width: 1.5;
    stroke-dasharray: 6, 4;
}

.tut-card--ghost {
    opacity: 0.35;
    border: 2px dashed rgba(0, 246, 255, 0.4) !important;
    border-radius: 10px;
}

/* Redeploy board */
.tut-redeploy-board {
    position: relative;
}

.tut-board-section--dimmed {
    opacity: 0.35;
    pointer-events: none;
}

.tut-redeploy-gardens {
    margin-top: 1rem;
    text-align: center;
}

.tut-board-header--garden {
    background: rgba(85, 227, 161, 0.12);
    color: #55e3a1;
    border: 1px solid rgba(85, 227, 161, 0.25);
}

.tut-garden-grid--mini {
    max-width: 200px;
    margin: 0 auto;
    gap: 4px;
}

.tut-redeploy-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Conspiracy flow */
.tut-conspire-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tut-conspire-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 500px;
}

.tut-conspire-badge {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 246, 255, 0.15);
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tut-conspire-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.board-mockup {
    max-width: 320px;
}

.flow-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: var(--color-cyan);
    font-size: 0.9rem;
}

.flow-arrow i {
    font-size: 1.2rem;
}

.goal-box {
    background: rgba(0, 246, 255, 0.08);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-align: left;
    margin-top: 1.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.goal-lead {
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.goal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.goal-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.5;
}

.goal-list li i {
    color: var(--color-cyan);
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

.split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.split-panel {
    text-align: center;
}

.split-panel-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--color-cyan);
}

/* Card hierarchy (slide 9) */
.tut-hierarchy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.tut-hierarchy-chain {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
}

.tut-hierarchy-exception {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--color-red);
    letter-spacing: 1px;
}

/* Confrontation examples (slide 9) */
.tut-confront-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tut-confront-example {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tut-confront-example .tut-board-section {
    margin-bottom: 0;
    flex: 1;
    min-width: 80px;
}

.tut-confront-bolt {
    color: var(--color-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tut-confront-result {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tut-confront-result--win {
    color: #55e3a1;
}

.tut-confront-result--lose {
    color: #ef4444;
}

.tut-confront-result i {
    margin-right: 0.25rem;
}

.tut-confront-shield {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tut-confront-shield .tut-confront-result {
    width: 100%;
    text-align: center;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Shield overlay on protected card */
.tut-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.tut-shield svg {
    width: 100%;
    height: 100%;
    color: #1a0a2e;
    filter: drop-shadow(0 0 6px #8b5cf6) drop-shadow(0 0 12px #a855f7) drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
}

.tut-confront-shield .tut-board-section {
    margin-bottom: 0;
}

.tut-confront-shield-stack {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tut-confront-shield-stack .tut-board-section {
    margin-bottom: 0;
}

.tut-confront-examples .tut-board-header,
.tut-confront-shield .tut-board-header {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.4rem;
}

.tut-confront-examples .tut-board-section,
.tut-confront-shield .tut-board-section {
    padding: 0.6rem;
}

@media (max-width: 768px) {
    .tut-confront-examples {
        grid-template-columns: 1fr;
    }

    .tut-confront-shield {
        flex-wrap: wrap;
    }
}

/* Conspiracy tactics (slide 10) */
.tut-tactics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tut-tactic {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.tut-tactic-header {
    margin-bottom: 0.5rem;
}

.tut-tactic-desc {
    margin: 0 0 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.tut-tactic-visual {
    margin-top: 0.5rem;
}

.tut-enhance-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.tut-enhance-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.tut-enhance-pill--neg {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.tut-enhance-pill--pos {
    background: rgba(85, 227, 161, 0.15);
    color: #55e3a1;
    border: 2px solid rgba(85, 227, 161, 0.4);
}

/* Conspiracy actions 3-column grid */
.tut-conspire-actions--3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .tut-conspire-actions--3col {
        grid-template-columns: 1fr 1fr;
    }
}

/* Predisposition badges (slide 11) */
.predisposition-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pred-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pred-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.pred-badge-icon.protagonist {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pred-badge-icon.protector {
    background: rgba(85, 227, 161, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(85, 227, 161, 0.3);
}

.pred-badge-icon.conspirator {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.pred-badge-icon.outcast {
    background: rgba(255, 107, 122, 0.15);
    color: var(--color-red);
    border: 1px solid rgba(255, 107, 122, 0.3);
}

.pred-badge-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.pred-badge-text strong {
    color: #fff;
    display: block;
    margin-bottom: 0.15rem;
}

/* Decree icons (slide 10) */
.decree-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.decree-item {
    text-align: center;
    max-width: 200px;
}

.decree-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.75rem;
}

.decree-item-icon.total-war {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.decree-item-icon.peace-treaty {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.decree-item-icon.infiltration {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 2px solid rgba(168, 85, 247, 0.4);
}

.decree-item-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.decree-item-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Decree cards (slide 12) */
.tut-decree-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tut-decree-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.tut-decree-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.tut-decree-card-header .decree-item-icon {
    margin: 0;
    flex-shrink: 0;
}

.tut-decree-req {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.15rem;
}

.tut-decree-req i {
    margin-right: 0.2rem;
    font-size: 0.6rem;
}

/* CTA buttons (slide 14) */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Step counter */
.carousel-step-counter {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: 'Orbitron', sans-serif;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 246, 255, 0.5));
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .carousel-slide {
        padding: 1.5rem 1.25rem;
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-nav {
        padding: 1rem;
    }

    .vs-boards {
        flex-direction: column;
        gap: 1rem;
    }

    .split-view {
        grid-template-columns: 1fr;
    }

    .predisposition-badges {
        grid-template-columns: 1fr;
    }

    .tut-card {
        width: 55px;
    }

    .tut-card.card-lg {
        width: 65px;
    }

    .start-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .start-flow-hand,
    .start-flow-zone {
        flex-basis: 100%;
    }

    .tut-action-cards {
        grid-template-columns: 1fr;
    }

    .tut-action-card--warning {
        grid-column: auto;
    }

    .tut-resources-boxes {
        grid-template-columns: 1fr;
    }

    .tut-conspire-actions {
        grid-template-columns: 1fr;
    }

    .tut-actions-grid {
        grid-template-columns: 1fr;
    }

    .tut-board-grid {
        grid-template-columns: 1fr;
    }

    .tut-garden-grid {
        max-width: 200px;
    }

    .decree-icons {
        gap: 1rem;
    }
}
