/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Gold Color Variables */
:root {
    --premium-gold-light: #D4AF37;
    --premium-gold-medium: #B8860B;
    --premium-gold-dark: #8B6914;
    --premium-gold-gradient: linear-gradient(45deg, #D4AF37, #B8860B, #8B6914);
    --premium-gold-gradient-reverse: linear-gradient(45deg, #8B6914, #B8860B, #D4AF37);
    --premium-gold-glow: rgba(212, 175, 55, 0.3);
    --premium-gold-border: rgba(212, 175, 55, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

.app-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #111827 0%, #000000 50%, #111827 100%);
}

/* Navigation Styles */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--premium-gold-glow);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--premium-gold-glow));
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--premium-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-divider {
    color: #9ca3af;
}

.nav-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

.slide-counter {
    color: #9ca3af;
    font-size: 0.875rem;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    background: var(--premium-gold-glow);
    border: 1px solid var(--premium-gold-glow);
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: var(--premium-gold-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--premium-gold-light);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background: var(--premium-gold-glow);
    border-color: var(--premium-gold-glow);
}

/* Slide Indicators */
.slide-indicators {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

.indicators-container {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator.active {
    background: var(--premium-gold-light);
    transform: scale(1.25);
}

.indicator:hover {
    background: #9ca3af;
}

/* Main Content */
.main-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 100vh;
}

.slides-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Slide Base Styles */
.slide {
    display: none;
    min-height: 80vh;
    padding: 3rem 0;
}

.slide.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    will-change: transform;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--premium-gold-light), #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Slide 1: Intro Styles */
.intro-content {
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.intro-title {
    font-size: 6rem;
    font-weight: bold;
    background: var(--premium-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    text-shadow: 0 0 30px var(--premium-gold-glow);
    line-height: 1.1;
}

.intro-visual {
    margin-bottom: 4rem;
}

.cosmic-brand-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    border: 3px solid var(--premium-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 50px var(--premium-gold-glow);
    animation: pulse 3s ease-in-out infinite;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--premium-gold-glow));
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: drop-shadow(0 0 30px var(--premium-gold-border));
    transform: scale(1.05);
}


.enter-button {
    background: var(--premium-gold-gradient);
    color: #000000;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px var(--premium-gold-glow);
    backdrop-filter: blur(10px);
}

.enter-button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #f9ca24);
}

.intro-disclaimer {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Slide 2: Title Styles */
.cosmic-logo {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 6rem;
    font-weight: bold;
    background: var(--premium-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(45deg, var(--premium-gold-light), #c0c0c0);
    margin: 0 auto 1.5rem;
}

.subtitle {
    font-size: 2.5rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    font-weight: bold;
}

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

.metric-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-glow);
    transition: transform 0.3s ease;
}

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

.metric-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: #9ca3af;
}

.invitation-box {
    background: linear-gradient(135deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-light);
    margin-top: 3rem;
}

.invitation-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    margin-bottom: 1rem;
}

.invitation-box p {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.75;
}

/* CTA Styles */
.cta-section {
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--premium-gold-gradient);
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px var(--premium-gold-glow);
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button-large {
    display: inline-block;
    background: var(--premium-gold-gradient);
    color: #000000;
    padding: 1.5rem 4rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px var(--premium-gold-glow);
    margin-bottom: 1.5rem;
}

.cta-button-large:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
}

.cta-disclaimer-large {
    font-size: 1.125rem;
    color: #9ca3af;
}

/* Slide 3: Letter Styles */
.letter-format {
    max-width: 80rem;
    margin: 0 auto;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--premium-gold-glow);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.letter-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.letter-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--premium-gold-glow));
    flex-shrink: 0;
}

.letter-header-text {
    display: flex;
    flex-direction: column;
}

.letter-logo {
    color: var(--premium-gold-light);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.letter-subtitle {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.letter-greeting {
    font-size: 2rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    margin-bottom: 2rem;
}

.letter-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1d5db;
}

.letter-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--premium-gold-light);
    font-weight: 600;
}

.success-highlight {
    color: #10b981;
    font-weight: 600;
}

.investment-options {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #ffd700;
    margin: 1.5rem 0;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--premium-gold-light);
    border-radius: 50%;
    margin-top: 0.75rem;
    flex-shrink: 0;
}

.highlights-box {
    background: linear-gradient(45deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-glow);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.highlights-box h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    margin-bottom: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    font-size: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Slide 4: Investment Strategies */
.strategies-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
    border: 1px solid var(--premium-gold-glow);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-3px);
    border-color: var(--premium-gold-light);
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.strategy-icon {
    flex-shrink: 0;
}

.strategy-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.strategy-header p {
    color: #9ca3af;
    margin: 0;
}

.strategy-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.strategy-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

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

.strategy-details li {
    margin: 0.5rem 0;
    color: #9ca3af;
}

.fund-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: #9ca3af;
}

