/* AICryptopia Investor Deck - Modern Dark Theme with Neon Effects */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #1a1a2e;
    --secondary-bg: #2a2a4a;
    --text-light: #e0e0e0;
    --text-dark: #aaaaaa;
    --accent-blue: #4a90e2;
    --accent-purple: #8a4ae2;
    --accent-green: #4ae28a;
    --accent-gold: #f39c12;
    --accent-orange: #e67e22;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Arial', 'Microsoft YaHei', 'SimSun', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-light);
    overflow: hidden;
    min-height: 100vh;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    background: rgba(74, 144, 226, 0.2);
    color: var(--accent-blue);
    box-shadow: 0 2px 8px var(--shadow-color);
    transform: scale(1.05);
}

.sidebar-toggle.active {
    background: rgba(74, 144, 226, 0.3);
    box-shadow: 0 3px 12px var(--shadow-color);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-right: 2px solid var(--accent-blue);
    z-index: 1100;
    transition: left 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.15);
    background: rgba(74, 144, 226, 0.1);
}

.sidebar-header h3 {
    color: var(--accent-blue);
    margin: 0;
    font-size: 1.2rem;
    text-shadow: none;
}

.sidebar-close {
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-close:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.5);
}

.sidebar-content {
    padding: 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.slide-index {
    list-style: none;
    padding: 0;
    margin: 0;
}

.index-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.index-item:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
    box-shadow: inset 4px 0 0 var(--accent-blue);
}

.index-item.active {
    background: rgba(74, 144, 226, 0.25);
    box-shadow: inset 4px 0 0 var(--accent-blue);
    border-left: 4px solid var(--accent-blue);
}

.slide-number {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: bold;
    min-width: 30px;
    margin-right: 15px;
    text-shadow: none;
}

.slide-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 500;
}

.index-item.active .slide-title {
    color: var(--accent-blue);
    text-shadow: none;
}

/* Sidebar Overlay (for mobile) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Custom Scrollbar for Sidebar */
.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 226, 0.2);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 144, 226, 0.8);
}

/* Navigation Container */
.navigation-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    max-width: 90vw;
    gap: 30px;
}

/* Navigation Controls (Centered) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--accent-blue);
    backdrop-filter: blur(10px);
}

/* Language Toggle Button (Right Aligned, Dark Blue) */
.language-toggle-btn {
    background: rgba(25, 50, 100, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.4);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 35px;
    backdrop-filter: blur(5px);
}

.language-toggle-btn:hover {
    background: rgba(35, 70, 140, 0.9);
    border-color: rgba(120, 170, 255, 0.6);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover:not(.disabled) {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 2px 6px var(--accent-blue);
    transform: scale(1.1);
}

/* Navigation Button States */
.nav-btn.active {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 2px 8px var(--accent-blue);
    animation: pulse 2s infinite;
}

.nav-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #555;
    color: #555;
}

.nav-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Special Button Styles */
.home-btn {
    border-color: var(--accent-green);
    color: var(--accent-green);
}



.home-btn:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-green);
    box-shadow: 0 2px 6px var(--accent-green);
    border-color: var(--accent-green);
}

.home-btn.active {
    background: rgba(0, 0, 0, 0.9);
    color: var(--accent-green);
    box-shadow: 0 2px 8px var(--accent-green);
    border-color: var(--accent-green);
}

.end-btn {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.end-btn:hover:not(.disabled) {
    background: var(--accent-purple);
    color: #000;
    box-shadow: 0 2px 6px var(--accent-purple);
}

.end-btn.active {
    background: var(--accent-purple);
    color: #000;
    box-shadow: 0 2px 8px var(--accent-purple);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.slide-counter {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 14px;
    text-shadow: none;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    width: 7.14%; /* 1/14 for first slide */
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--accent-blue);
}

/* Slide Indicators */
.slide-indicators {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    backdrop-filter: blur(10px);
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.slide-dot:hover {
    background: rgba(74, 144, 226, 0.25);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
}

.slide-dot.active {
    background: var(--accent-blue);
    transform: scale(1.5);
    box-shadow: 0 0 10px var(--accent-blue);
    border-color: #ffffff;
}

/* Special indicator colors for key slides */
.slide-dot[data-slide="1"] {
    background: rgba(74, 226, 138, 0.6); /* Green for title */
}

.slide-dot[data-slide="1"].active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.slide-dot[data-slide="14"] {
    background: rgba(138, 74, 226, 0.6); /* Magenta for conclusion */
}

.slide-dot[data-slide="14"].active {
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
}

/* Slide Styles */
.slide {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: slideIn 0.6s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    cursor: default;
}

.slide.active {
    display: block;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    min-height: 100vh;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* For slides with more content, allow natural flow instead of centering */
.slide-content.scrollable {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Custom Scrollbar for Slides */
.slide::-webkit-scrollbar {
    width: 8px;
}

.slide::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.slide::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

.slide::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00cccc, #cc00cc);
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
}

/* Typography */
h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: none;
}

h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

/* Title Slide Specific */
.title-main {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-weight: bold;
}

.title-tagline {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: none;
}

.title-sub {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: none;
}

.title-meta {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-top: 2.5rem;
}

.title-meta p {
    margin-bottom: 0.5rem;
}

/* Fusion SVG */
.fusion-svg {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.fusion-svg svg {
    filter: drop-shadow(0 0 20px var(--accent-blue));
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

li::before {
    content: "🔸";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Problem & Solution Pairs Layout */
.problem-solution-pairs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.solution-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.problem-card, .solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 220px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
}

.problem-card {
    border-color: rgba(255, 68, 68, 0.3);
}

.solution-card {
    border-color: rgba(74, 226, 138, 0.3);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(74, 226, 138, 0.3);
}

.problem-card .card-icon, .solution-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.problem-card .card-title, .solution-card .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.problem-card .card-title {
    color: #ff4444;
    text-shadow: none;
}

.solution-card .card-title {
    color: var(--accent-green);
    text-shadow: none;
}

.problem-card .card-highlight, .solution-card .card-highlight {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problem-card .card-highlight {
    background: rgba(255, 68, 68, 0.2);
    color: #ff8888;
    border: 1px solid rgba(255, 68, 68, 0.4);
}

.solution-card .card-highlight {
    background: rgba(74, 226, 138, 0.2);
    color: #88ff88;
    border: 1px solid rgba(74, 226, 138, 0.4);
}

.problem-card .card-details, .solution-card .card-details {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-card .card-details li, .solution-card .card-details li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.2rem;
}

.problem-card .card-details li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: #ff4444;
    font-size: 0.8rem;
    text-shadow: none;
}

.solution-card .card-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent-green);
    font-size: 0.8rem;
    text-shadow: none;
}

.pair-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Solution Badge */
.solution-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.solution-badge:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
}

.solution-card:hover .solution-badge {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.25);
}

