/* Modern Presentation Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    overflow: hidden;
    height: 100vh;
}

.presentation {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 60px 60px 140px 60px; /* Added extra bottom padding for navigation */
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow-y: auto; /* Allow scrolling if content is too tall */
}

.slide.active {
    display: flex;
    opacity: 1;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

ul, ol {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

li {
    margin-bottom: 0.5rem;
}

/* Title Slide */
.title-decoration {
    margin-top: 3rem;
}

.tech-icon {
    font-size: 4rem;
    margin: 0 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Table of Contents */
.toc {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.toc li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.toc li:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.column h3 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Definition Box */
.definition-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.definition {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.definition-list {
    font-size: 1.3rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* Characteristics Grid */
.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.characteristic {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.characteristic h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #eee;
    background: white;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.comparison-table tr:hover td {
    background: #e3f2fd;
}

/* Agent Types */
.agent-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.agent-type {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.agent-type h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* AOP Definition */
.aop-definition {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
}

.aop-points {
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Architecture Diagram */
.architecture-diagram {
    margin: 2rem 0;
}

.environment-box {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed #8e44ad;
    text-align: center;
}

.agent-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem auto;
    max-width: 400px;
    border: 2px solid #3498db;
}

.agent-components {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.component {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Mental Models */
.mental-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.model {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.model h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.communication-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #667eea;
    text-align: left;
}

/* Principles */
.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #e74c3c;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.principle h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Evolution Chain */
.evolution-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.paradigm {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.paradigm:hover {
    transform: scale(1.05);
}

.paradigm.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

/* Architecture Comparison */
.architecture-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.arch-type {
    text-align: center;
}

.arch-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.node {
    background: #3498db;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    min-width: 100px;
}

.node.agent {
    background: #e74c3c;
}

.connector {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

.arch-properties {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.arch-properties span {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #555;
}

/* Flow Comparison */
.flow-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.flow-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.vs {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Communication Overview */
.comm-overview {
    text-align: center;
}

.comm-purposes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.purpose {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.purpose h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* MCP Info */
.mcp-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    text-align: left;
}

.mcp-description {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #9b59b6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mcp-features {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
}

/* MCP Architecture */
.mcp-architecture {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.mcp-component {
    background: #3498db;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mcp-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #667eea;
    font-weight: bold;
}

.mcp-arrow span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* A2A Info */
.a2a-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Patterns Grid */
.patterns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.pattern {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #f39c12;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pattern h3 {
    color: #f39c12;
    margin-bottom: 1rem;
}

/* Security Aspects */
.security-aspects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #e74c3c;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.security-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Frameworks */
.frameworks-intro {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #555;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.framework {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.framework:hover {
    transform: translateY(-5px);
}

.framework h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Framework Info */
.adk-info, .langchain-info, .langgraph-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    text-align: left;
}

.adk-overview, .langchain-overview, .langgraph-overview,
.adk-advantages, .langchain-advantages, .langgraph-advantages {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.adk-overview, .adk-advantages {
    border-left: 4px solid #2c3e50;
}

.langchain-overview, .langchain-advantages {
    border-left: 4px solid #10ac84;
}

.langgraph-overview, .langgraph-advantages {
    border-left: 4px solid #ee5a52;
}

/* Framework Table */
.framework-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.framework-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.framework-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #eee;
    background: white;
    vertical-align: top;
}

.framework-table tr:nth-child(even) td {
    background: #f8f9fa;
}

/* Examples */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.example {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.example:hover {
    transform: translateY(-5px);
}

.example h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Architecture Flow */
.architecture-flow {
    margin: 2rem 0;
}

.agent-flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.agent-node, .system-node {
    background: #3498db;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    min-width: 150px;
    text-align: center;
}

.system-node {
    background: #95a5a6;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

.protocol-labels {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.architecture-benefits {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #27ae60;
    text-align: left;
}

/* Workflow */
.workflow-diagram {
    margin: 2rem 0;
}

.workflow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.workflow-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: center;
    border-top: 4px solid #667eea;
}

.workflow-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

.workflow-step h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Trading Network */
.trading-network {
    margin: 2rem 0;
    position: relative;
}

.network-center {
    text-align: center;
    margin-bottom: 3rem;
}

.central-node {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 200px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-agents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.network-agent {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #e74c3c;
}

.trading-features {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #27ae60;
    text-align: left;
}

/* Takeaways */
.takeaways {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.takeaway {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.takeaway h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #f39c12;
    transition: transform 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
}

.phase h3 {
    color: #f39c12;
    margin-bottom: 1.5rem;
}

/* Best Practices */
.best-practices, .strategies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.practice-category, .strategy-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #9b59b6;
}

.practice-category h3, .strategy-category h3 {
    color: #9b59b6;
    margin-bottom: 1.5rem;
}

/* Next Steps */
.next-steps, .evolution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.step-category, .community-section, .evolution-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e67e22;
}

.step-category h3, .community-section h3, .evolution-section h3 {
    color: #e67e22;
    margin-bottom: 1.5rem;
}

/* Exploration Questions */
.exploration-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.question {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.question:hover {
    transform: scale(1.05);
}

.question h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Resources */
.resources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.resource-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.resource-category h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

/* Thank You Slide */
.thank-you {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
}

.thank-you h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thank-you h2 {
    color: #f8f9fa;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 3rem;
}

.thank-you-decoration {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.thank-you-decoration .tech-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

/* GitHub CTA Styles - Simplified */
.simple-cta {
    margin: 3rem 0;
    text-align: center;
}

.simple-cta h3 {
    color: #f8f9fa;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.simple-cta p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.github-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.github-btn, .star-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.github-btn {
    background: #24292e;
    color: white;
}

.github-btn:hover {
    background: #1a1e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 41, 46, 0.3);
}

.star-btn {
    background: #ffd700;
    color: #24292e;
    border-color: #ffd700;
}

.star-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.simple-connect {
    margin: 3rem 0;
    text-align: center;
}

.simple-connect p {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Responsive adjustments for simplified Thank You slide */
@media (max-width: 768px) {
    .github-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .github-btn, .star-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .simple-connect p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#slide-counter {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    width: 2.5%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide {
        padding: 40px 40px 120px 40px; /* Added extra bottom padding for navigation */
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .two-column,
    .feature-grid,
    .characteristics-grid,
    .frameworks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .evolution-chain {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 20px 20px 100px 20px; /* Added extra bottom padding for navigation */
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .examples-grid,
    .agent-types,
    .principles,
    .security-aspects,
    .roadmap,
    .patterns-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-controls {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table,
    .framework-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .framework-table th,
    .framework-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* Slide Transitions */
.slide.slide-in {
    animation: slideIn 0.5s ease-out;
}

.slide.slide-out {
    animation: slideOut 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

/* GitHub Repository Link */
.github-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.github-link:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.github-link a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.github-link a:hover {
    color: #58a6ff;
}

.github-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .github-link {
        bottom: 15px;
        left: 15px;
        padding: 8px 12px;
    }
    
    .github-link a {
        font-size: 12px;
    }
    
    .github-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Code Example Styles */
.code-example {
    margin: 20px 0;
    text-align: left;
}

.code-example h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.code-example pre {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 25px;
    margin: 0;
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.code-example code {
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Python syntax highlighting */
.code-example code.python {
    color: #d4d4d4;
}

/* Improve code readability */
.code-example pre code {
    display: block;
    white-space: pre;
    word-wrap: normal;
}

@media (max-width: 768px) {
    .code-example pre {
        padding: 15px;
        font-size: 14px;
    }
    
    .code-example code {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Workflow Types Styles */
.workflow-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
    text-align: left;
}

.workflow-type {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.workflow-type h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.workflow-type p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.workflow-visual.parallel {
    flex-direction: column;
    gap: 8px;
}

.parallel-branch {
    display: flex;
    justify-content: center;
    width: 100%;
}

.agent-step {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.arrow {
    color: #667eea;
    font-size: 18px;
    font-weight: bold;
}

.loop-arrow {
    color: #667eea;
    font-size: 24px;
    font-weight: bold;
}

.condition {
    background: #e8f0fe;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.workflow-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 8px;
}

.workflow-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.workflow-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .workflow-type {
        padding: 20px;
    }
    
    .workflow-visual {
        gap: 10px;
    }
    
    .agent-step {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .arrow, .loop-arrow {
        font-size: 16px;
    }
}