/* Color Classes */
.yellow { color: var(--premium-gold-light); }
.green { color: #10b981; }
.blue { color: #3b82f6; }
.success { color: #10b981; }

/* Slide 5: Portfolio Styles */
.portfolio-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.film-card {
    max-width: 48rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
    border: 2px solid var(--premium-gold-light);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.film-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    margin-bottom: 0.5rem;
}

.film-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cast-info h4 {
    font-weight: 600;
    color: #e5e7eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cast-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.actor-name {
    color: var(--premium-gold-light);
    font-weight: bold;
    font-size: 1.5rem;
}

.release-info {
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.2));
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.release-info h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 1rem;
}

.release-date {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.release-info p {
    color: #d1d5db;
}

.video-preview {
    background: #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.trailer-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.trailer-link:hover .play-icon {
    fill: #ffed4e;
}

.trailer-link:hover p {
    color: #d1d5db;
}

.trailer-link:hover span {
    color: #ffed4e;
}

.play-icon {
    margin: 0 auto 1rem;
    transition: fill 0.3s ease;
}

.trailer-link p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.trailer-link span {
    color: var(--premium-gold-light);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-metrics h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

/* Slide 6: Current Slate */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
    border: 1px solid var(--premium-gold-glow);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold-light);
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    margin-bottom: 0.75rem;
}

.project-card > p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.project-stats {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-row span:first-child {
    color: #9ca3af;
}

.stat-row span:last-child {
    color: #ffffff;
}

.project-link {
    background: linear-gradient(45deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    border: 1px solid var(--premium-gold-border);
    color: var(--premium-gold-light);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.project-link:hover {
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(192, 192, 192, 0.2));
    border-color: var(--premium-gold-light);
    transform: translateY(-2px);
}

.slate-overview {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-glow);
}

.slate-overview h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    margin-bottom: 1.5rem;
}

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

.overview-grid h4 {
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

.overview-grid ul {
    list-style: none;
    padding: 0;
}

.overview-grid li {
    margin: 0.5rem 0;
    color: #9ca3af;
}

/* Slide 7: Risk Mitigation */
.risk-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.risk-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    margin-bottom: 1.5rem;
}

.protection-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.protection-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.protection-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.protection-icon {
    flex-shrink: 0;
}

.protection-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0;
}

.protection-item p {
    color: #9ca3af;
    margin: 0;
}

.risk-metrics {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.risk-metrics h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.security-item {
    text-align: center;
}

.security-level {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.security-type {
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.security-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Slide 8: Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #c0c0c0;
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    color: #000000;
}

.team-avatar.yellow { background: linear-gradient(45deg, #ffd700, #ffed4e); }
.team-avatar.silver { background: linear-gradient(45deg, #c0c0c0, #e5e7eb); }
.team-avatar.gold { background: linear-gradient(45deg, #ffd700, #c0c0c0); }
.team-avatar.gradient1 { background: linear-gradient(45deg, #c0c0c0, #ffd700); }
.team-avatar.gradient2 { background: linear-gradient(45deg, #ffd700, #c0c0c0); }
.team-avatar.gradient3 { background: linear-gradient(45deg, #c0c0c0, #ffd700); }

.team-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--premium-gold-light);
    margin-bottom: 0.5rem;
}

.team-card h4 {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.team-stats {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-glow);
}

.team-stats h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
}

/* Slide 9: CTA */
.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--premium-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.cta-content {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

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

.pathway-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--premium-gold-glow), rgba(192, 192, 192, 0.1));
    border-radius: 1rem;
    border: 1px solid var(--premium-gold-glow);
    transition: all 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold-light);
}

.pathway-card svg {
    margin: 0 auto 1rem;
    display: block;
}

.pathway-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pathway-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.875rem;
}

.pathway-card li {
    margin: 0.5rem 0;
    color: #9ca3af;
}

.opportunity-box {
    background: linear-gradient(45deg, rgba(107, 114, 128, 0.3), rgba(75, 85, 99, 0.3));
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(107, 114, 128, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.opportunity-box:hover {
    animation: pulse 1.5s ease-in-out 3;
}

.opportunity-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.opportunity-box > p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.benefits-grid h5 {
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.benefits-grid ul {
    list-style: none;
    padding: 0;
}

.benefits-grid li {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: #9ca3af;
}

.final-cta {
    margin-bottom: 3rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

/* Slide 10: End */
.end-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

.end-title {
    font-size: 8rem;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-section {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid var(--premium-gold-glow);
    backdrop-filter: blur(16px);
    margin-bottom: 3rem;
}

.contact-section p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--premium-gold-light);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #ffed4e;
}

.return-button {
    font-family: 'Times New Roman', Times, serif;
    background: transparent;
    color: var(--premium-gold-light);
    border: 2px solid var(--premium-gold-light);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.return-button:hover {
    background: var(--premium-gold-glow);
    color: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 50px var(--premium-gold-glow);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 70px var(--premium-gold-border);
    }
}

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

    .nav-content {
        padding: 1rem;
    }

    .slide-content {
        padding: 2.5rem 0;
    }

    .slide-title {
        font-size: 2rem;
    }

    .intro-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .main-title {
        font-size: 3rem;
    }

    .cosmic-brand-circle {
        width: 150px;
        height: 150px;
    }


    .enter-button {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .letter-format {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .strategy-details {
        grid-template-columns: 1fr;
    }

    .fund-metrics {
        grid-template-columns: 1fr;
    }

    .risk-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pathways-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .end-title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .contact-section {
        margin: 0 1rem 2rem 1rem;
        padding: 1.5rem;
    }

    .contact-email {
        font-size: 1.25rem;
    }

    .return-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .end-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .letter-format {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
.slide-content {
    will-change: transform;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover,
    .nav-btn:hover,
    .return-button:hover,
    .enter-button:hover {
        transform: none;
    }

    .metric-card:hover,
    .project-card:hover,
    .team-card:hover,
    .strategy-card:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-subtitle {
        color: #d1d5db;
    }
    
    .metric-label {
        color: #d1d5db;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cosmic-brand-circle {
        animation: none;
    }
}