/* Value Cards Layout (Slide 4) */
.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 200px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.knowledge-value {
    border-color: rgba(74, 144, 226, 0.15);
}

.knowledge-value:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.intelligence-value {
    border-color: rgba(138, 74, 226, 0.3);
}

.intelligence-value:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(138, 74, 226, 0.3);
}

.trust-value {
    border-color: rgba(74, 226, 138, 0.3);
}

.trust-value:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(74, 226, 138, 0.3);
}

.user-first-value {
    border-color: rgba(255, 215, 0, 0.3);
}

.user-first-value:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.value-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.value-card .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: none;
}

.value-card .card-highlight {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(74, 144, 226, 0.1);
    color: #88ffff;
    border: 1px solid rgba(74, 144, 226, 0.4);
}

.intelligence-value .card-highlight {
    background: rgba(138, 74, 226, 0.2);
    color: #ff88ff;
    border: 1px solid rgba(138, 74, 226, 0.4);
}

.trust-value .card-highlight {
    background: rgba(74, 226, 138, 0.2);
    color: #88ff88;
    border: 1px solid rgba(74, 226, 138, 0.4);
}

.user-first-value .card-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffdd88;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.value-card .card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cccccc;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Gold Rush Context Subtitle */
.gold-rush-context {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffdd88;
    margin: 1rem 0 2rem 0;
    text-align: center;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 221, 136, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(5px);
}

/* Center-align section titles in Slide 4 */
.user-value h3,
.uniqueness h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--accent-blue);
}

.comparison-table th {
    background: rgba(74, 144, 226, 0.15);
    color: #ffffff;
    font-weight: bold;
    text-shadow: none;
}

.comparison-table td {
    font-size: 1.1rem;
}

/* Chart Container */
.chart-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15);
}

/* Timeline Description */
.timeline-description {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
}

.timeline-description p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Thank You Slide */
.thank-you-section {
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-details {
    margin: 2rem 0;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.cta-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
}

.cta-text {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    text-shadow: none;
}

.cta-subtext {
    font-size: 1.3rem;
    color: var(--accent-purple);
    text-shadow: 0 0 10px var(--accent-purple);
}

/* Glow Effects */
.glow-element {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px currentColor);
    }
    to {
        filter: drop-shadow(0 0 20px currentColor);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        padding: 0 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-pair {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .pair-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .pair-arrow svg {
        width: 60px;
        height: 30px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .title-main {
        font-size: 3.2rem;
    }
    
    .title-tagline {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 40px 20px;
    }
    
    .problem-card, .solution-card {
        min-height: 180px;
        padding: 1.5rem;
    }
    
    .problem-card .card-icon, .solution-card .card-icon {
        font-size: 2rem;
    }
    
    .problem-card .card-title, .solution-card .card-title {
        font-size: 1.1rem;
    }
    
    .pair-arrow {
        margin: 0.3rem 0;
    }
    
    .value-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .value-card {
        min-height: 170px;
        padding: 1.6rem;
    }
    
    .solution-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        border-radius: 10px;
        top: -6px;
        right: -6px;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        min-height: 160px;
        padding: 1.5rem;
    }
    
    .value-card .card-icon {
        font-size: 2rem;
    }
    
    .value-card .card-title {
        font-size: 1.1rem;
    }
    
    .gold-rush-context {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        margin: 0.8rem 0 1.5rem 0;
    }
    
    .slide-content.scrollable {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .navigation-container {
        top: 20px;
        right: 20px;
        gap: 20px;
        max-width: 95vw;
    }
    
    .nav-controls {
        padding: 8px 15px;
        gap: 8px;
    }
    
    .language-toggle-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
        min-width: 32px;
        font-weight: bold;
    }
    
    .nav-btn {
        padding: 6px 10px;
        font-size: 14px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .slide-indicators {
        bottom: 15px;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .slide-dot {
        width: 6px;
        height: 6px;
    }
    
    .sidebar-toggle {
        top: 20px;
        left: 20px;
        padding: 10px 12px;
        font-size: 16px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .sidebar {
        width: 300px;
        left: -300px;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .sidebar-header h3 {
        font-size: 1.1rem;
    }
    
    .index-item {
        padding: 12px 15px;
    }
    
    .slide-title {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .title-main {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .title-tagline {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    li {
        font-size: 1.1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .timeline-description p {
        font-size: 1rem;
    }
    
    .contact-details {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
    
    .cta-subtext {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 30px 15px;
    }
    
    .slide-content.scrollable {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .navigation-container {
        top: 15px;
        right: 15px;
        gap: 15px;
        max-width: 98vw;
    }
    
    .nav-controls {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .language-toggle-btn {
        font-size: 0.65rem;
        padding: 4px 8px;
        min-width: 28px;
        font-weight: bold;
    }
    
    .nav-btn {
        padding: 4px 8px;
        font-size: 12px;
        min-width: 32px;
        min-height: 32px;
    }
    
    .slide-indicators {
        bottom: 10px;
        padding: 6px 10px;
        gap: 4px;
    }
    
    .slide-dot {
        width: 5px;
        height: 5px;
    }
    
    .sidebar-toggle {
        top: 15px;
        left: 15px;
        padding: 8px 10px;
        font-size: 14px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .sidebar {
        width: 280px;
        left: -280px;
    }
    
    .sidebar-header {
        padding: 12px;
    }
    
    .sidebar-header h3 {
        font-size: 1rem;
    }
    
    .index-item {
        padding: 10px 12px;
    }
    
    .slide-number {
        font-size: 0.8rem;
        min-width: 25px;
        margin-right: 10px;
    }
    
    .slide-title {
        font-size: 0.85rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .title-main {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .title-tagline {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    li {
        font-size: 1rem;
    }
    
    .fusion-svg svg {
        width: 80px;
        height: 80px;
    }
}

/* Additional Slide-Specific Styles */
.strategy-content,
.business-model,
.tech-content,
.team-content,
.roadmap-content,
.validation-content,
.projections-content,
.funding-content,
.next-steps-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-content ul,
.business-model ul,
.tech-content ul,
.team-content ul,
.roadmap-content ul,
.validation-content ul,
.projections-content ul,
.funding-content ul,
.next-steps-content ul {
    margin-top: 1.5rem;
}

/* Icon styling */
.fas, .fab {
    margin-right: 10px;
    color: var(--accent-blue);
    text-shadow: none;
}

/* New v2.0 Elements */

/* Glow Button */
.glow-button {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    border: 2px solid var(--accent-gold);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, var(--accent-gold), #f1c40f);
    border-color: #f1c40f;
    color: #ffffff;
}

/* SWOT Table */
.swot-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.swot-table th {
    background: rgba(74, 144, 226, 0.15);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    border: 1px solid var(--accent-blue);
}

.swot-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--accent-blue);
    font-size: 0.9rem;
    line-height: 1.4;
}

.swot-table:hover {
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

/* Bio Cards */
.bio-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-card {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    border: 1px solid var(--accent-blue);
    max-width: 300px;
    margin: 0 1rem;
}

.bio-card h3 {
    color: var(--accent-blue);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.bio-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.bio-card svg {
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Pyramid Container */
.pyramid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.pyramid-container svg {
    filter: drop-shadow(0 0 15px var(--accent-blue));
}

.pyramid-container text {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Additional Content Containers */
.swot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.exit-content,
.bio-section,
.swot-container {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.exit-content ul {
    margin-top: 1.5rem;
}

/* Comprehensive Team & Funding Layout */
.team-comprehensive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.team-overview {
    text-align: center;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    border: 1px solid var(--accent-blue);
}

.team-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-blue);
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

.team-bios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bio-card-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    transition: all 0.3s ease;
}

.bio-card-compact:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.bio-card-compact svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px currentColor);
}

.bio-info h4 {
    color: var(--accent-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    text-shadow: none;
}

.bio-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.funding-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.funding-details {
    padding: 1.5rem;
    background: rgba(138, 74, 226, 0.1);
    border-radius: 12px;
    border: 1px solid var(--accent-purple);
}

.funding-details h3 {
    color: var(--accent-purple);
    text-shadow: 0 0 10px var(--accent-purple);
    margin-bottom: 1rem;
}

.funding-details ul {
    margin: 0;
}

.funding-details li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.chart-container-compact {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.1);
}

/* Enhanced Team & Funding Section */
.funding-section-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.funding-header {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
}

.funding-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.funding-allocation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.funding-breakdown-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.allocation-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.allocation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.development-allocation {
    border-color: rgba(74, 144, 226, 0.2);
}

.marketing-allocation {
    border-color: rgba(138, 74, 226, 0.5);
}

.operations-allocation {
    border-color: rgba(255, 165, 0, 0.5);
}

.reserve-allocation {
    border-color: rgba(74, 226, 138, 0.5);
}

.allocation-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.allocation-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.allocation-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.allocation-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.allocation-details li {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    padding-left: 0;
    text-align: center;
}

.allocation-details li::before {
    display: none;
}

.funding-chart-section {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-header-compact {
    text-align: center;
    margin-bottom: 1rem;
}

.chart-header-compact h4 {
    color: #ffd700;
    margin-bottom: 0.3rem;
}

.chart-header-compact p {
    color: #cccccc;
    font-size: 0.8rem;
    margin: 0;
}

.chart-container-enhanced {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
}

.funding-milestones {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.milestone-target {
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 8px;
    padding: 0.6rem;
    text-align: center;
}

.milestone-label {
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: bold;
}

.milestone-value {
    color: #ffffff;
    font-size: 0.85rem;
}

.funding-strategy-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.strategy-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(74, 226, 138, 0.2);
}

.strategy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.strategy-content h5 {
    color: var(--accent-green);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.strategy-content p {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

/* Enhanced Funding Responsive Design */
@media (max-width: 768px) {
    .funding-allocation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .funding-breakdown-cards {
        grid-template-columns: 1fr;
    }
    
    .funding-strategy-summary {
        grid-template-columns: 1fr;
    }
    
    .strategy-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Slide 11: Market Validation Framework */
.validation-framework {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.validation-header {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.validation-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Precedent Validation Section */
.precedent-validation-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.precedent-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.precedent-header h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.precedent-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.precedent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.precedent-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.precedent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.tao-benchmark {
    border-color: rgba(255, 69, 0, 0.5);
}

.chainlink-validation {
    border-color: rgba(50, 205, 50, 0.5);
}

.tradingview-comp {
    border-color: rgba(0, 191, 255, 0.5);
}

.coinbase-validation {
    border-color: rgba(255, 20, 147, 0.5);
}

.precedent-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.precedent-card h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.precedent-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.precedent-details {
    text-align: left;
}

.precedent-metric, .precedent-context {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.precedent-metric {
    color: #ffffff;
}

.precedent-context {
    color: var(--accent-green);
    border: 1px solid rgba(74, 226, 138, 0.3);
}

/* Demand Validation Section */
.demand-validation-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.demand-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demand-header h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.demand-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.demand-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.demand-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.demand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.demand-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demand-card h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.demand-metrics {
    text-align: center;
}

.demand-stat {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-blue);
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.2);
}

.stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 0.3rem;
    text-align: center;
}

.demand-context {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: left;
}

/* Timing Validation Section */
.timing-validation-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(138, 74, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.timing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timing-header h4 {
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.timing-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.timing-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.timing-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 74, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(138, 74, 226, 0.3);
}

.timing-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.timing-content h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.timing-validation, .timing-advantage {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.timing-validation {
    color: #ffffff;
}

.timing-advantage {
    color: var(--accent-purple);
    border: 1px solid rgba(138, 74, 226, 0.3);
}

/* Risk Assessment Section */
.risk-assessment-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.risk-assessment-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.risk-assessment-header h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.risk-summary-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 226, 138, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.validation-icon {
    font-size: 3rem;
    flex-shrink: 0;
    color: var(--accent-green);
}

.validation-content h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.validation-rating {
    background: rgba(74, 226, 138, 0.2);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(74, 226, 138, 0.4);
}

.high-confidence {
    text-shadow: none;
}

.validation-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.validation-strength, .validation-demand, .validation-timing, .validation-conclusion {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.validation-conclusion {
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    color: var(--accent-green);
}

/* Market Validation Responsive Design */
@media (max-width: 768px) {
    .precedent-grid, .demand-signals-grid, .timing-factors-grid {
        grid-template-columns: 1fr;
    }
    
    .timing-card {
        flex-direction: column;
        text-align: center;
    }
    
    .risk-summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .validation-breakdown {
        gap: 0.6rem;
    }
}

/* Slide 12: Exit Strategy Framework */
.exit-strategy-framework {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exit-header {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.exit-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Strategic Acquisition Targets Section */
.acquisition-targets-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.acquisition-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.acquisition-header h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.acquisition-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.acquisition-targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.target-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.target-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.crypto-exchanges {
    border-color: rgba(74, 144, 226, 0.2);
}

.big-tech {
    border-color: rgba(138, 74, 226, 0.5);
}

.fintech-leaders {
    border-color: rgba(255, 165, 0, 0.5);
}

.web3-natives {
    border-color: rgba(74, 226, 138, 0.5);
}

.target-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.target-card h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.target-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.target-details {
    text-align: left;
}

.target-examples, .target-rationale, .target-value {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.target-examples {
    color: #ffffff;
}

.target-rationale {
    color: var(--accent-blue);
    border: 1px solid rgba(74, 144, 226, 0.15);
}

.target-value {
    color: var(--accent-green);
    border: 1px solid rgba(74, 226, 138, 0.3);
}

/* Value Creation Timeline Section */
.value-timeline-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline-header h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.timeline-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.value-timeline-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.timeline-stage {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-stage:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.stage-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.stage-number {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stage-icon {
    font-size: 1.5rem;
}

.stage-content {
    text-align: center;
    width: 100%;
}

.stage-content h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stage-timeframe {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.stage-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.metric-label {
    color: #cccccc;
}

.metric-value {
    color: var(--accent-blue);
    font-weight: bold;
}

.stage-rationale {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: left;
}

/* Investor Returns Section */
.investor-returns-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(138, 74, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.returns-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.returns-header h4 {
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.returns-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.returns-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.scenario-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 74, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(138, 74, 226, 0.3);
}

.scenario-header {
    margin-bottom: 1rem;
}

.scenario-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.scenario-card h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.scenario-probability {
    background: rgba(138, 74, 226, 0.2);
    color: var(--accent-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.return-multiple {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.scenario-assumptions {
    text-align: left;
}

.assumption-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #ffffff;
}

/* Strategic Positioning Summary Section */
.positioning-summary-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.positioning-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.positioning-header h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.positioning-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 226, 138, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.strategy-icon {
    font-size: 3rem;
    flex-shrink: 0;
    color: var(--accent-green);
}

.strategy-content h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.strategy-rating {
    background: rgba(74, 226, 138, 0.2);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(74, 226, 138, 0.4);
}

.high-value {
    text-shadow: none;
}

.strategy-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.strategy-strength, .strategy-timing, .strategy-positioning, .strategy-conclusion {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.strategy-conclusion {
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    color: var(--accent-green);
}

/* Exit Strategy Responsive Design */
@media (max-width: 768px) {
    .acquisition-targets-grid, .returns-scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .value-timeline-stages {
        grid-template-columns: 1fr;
    }
    
    .positioning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-breakdown {
        gap: 0.6rem;
    }
}

/* Slide 13: Next Steps Framework */
.next-steps-framework {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-header {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
}

.next-steps-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Investment & Partnership Opportunities Section */
.investment-opportunities-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.opportunities-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.opportunities-header h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.opportunities-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.opportunity-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.opportunity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.seed-investment {
    border-color: rgba(74, 226, 138, 0.5);
}

.strategic-partnership {
    border-color: rgba(74, 144, 226, 0.2);
}

.advisory-board {
    border-color: rgba(138, 74, 226, 0.5);
}

.early-access {
    border-color: rgba(255, 165, 0, 0.5);
}

.opportunity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.opportunity-card h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.opportunity-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.opportunity-details {
    text-align: left;
}

.opportunity-terms, .opportunity-timeline, .opportunity-returns, .opportunity-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
}

.opportunity-returns {
    color: var(--accent-green);
    border: 1px solid rgba(74, 226, 138, 0.3);
}

/* Execution Timeline Section */
.execution-timeline-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.execution-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.execution-header h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.execution-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.execution-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.execution-stage {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.execution-stage:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.stage-marker-execution {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.stage-number-execution {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stage-icon-execution {
    font-size: 1.5rem;
}

.stage-content-execution {
    text-align: center;
    width: 100%;
}

.stage-content-execution h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stage-timeframe-execution {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.stage-deliverables-execution {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.deliverable-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
}

/* Action Items Section */
.action-items-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(138, 74, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.action-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.action-header h4 {
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.action-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.action-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 74, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(138, 74, 226, 0.3);
}

.action-header-card {
    text-align: center;
    margin-bottom: 1rem;
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.action-card h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.action-priority {
    background: rgba(138, 74, 226, 0.2);
    color: var(--accent-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.action-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.action-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
    text-align: left;
}

/* Contact & Engagement Section */
.contact-engagement-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-header h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 226, 138, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cta-icon {
    font-size: 3rem;
    flex-shrink: 0;
    color: var(--accent-green);
}

.cta-content h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cta-rating {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(255, 69, 0, 0.4);
}

.immediate-action {
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
    animation: pulse 2s infinite;
}

.cta-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cta-urgency, .cta-value, .cta-differentiation, .cta-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.cta-contact {
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    color: var(--accent-green);
}

/* Next Steps Responsive Design */
@media (max-width: 768px) {
    .opportunities-grid, .action-items-grid {
        grid-template-columns: 1fr;
    }
    
    .execution-stages {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-breakdown {
        gap: 0.6rem;
    }
}

/* Slide 14: Your Invitation to Generational Wealth */
.invitation-framework {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.invitation-header {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.invitation-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Invitation Summary Section */
.invitation-summary-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.summary-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.summary-header h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.summary-header p {
    color: #cccccc;
    font-size: 0.9rem;
}

.invitation-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-proposition-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.value-proposition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.market-opportunity {
    border-color: rgba(74, 144, 226, 0.2);
}

.wealth-creation {
    border-color: rgba(255, 215, 0, 0.5);
}

.competitive-advantage {
    border-color: rgba(74, 226, 138, 0.5);
}

.execution-advantage {
    border-color: rgba(138, 74, 226, 0.5);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-proposition-card h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.value-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.value-details {
    text-align: left;
}

.value-point {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
}

/* Contact & Engagement Final Section */
.contact-engagement-final {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.contact-header-final {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-header-final h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.contact-header-final p {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h5 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-detail {
    background: rgba(74, 144, 226, 0.1);
    color: var(--accent-blue);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: monospace;
}

.contact-action {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
}

/* Final Call to Action Section */
.final-cta-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.final-cta-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 69, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cta-urgency-icon {
    font-size: 3rem;
    flex-shrink: 0;
    color: #ff4500;
}

.cta-final-content h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.urgency-rating {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(255, 69, 0, 0.4);
}

.act-now {
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
    animation: pulse 2s infinite;
}

.cta-final-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cta-timeline, .cta-exclusivity, .cta-wealth-message, .cta-final-action {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.cta-final-action {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #ff4500;
    font-weight: bold;
}

/* Invitation Responsive Design */
@media (max-width: 768px) {
    .invitation-value-grid, .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-final-breakdown {
        gap: 0.6rem;
    }
}

/* Radial Opportunity Layout */
.opportunity-layout-radial {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    align-items: center;
    justify-items: center;
}

/* Quadrant Positioning */
.quadrant-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: end;
}

.quadrant-top-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: end;
}

.quadrant-bottom-left {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    align-self: start;
}

.quadrant-bottom-right {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
    align-self: start;
}

.opportunity-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 15px;
    padding: 1.5rem 1.8rem 2rem 1.8rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
    width: 300px;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-green));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.opportunity-card:hover::before {
    opacity: 1;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 20px currentColor;
    text-align: center;
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: none;
    text-align: center;
}

.card-highlight {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    text-shadow: 0 0 15px currentColor;
}

.card-details {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    flex-grow: 0;
}

.card-details li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
}

.card-details li:before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-blue);
    font-size: 0.8rem;
    text-shadow: none;
}

.card-details li:last-child {
    margin-bottom: 0;
}

/* Individual Card Themes */
.market-card .card-icon {
    color: var(--accent-blue);
}

.market-card .card-highlight {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.1));
    color: var(--accent-blue);
    border: 1px solid rgba(74, 144, 226, 0.15);
}

.trends-card .card-icon {
    color: var(--accent-purple);
}

.trends-card .card-highlight {
    background: linear-gradient(135deg, rgba(138, 74, 226, 0.2), rgba(138, 74, 226, 0.1));
    color: var(--accent-purple);
    border: 1px solid rgba(138, 74, 226, 0.3);
}

.pain-card .card-icon {
    color: #ffaa00;
}

.pain-card .card-highlight {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.2), rgba(255, 170, 0, 0.1));
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.timing-card .card-icon {
    color: var(--accent-green);
}

.timing-card .card-highlight {
    background: linear-gradient(135deg, rgba(74, 226, 138, 0.2), rgba(74, 226, 138, 0.1));
    color: var(--accent-green);
    border: 1px solid rgba(74, 226, 138, 0.3);
}

/* Central Chart Section */
.chart-section-center {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.chart-container-radial {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid var(--accent-blue);
    box-shadow: 
        0 0 30px rgba(74, 144, 226, 0.4),
        inset 0 0 20px rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    width: 380px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-title {
    color: var(--accent-blue);
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: none;
    margin-bottom: 1.2rem;
    text-align: center;
}

.chart-subtitle {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 1.2rem;
    text-align: center;
    opacity: 0.8;
}

.chart-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Responsive Design for New Elements */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-card {
        margin: 1rem 0;
        max-width: 400px;
    }
    
    .pyramid-container svg {
        width: 250px;
        height: 150px;
    }
    
    .sidebar {
        width: 320px;
        left: -320px;
    }
}

@media (max-width: 768px) {
    .bio-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .bio-card h3 {
        font-size: 1.3rem;
    }
    
    .bio-card p {
        font-size: 0.9rem;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .team-bios {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bio-card-compact {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .bio-card-compact svg {
        width: 50px;
        height: 50px;
    }
    
    .bio-info h4 {
        font-size: 1.1rem;
    }
    
    .bio-info p {
        font-size: 0.85rem;
    }
    
    .funding-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .funding-details {
        padding: 1.2rem;
    }
    
    .opportunity-layout-radial {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        min-height: auto;
    }
    
    .quadrant-top-left,
    .quadrant-top-right,
    .quadrant-bottom-left,
    .quadrant-bottom-right {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        align-self: auto;
    }
    
    .chart-section-center {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }
    
    .quadrant-top-left { order: 2; }
    .quadrant-top-right { order: 3; }
    .quadrant-bottom-left { order: 4; }
    .quadrant-bottom-right { order: 5; }
    
    .opportunity-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 1.4rem 1.6rem 2rem 1.6rem;
    }
    
    .chart-container-radial {
        width: 320px;
        height: 280px;
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-highlight {
        font-size: 1.4rem;
        padding: 0.4rem 0.8rem;
    }
    
    .card-details li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .swot-table th,
    .swot-table td {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .glow-button {
        font-size: 1rem;
        padding: 10px 20px;
        border-radius: 25px;
    }
    
    .pyramid-container svg {
        width: 200px;
        height: 120px;
    }
    
    .pyramid-container text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    /* Orbital Ecosystem Mobile Styles - Apply to all mobile/tablet devices */
    .orbital-ecosystem {
        height: auto;
        flex-direction: column;
        padding: 20px;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .central-core {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 30px;
        min-width: auto;
        max-width: 320px;
        width: 100%;
        height: auto;
        border-radius: 20px;
        padding: 25px;
    }
    
    .central-core h2 {
        font-size: 1.5rem;
    }
    
    .orbital-component {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-bottom: 25px;
        max-width: 100%;
        width: 100%;
    }
    
    /* Override specific orbital positioning classes */
    .knowledge-orbital,
    .trading-orbital,
    .community-orbital {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .component-card {
        height: auto;
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .component-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .component-icon {
        font-size: 2.2rem;
    }
    
    .task-examples-mini {
        margin-top: 15px;
        gap: 8px;
        flex-direction: column;
    }
    
    .task-mini {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .aic-flow-lines {
        display: none;
    }
    
    .ownership-banner {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 25px;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bio-card {
        padding: 1rem;
    }
    
    .bio-card svg {
        width: 60px;
        height: 60px;
    }
    
    .team-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .bio-card-compact {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .bio-card-compact svg {
        width: 40px;
        height: 40px;
    }
    
    .bio-info h4 {
        font-size: 1rem;
    }
    
    .bio-info p {
        font-size: 0.8rem;
    }
    
    .funding-details {
        padding: 1rem;
    }
    
    .funding-details li {
        font-size: 1rem;
    }
    
    .opportunity-layout-radial {
        gap: 1rem;
    }
    
    .opportunity-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 1.2rem 1.3rem 1.8rem 1.3rem;
    }
    
    .chart-container-radial {
        width: 260px;
        height: 240px;
        padding: 1.2rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .card-highlight {
        font-size: 1.2rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .card-details li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .chart-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .chart-subtitle {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .swot-table th,
    .swot-table td {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .pyramid-container svg {
        width: 150px;
        height: 100px;
    }
    
    .pyramid-container text {
        font-size: 8px;
    }
    
    /* Orbital Ecosystem - Small Mobile Refinements */
    .central-core {
        max-width: 280px;
        padding: 20px;
    }
    
    .central-core h2 {
        font-size: 1.3rem;
    }
    
    .component-card {
        padding: 16px;
    }
    
    .component-icon {
        font-size: 2rem;
    }
    
    .task-mini {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
}



/* Orbital Ecosystem Styles */
.orbital-ecosystem {
    position: relative;
    width: 100%;
    height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Core - Dead Center */
.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 4px solid var(--accent-blue);
    border-radius: 50%;
    padding: 30px;
    text-align: center;
    width: 280px;
    height: 280px;
    box-shadow: 0 0 50px rgba(74, 144, 226, 0.2), inset 0 0 30px rgba(74, 144, 226, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
}

.hub-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.central-core h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--accent-blue);
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.25);
    line-height: 1.2;
}

.hub-tagline {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.3;
}

.aic-core-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(74, 144, 226, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    border: 1px solid var(--accent-blue);
}

.token-symbol {
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.flow-text {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Orbital Components Positioning */
.orbital-component {
    position: absolute;
    z-index: 5;
    width: 280px;
}

.knowledge-orbital {
    top: 5%;
    left: 5%;
}

.trading-orbital {
    top: 5%;
    right: 5%;
}

.community-orbital {
    bottom: -45%;
    left: 50%;
    transform: translateX(-50%);
}

.component-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 2px solid;
    border-radius: 15px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    height: 320px;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.knowledge-component {
    border-color: var(--accent-blue);
}

.knowledge-component:hover {
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.trading-component {
    border-color: var(--accent-purple);
}

.trading-component:hover {
    box-shadow: 0 10px 30px rgba(138, 74, 226, 0.3);
}

.community-component {
    border-color: var(--accent-green);
}

.community-component:hover {
    box-shadow: 0 10px 30px rgba(74, 226, 138, 0.3);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.component-icon {
    font-size: 2rem;
}

.component-header h3 {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
}

.component-features ul {
    list-style: none;
    padding: 0;
}

.component-features li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.2;
}

.component-features li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: inherit;
}

.knowledge-component .component-features li::before {
    color: var(--accent-blue);
}

.trading-component .component-features li::before {
    color: var(--accent-purple);
}

.community-component .component-features li::before {
    color: var(--accent-green);
}

/* Mini Task Examples */
.task-examples-mini {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.task-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1.1;
}

.task-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.15);
}

.task-mini span {
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 0.7rem;
}

/* Task Rewards Section */
.task-rewards-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.task-rewards-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-blue);
    font-size: 1.4rem;
}

.task-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.task-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

.task-desc {
    flex: 1;
    color: #cccccc;
    font-size: 0.9rem;
}

.task-reward {
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.ownership-message {
    text-align: center;
    padding: 15px;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), rgba(138, 74, 226, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.15);
}

.ownership-message p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* $AIC Flow Lines */
.aic-flow-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orbital-svg {
    width: 100%;
    height: 100%;
}

/* Ownership Banner */
.ownership-banner {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), rgba(138, 74, 226, 0.1));
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    max-width: 450px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.ownership-banner p {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
} 

/* ============================================
   SLIDE 6: DEVELOPMENT PLAN TIMELINE STYLES
   ============================================ */

/* Horizontal Timeline Layout Container */
.timeline-layout-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Compact Timeline Header */
.timeline-header-compact {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline-header-compact h3 {
    font-size: 1.7rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.timeline-subtitle-compact {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

/* Horizontal Development Timeline */
.development-timeline-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

/* Horizontal Timeline Phase */
.timeline-phase-horizontal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 280px;
    position: relative;
}

.timeline-phase-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.timeline-phase-horizontal[data-phase="1"] {
    border: 2px solid rgba(74, 144, 226, 0.4);
}

.timeline-phase-horizontal[data-phase="2"] {
    border: 2px solid rgba(138, 74, 226, 0.4);
}

.timeline-phase-horizontal[data-phase="3"] {
    border: 2px solid rgba(74, 226, 138, 0.4);
}

/* Horizontal Phase Marker */
.phase-marker-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phase-number-horizontal {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-blue), #0080ff);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.timeline-phase-horizontal[data-phase="2"] .phase-number-horizontal {
    background: linear-gradient(45deg, var(--accent-purple), #ff8000);
    box-shadow: 0 2px 8px rgba(138, 74, 226, 0.5);
}

.timeline-phase-horizontal[data-phase="3"] .phase-number-horizontal {
    background: linear-gradient(45deg, var(--accent-green), #80ff00);
    box-shadow: 0 2px 8px rgba(74, 226, 138, 0.5);
}

.phase-icon-horizontal {
    font-size: 1.2rem;
}

/* Horizontal Phase Content */
.phase-content-horizontal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
}

.phase-header-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.phase-title-horizontal {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.phase-timeline-horizontal {
    background: rgba(74, 144, 226, 0.1);
    color: var(--accent-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(74, 144, 226, 0.4);
}

.timeline-phase-horizontal[data-phase="2"] .phase-timeline-horizontal {
    background: rgba(138, 74, 226, 0.2);
    color: var(--accent-purple);
    border-color: rgba(138, 74, 226, 0.4);
}

.timeline-phase-horizontal[data-phase="3"] .phase-timeline-horizontal {
    background: rgba(74, 226, 138, 0.2);
    color: var(--accent-green);
    border-color: rgba(74, 226, 138, 0.4);
}

/* Horizontal Phase Deliverables */
.phase-deliverables-horizontal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.phase-deliverables-horizontal li {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.3;
    padding-left: 0;
}

.phase-deliverables-horizontal li::before {
    display: none;
}

.phase-deliverables-horizontal li strong {
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Horizontal Phase Milestone */
.phase-milestone-horizontal {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem;
    margin-top: auto;
}

.milestone-value-horizontal {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

/* Timeline Arrows */
.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    flex-shrink: 0;
}

.timeline-arrow svg {
    filter: drop-shadow(0 0 5px currentColor);
}

/* Integrated Strategic Benefits */
.strategy-benefits-integrated {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.benefits-header {
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-header h4 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.2);
}

.benefits-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.benefit-card-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 10px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.benefit-card-compact:hover {
    border-color: rgba(74, 144, 226, 0.25);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.benefit-card-compact.tokenomics-benefit {
    border-color: rgba(74, 144, 226, 0.4);
}

.benefit-card-compact.flywheel-benefit {
    border-color: rgba(138, 74, 226, 0.4);
}

.benefit-card-compact.advantage-benefit {
    border-color: rgba(74, 226, 138, 0.4);
}

.benefit-icon-compact {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.benefit-text-compact {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.benefit-text-compact strong {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Mobile Responsive Design for Horizontal Timeline */
@media (max-width: 768px) {
    .timeline-layout-horizontal {
        padding: 0.5rem;
    }
    
    .timeline-header-compact h3 {
        font-size: 1.4rem;
    }
    
    .timeline-subtitle-compact {
        font-size: 0.9rem;
    }
    
    .development-timeline-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .timeline-phase-horizontal {
        min-height: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .phase-title-horizontal {
        font-size: 1rem;
    }
    
    .benefits-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .benefit-card-compact {
        padding: 0.8rem;
    }
} 

/* ============================================
   SLIDE 7: GROWTH & EARNING POTENTIAL STYLES
   ============================================ */

/* Revenue Progression Layout Container */
.revenue-progression-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Revenue Header */
.revenue-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.revenue-header h3 {
    font-size: 1.7rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.revenue-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

/* Revenue Stages Horizontal Layout */
.revenue-stages-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

/* Revenue Stage Cards */
.revenue-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 350px;
    position: relative;
}

.revenue-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.15);
}

.revenue-stage[data-stage="traffic"] {
    border: 2px solid rgba(255, 165, 0, 0.4); /* Orange for traffic */
}

.revenue-stage[data-stage="utility"] {
    border: 2px solid rgba(74, 144, 226, 0.4); /* Cyan for utility */
}

.revenue-stage[data-stage="tokenomics"] {
    border: 2px solid rgba(255, 215, 0, 0.4); /* Gold for tokenomics */
}

/* Revenue Stage Markers */
.stage-marker-revenue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stage-number-revenue {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.5);
}

.revenue-stage[data-stage="traffic"] .stage-number-revenue {
    background: linear-gradient(45deg, #ff8c00, #ffa500); /* Orange gradient */
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.5);
}

.revenue-stage[data-stage="utility"] .stage-number-revenue {
    background: linear-gradient(45deg, var(--accent-blue), #00bfff); /* Cyan gradient */
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.revenue-stage[data-stage="tokenomics"] .stage-number-revenue {
    background: linear-gradient(45deg, #ffd700, #ffed4e); /* Gold gradient */
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.stage-icon-revenue {
    font-size: 1.2rem;
}

/* Revenue Stage Content */
.stage-content-revenue {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
}

.stage-header-revenue {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.stage-title-revenue {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.stage-timeline-revenue {
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid;
}

.revenue-stage[data-stage="traffic"] .stage-timeline-revenue {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.4);
}

.revenue-stage[data-stage="utility"] .stage-timeline-revenue {
    background: rgba(74, 144, 226, 0.1);
    color: var(--accent-blue);
    border-color: rgba(74, 144, 226, 0.4);
}

.revenue-stage[data-stage="tokenomics"] .stage-timeline-revenue {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.4);
}

/* Revenue Sources List */
.stage-sources-revenue {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.stage-sources-revenue li {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.3;
    padding-left: 0;
}

.stage-sources-revenue li::before {
    display: none;
}

.stage-sources-revenue li strong {
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Revenue Projections */
.stage-projection-revenue {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.projection-value {
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 0 10px currentColor;
}

.revenue-stage[data-stage="traffic"] .projection-value {
    color: #ffa500;
}

.revenue-stage[data-stage="utility"] .projection-value {
    color: var(--accent-blue);
}

.revenue-stage[data-stage="tokenomics"] .projection-value {
    color: #ffd700;
}

.projection-label {
    color: #cccccc;
    font-size: 0.8rem;
    font-style: italic;
}

/* Additional Revenue Streams Section */
.additional-revenue-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(138, 74, 226, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.additional-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.additional-header h4 {
    color: var(--accent-purple);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px rgba(138, 74, 226, 0.5);
}

.additional-header p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.additional-revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.additional-revenue-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 74, 226, 0.3);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.additional-revenue-card:hover {
    border-color: rgba(138, 74, 226, 0.6);
    box-shadow: 0 2px 8px rgba(138, 74, 226, 0.2);
    transform: translateY(-2px);
}

.additional-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.additional-content h5 {
    color: var(--accent-purple);
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    text-shadow: 0 0 10px rgba(138, 74, 226, 0.5);
}

.additional-content p {
    color: #e0e0e0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

/* Growth Chart Section */
.growth-chart-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.chart-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart-header h4 {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    text-shadow: none;
}

.chart-header p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.chart-container-revenue {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.growth-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.target-milestone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
}

.target-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: bold;
}

.target-value {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: none;
}

/* Mobile Responsive Design for Revenue Layout */
@media (max-width: 768px) {
    .revenue-progression-layout {
        padding: 0.5rem;
    }
    
    .revenue-header h3 {
        font-size: 1.4rem;
    }
    
    .revenue-subtitle {
        font-size: 0.9rem;
    }
    
    .revenue-stages-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .revenue-stage {
        min-height: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .stage-title-revenue {
        font-size: 1rem;
    }
    
    .additional-revenue-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .additional-revenue-card {
        padding: 0.8rem;
    }
    
    .growth-targets {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* ============================================
   SLIDE 8: $AIC TOKENOMICS TO THE MOON STYLES
   ============================================ */

/* Tokenomics Layout Container */
.tokenomics-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tokenomics Header */
.tokenomics-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tokenomics-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.tokenomics-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

/* Core Tokenomics Mechanics Section */
.tokenomics-mechanics-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.mechanics-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mechanics-header h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.mechanics-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.mechanic-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mechanic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.burn-mechanic {
    border: 2px solid rgba(255, 69, 0, 0.4);
}

.burn-mechanic:hover {
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

.utility-mechanic {
    border: 2px solid rgba(74, 144, 226, 0.4);
}

.utility-mechanic:hover {
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.15);
}

.growth-mechanic {
    border: 2px solid rgba(74, 226, 138, 0.4);
}

.growth-mechanic:hover {
    box-shadow: 0 0 30px rgba(74, 226, 138, 0.3);
}

.wealth-mechanic {
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.mechanic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mechanic-card h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.mechanic-highlight {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.burn-mechanic .mechanic-highlight {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    border: 1px solid rgba(255, 69, 0, 0.4);
}

.utility-mechanic .mechanic-highlight {
    background: rgba(74, 144, 226, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(74, 144, 226, 0.4);
}

.growth-mechanic .mechanic-highlight {
    background: rgba(74, 226, 138, 0.2);
    color: var(--accent-green);
    border: 1px solid rgba(74, 226, 138, 0.4);
}

.wealth-mechanic .mechanic-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.mechanic-details {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.mechanic-details li {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
    padding-left: 0;
}

.mechanic-details li::before {
    display: none;
}

/* Value Comparison Section */
.value-comparison-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h4 {
    color: var(--accent-blue);
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.comparison-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.comparison-table-container {
    overflow-x: auto;
}

.tokenomics-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.tokenomics-comparison-table th {
    background: rgba(74, 144, 226, 0.1);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(74, 144, 226, 0.15);
    font-size: 0.95rem;
    font-weight: bold;
}

.aic-column {
    background: rgba(74, 226, 138, 0.1) !important;
    color: var(--accent-green) !important;
}

.others-column {
    background: rgba(255, 0, 0, 0.1) !important;
    color: #ff6666 !important;
}

.tokenomics-comparison-table td {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.tokenomics-comparison-table td:first-child {
    color: #ffffff;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
}

.aic-cell {
    color: var(--accent-green);
    text-align: center;
    background: rgba(74, 226, 138, 0.05);
}

.others-cell {
    color: #ff6666;
    text-align: center;
    background: rgba(255, 0, 0, 0.05);
}

/* Wealth Trajectory Section */
.wealth-trajectory-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(138, 74, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.trajectory-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trajectory-header h4 {
    color: var(--accent-purple);
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: none;
}

.trajectory-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.trajectory-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trajectory-chart-container {
    display: flex;
    justify-content: center;
}

.trajectory-milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.milestone-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.milestone-year {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.milestone-growth {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
}

.milestone-driver {
    color: #e0e0e0;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Investment Thesis Section */
.investment-thesis-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.thesis-header {
    text-align: center;
    margin-bottom: 2rem;
}

.thesis-header h4 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin: 0;
    text-shadow: none;
}

.thesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.thesis-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.thesis-point:hover {
    border-color: rgba(74, 226, 138, 0.6);
    box-shadow: 0 2px 8px rgba(74, 226, 138, 0.2);
    transform: translateY(-2px);
}

.thesis-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.thesis-content h5 {
    color: var(--accent-green);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    text-shadow: none;
}

.thesis-content p {
    color: #e0e0e0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsive Design for Tokenomics */
@media (max-width: 768px) {
    .tokenomics-layout {
        padding: 0.5rem;
        gap: 2rem;
    }
    
    .tokenomics-header h3 {
        font-size: 1.5rem;
    }
    
    .tokenomics-subtitle {
        font-size: 0.9rem;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mechanic-card {
        padding: 1.2rem;
    }
    
    .trajectory-content {
        flex-direction: column;
    }
    
    .trajectory-milestones {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .thesis-point {
        padding: 1.2rem;
    }
    
    .comparison-table-container {
        font-size: 0.8rem;
    }
}

/* ============================================
   SLIDE 9: COMPETITIVE CHALLENGES & RISKS STYLES
   ============================================ */

/* Risk Analysis Layout Container */
.risk-analysis-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Risk Header */
.risk-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.risk-header h3 {
    font-size: 1.7rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.risk-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

/* Competitive Landscape Section */
.competitive-landscape-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.landscape-header {
    text-align: center;
    margin-bottom: 2rem;
}

.landscape-header h4 {
    color: #ffa500;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.landscape-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.competitor-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 2px solid;
}

.competitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.3);
}

.fee-heavy-competitors {
    border-color: rgba(255, 69, 0, 0.5);
}

.big-tech-threat {
    border-color: rgba(255, 20, 147, 0.5);
}

.traditional-crypto {
    border-color: rgba(255, 215, 0, 0.5);
}

.web3-natives {
    border-color: rgba(50, 205, 50, 0.5);
}

.competitor-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.competitor-card h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.competitor-challenge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    border: 1px solid rgba(255, 69, 0, 0.4);
}

.competitor-details {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
}

.competitor-details li {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-align: center;
    padding-left: 0;
}

.competitor-details li::before {
    display: none;
}

.our-advantage {
    background: rgba(74, 226, 138, 0.1);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-green);
    text-align: left;
}

.our-advantage strong {
    color: var(--accent-green);
    text-shadow: none;
}

/* Risk Mitigation Section */
.risk-mitigation-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.mitigation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mitigation-header h4 {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.mitigation-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.risk-mitigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.risk-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.risk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.3);
}

.market-risk {
    border-color: rgba(255, 99, 71, 0.5);
}

.regulatory-risk {
    border-color: rgba(255, 215, 0, 0.5);
}

.talent-risk {
    border-color: rgba(0, 191, 255, 0.5);
}

.adoption-risk {
    border-color: rgba(50, 205, 50, 0.5);
}

.risk-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.risk-card h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.risk-level {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.risk-description {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.risk-description strong {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.mitigation-strategy {
    background: rgba(74, 226, 138, 0.05);
    border: 1px solid rgba(74, 226, 138, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
}

.mitigation-strategy strong {
    color: var(--accent-green);
    text-shadow: none;
    display: block;
    margin-bottom: 0.5rem;
}

.mitigation-strategy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mitigation-strategy li {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-align: center;
    padding-left: 0;
}

.mitigation-strategy li::before {
    display: none;
}

/* Strategic Advantages Section */
.strategic-advantages-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 226, 138, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.advantages-header {
    text-align: center;
    margin-bottom: 2rem;
}

.advantages-header h4 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-shadow: none;
}

.advantages-header p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 226, 138, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: rgba(74, 226, 138, 0.6);
    box-shadow: 0 2px 8px rgba(74, 226, 138, 0.2);
    transform: translateY(-2px);
}

.advantage-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.advantage-content h5 {
    color: var(--accent-green);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    text-shadow: none;
}

.advantage-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.competitive-context {
    font-size: 0.8rem;
    color: #ffa500;
    font-style: italic;
    background: rgba(255, 165, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

/* Market Position Section */
.market-position-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.position-header {
    text-align: center;
    margin-bottom: 2rem;
}

.position-header h4 {
    color: var(--accent-blue);
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.position-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.assessment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.assessment-content h5 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.risk-rating {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

.low-risk {
    background: rgba(74, 226, 138, 0.2);
    color: var(--accent-green);
    border: 2px solid rgba(74, 226, 138, 0.4);
    text-shadow: none;
}

.assessment-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.assessment-strength,
.assessment-opportunity,
.assessment-conclusion {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.assessment-strength {
    background: rgba(74, 226, 138, 0.05);
    border: 1px solid rgba(74, 226, 138, 0.3);
    color: #e0e0e0;
}

.assessment-strength strong {
    color: var(--accent-green);
    text-shadow: none;
}

.assessment-opportunity {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #e0e0e0;
}

.assessment-opportunity strong {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.assessment-conclusion {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.15);
    color: #e0e0e0;
}

.assessment-conclusion strong {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

/* Mobile Responsive Design for Risk Analysis */
@media (max-width: 768px) {
    .risk-analysis-layout {
        padding: 0.5rem;
        gap: 2rem;
    }
    
    .risk-header h3 {
        font-size: 1.4rem;
    }
    
    .risk-subtitle {
        font-size: 0.9rem;
    }
    
    .landscape-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .competitor-card {
        padding: 1.2rem;
    }
    
    .risk-mitigation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .risk-card {
        padding: 1.2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.2rem;
    }
    
    .assessment-details {
        gap: 0.8rem;
    }
}

.user-first-value:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.privacy-value {
    border-color: rgba(128, 0, 255, 0.3);
}

.privacy-value:hover {
    border-color: #8000ff;
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.3);
}

.value-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.user-first-value .card-highlight {
    background: rgba(255, 215, 0, 0.2);
    color: #ffdd88;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.privacy-value .card-highlight {
    background: rgba(128, 0, 255, 0.2);
    color: #cc88ff;
    border: 1px solid rgba(128, 0, 255, 0.4);
}

.value-card .card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cccccc;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}