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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 48px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #CBD5E1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1E293B;
    z-index: 1000;
    height: 80px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 50%, #CA8A04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-symbol {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
    margin-left: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #EAB308;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: transparent;
    border: 1px solid #1E293B;
    padding: 8px 12px;
    border-radius: 8px;
    color: #CBD5E1;
    font-size: 12px;
}

.current-price {
    font-size: 16px;
    font-weight: 600;
    color: #EAB308;
}

.target-price {
    font-size: 10px;
    color: #94A3B8;
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
    color: #0F172A;
}

.cta-button.primary:hover {
    filter: brightness(110%);
    transform: scale(1.02);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid #EAB308;
    color: #EAB308;
}

.cta-button.secondary:hover {
    background: rgba(234, 179, 8, 0.1);
}

.cta-button.tertiary {
    background: #1E293B;
    border: 1px solid #334155;
    color: #CBD5E1;
}

.cta-button.tertiary:hover {
    background: #334155;
    border-color: #EAB308;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(234, 179, 8, 0.05), transparent 40%);
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #EAB308;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #EAB308;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-description {
    font-size: 20px;
    color: #CBD5E1;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94A3B8;
}

.trust-icon {
    font-size: 16px;
}

/* Gold Coin Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-coin-container {
    text-align: center;
}

.gold-coin {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 50%, #CA8A04 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(234, 179, 8, 0.3), 
        0 0 80px rgba(234, 179, 8, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.coin-front, .coin-back {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #000000;
    position: absolute;
    transition: transform 0.6s ease;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    line-height: 1;
}

.coin-back {
    transform: rotateY(180deg);
}

.gold-coin:hover .coin-front {
    transform: rotateY(180deg);
}

.gold-coin:hover .coin-back {
    transform: rotateY(360deg);
}

.coin-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    gap: 40px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.3);
    backdrop-filter: blur(12px);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.5);
    margin-bottom: 8px;
    display: block;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotateZ(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotateZ(1deg); 
    }
    50% { 
        transform: translateY(-30px) rotateZ(0deg); 
    }
    75% { 
        transform: translateY(-10px) rotateZ(-1deg); 
    }
}

/* Trust Bar */
.trust-bar {
    background: #0F172A;
    padding: 32px 0;
    border-top: 1px solid #1E293B;
    border-bottom: 1px solid #1E293B;
}

.trust-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    opacity: 0.6;
}

.partner-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Vault Dashboard */
.vault-dashboard {
    padding: 96px 0;
    background: #020617;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #94A3B8;
    margin-bottom: 64px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.vault-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #1E293B;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.vault-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(234, 179, 8, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.vault-card h3 {
    margin-bottom: 24px;
    color: #F8FAFC;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-unit {
    font-size: 18px;
    color: #94A3B8;
}

.metric-description {
    color: #94A3B8;
    margin-bottom: 24px;
}

.vault-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    font-size: 14px;
    color: #10B981;
}

/* Tokenomics Bars */
.tokenomics-bars {
    margin-bottom: 24px;
}

.token-bar {
    margin-bottom: 16px;
}

.bar-label {
    font-size: 14px;
    color: #CBD5E1;
    margin-bottom: 8px;
    display: block;
}

.bar-container {
    background: #1E293B;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, #EAB308, #FACC15);
    border-radius: 4px;
    transition: width 1s ease;
}

.fill-40 { width: 40%; }
.fill-30 { width: 30%; }

/* Education Section */
.education-section {
    padding: 96px 0;
    background: #0F172A;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #EAB308;
    margin-bottom: 24px;
}

.education-subtitle {
    font-size: 20px;
    color: #EAB308;
    margin-bottom: 32px;
    font-weight: 600;
}

.education-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

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

.edu-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.edu-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.course-feature h4 {
    color: #F8FAFC;
    margin-bottom: 8px;
    font-size: 18px;
}

.course-feature p {
    color: #94A3B8;
}

/* Growth Chart */
.student-metrics {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 32px;
}

.growth-chart {
    margin-bottom: 32px;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #F8FAFC;
    text-align: center;
}

.growth-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 200px;
    margin-bottom: 16px;
}

.bar {
    width: 60px;
    background: linear-gradient(to top, #EAB308, #FACC15);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: growBar 4s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.5s; }
.bar:nth-child(3) { animation-delay: 1s; }
.bar:nth-child(4) { animation-delay: 1.5s; }

@keyframes growBar {
    0%, 100% { height: 20%; }
    50% { height: var(--target-height, 100%); }
}

.growth-labels {
    display: flex;
    justify-content: space-around;
    color: #94A3B8;
    font-size: 14px;
}

.revenue-projection {
    display: flex;
    gap: 32px;
}

.rev-stat {
    text-align: center;
    flex: 1;
}

.rev-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.rev-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* UPMA Section */
.upma-section {
    padding: 96px 0;
    background: #020617;
}

.upma-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.upma-subtitle {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.upma-benefits {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.benefit-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #1E293B;
}

.benefit-card h4 {
    color: #F8FAFC;
    margin-bottom: 8px;
    font-size: 16px;
}

.benefit-card p {
    color: #94A3B8;
    margin-bottom: 12px;
}

.benefit-price {
    font-size: 14px;
    color: #EAB308;
    font-weight: 600;
}

.tax-benefits {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.tax-benefits h4 {
    color: #EAB308;
    margin-bottom: 12px;
}

.tax-benefits p {
    color: #94A3B8;
}

/* Metal Prices */
.metal-prices {
    display: grid;
    gap: 16px;
}

.price-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #1E293B;
    text-align: center;
}

.price-card.gold {
    border-color: #EAB308;
}

.price-card.silver {
    border-color: #64748B;
}

.price-card.goldback {
    border-color: #F59E0B;
}

.price-header {
    font-size: 14px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.price-detail {
    font-size: 12px;
    color: #94A3B8;
}

/* TV Section */
.tv-section {
    padding: 96px 0;
    background: #0F172A;
}

.tv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tv-subtitle {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.tv-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

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

.tv-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.tv-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* TV Description */
.tv-description {
    margin: 24px 0;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.tv-connected-text {
    font-size: 16px;
    color: #E2E8F0;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* TV Certifications */
.tv-certifications {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.cert-icon {
    font-size: 16px;
    margin-right: 4px;
}

.cert-text {
    white-space: nowrap;
}

/* Responsive adjustments for certifications */
@media (max-width: 768px) {
    .tv-certifications {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .certification-badge {
        width: 100%;
        justify-content: center;
    }
}

.tv-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tv-feature h4 {
    color: #F8FAFC;
    margin-bottom: 4px;
    font-size: 16px;
}

.tv-feature p {
    color: #94A3B8;
    font-size: 14px;
}

/* Campaign Screens */
.campaign-screens {
    background: #1E293B;
    border-radius: 16px;
    padding: 32px;
}

.screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tv-screen {
    aspect-ratio: 16/9;
    background: #0F172A;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #334155;
    transition: all 0.3s ease;
}

.tv-screen.active {
    border-color: #EAB308;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

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

.screen-title {
    font-size: 12px;
    color: #F8FAFC;
    margin-bottom: 4px;
}

.screen-stats {
    font-size: 10px;
    color: #94A3B8;
}

/* Revenue Section */
.revenue-section {
    padding: 96px 0;
    background: #020617;
}

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

.revenue-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #1E293B;
    transition: all 0.3s ease;
}

.revenue-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 179, 8, 0.5);
}

.revenue-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.revenue-card h3 {
    color: #F8FAFC;
    margin-bottom: 16px;
}

.revenue-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.revenue-card p {
    color: #94A3B8;
    margin-bottom: 8px;
}

.revenue-detail {
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
}

/* Tokenomics Timeline */
.tokenomics-section {
    padding: 96px 0;
    background: #0F172A;
}

.projection-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.timeline-item {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #1E293B;
    position: relative;
}

.timeline-marker {
    position: absolute;
    top: -12px;
    left: 32px;
    background: #EAB308;
    color: #0F172A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.timeline-content h4 {
    color: #F8FAFC;
    margin-bottom: 16px;
    margin-top: 8px;
}

.timeline-content ul {
    list-style: none;
    color: #94A3B8;
}

.timeline-content li {
    padding: 4px 0;
    font-size: 14px;
}

/* Call to Action */
.cta-section {
    padding: 96px 0;
    text-align: center;
    background: #020617;
}

.cta-content h2 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #94A3B8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background: #0F172A;
    padding: 64px 0 32px;
    border-top: 1px solid #1E293B;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-trust {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-trust span {
    font-size: 12px;
    color: #94A3B8;
}

.footer-section h4 {
    color: #F8FAFC;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #EAB308;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #1E293B;
}

.footer-disclaimers {
    margin-bottom: 32px;
}

.disclaimer-section {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.disclaimer-section h4 {
    color: #EAB308;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.disclaimer-content p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content strong {
    color: #F8FAFC;
    font-weight: 600;
}

.footer-legal {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1E293B;
}

.footer-legal p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 8px;
}

.legal-links {
    font-size: 12px;
    color: #94A3B8;
}

.legal-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #EAB308;
}

.footer-bottom p {
    text-align: center;
    color: #64748B;
    font-size: 14px;
}

/* UPMA Enrollment Section */
.upma-enrollment {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.upma-enrollment h4 {
    color: #EAB308;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.upma-enrollment p {
    color: #CBD5E1;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.enrollment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.enrollment-features .feature {
    font-size: 14px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: left;
}

.upma-enroll-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #EAB308 0%, #FACC15 100%);
    color: #0F172A;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(234, 179, 8, 0.3);
}

.upma-enroll-btn:hover {
    background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.4);
}

.btn-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 96px 0;
    background: #020617;
}

.video-header {
    text-align: center;
    margin-bottom: 64px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.video-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1E293B;
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 24px rgba(234, 179, 8, 0.1);
}

.video-card.featured {
    grid-column: 1 / -1;
    background: rgba(234, 179, 8, 0.05);
    border-color: rgba(234, 179, 8, 0.3);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Ensure video controls are visible */
.video-thumbnail video::-webkit-media-controls {
    display: block !important;
    opacity: 1 !important;
}

.video-thumbnail video::-webkit-media-controls-panel {
    display: flex !important;
}

.video-thumbnail video::-webkit-media-controls-play-button,
.video-thumbnail video::-webkit-media-controls-mute-button,
.video-thumbnail video::-webkit-media-controls-timeline,
.video-thumbnail video::-webkit-media-controls-current-time-display,
.video-thumbnail video::-webkit-media-controls-time-remaining-display {
    display: block !important;
    opacity: 1 !important;
}

/* Firefox video controls */
.video-thumbnail video::-moz-media-controls {
    display: block !important;
}

/* Hide custom play icon when video is playing */
.video-thumbnail video:not([paused]) + .video-play-icon {
    opacity: 0;
    pointer-events: none;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-icon {
    background: #EAB308;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 24px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #EAB308;
    color: #0F172A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-content h3 {
    color: #F8FAFC;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.video-content p {
    color: #94A3B8;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.video-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat {
    font-size: 12px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.video-cta {
    text-align: center;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #1E293B;
}

.video-cta p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.video-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Video Responsive Adjustments */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .video-gallery-section {
        padding: 64px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-cta {
        padding: 32px 24px;
    }
    
    .video-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-stats {
        justify-content: center;
    }
    
    .video-content h3 {
        font-size: 16px;
    }
    
    .video-content p {
        font-size: 13px;
    }
    
    .upma-enrollment {
        padding: 24px 20px;
    }
    
    .enrollment-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .upma-enroll-btn {
        padding: 16px 32px;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-text {
        font-size: 16px;
    }
    
    .gold-coin {
        width: 160px;
        height: 160px;
    }
    
    .coin-front, .coin-back {
        font-size: 48px;
    }
    
    .coin-stats {
        margin-top: 24px;
        gap: 20px;
        padding: 16px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .disclaimer-section {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .disclaimer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .disclaimer-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .footer-legal p {
        font-size: 12px;
    }
    
    .legal-links {
        font-size: 11px;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gold-coin {
        animation: none;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gold-coin {
        animation: none;
    }
}

/* Tawee Chatbot Styles */
.tawee-chatbot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tawee-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tawee-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.tawee-chat-toggle.active {
    transform: scale(0.9);
}

.tawee-chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tawee-chat-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: tawee-pulse 2s infinite;
}

@keyframes tawee-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tawee-chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.tawee-chat-window.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.tawee-chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tawee-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tawee-chat-header-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
}

.tawee-chat-header-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.tawee-chat-header-text p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.tawee-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.tawee-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tawee-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.tawee-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tawee-message.bot {
    justify-content: flex-start;
}

.tawee-message.user {
    justify-content: flex-end;
}

.tawee-message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
}

.tawee-message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.tawee-message.bot .tawee-message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tawee-message.user .tawee-message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
}

.tawee-quick-actions {
    padding: 10px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.tawee-quick-actions h4 {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tawee-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tawee-quick-btn {
    background: #f0f2ff;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.tawee-quick-btn:hover {
    background: #667eea;
    color: white;
}

.tawee-chat-input {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

.tawee-chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border 0.2s;
}

.tawee-chat-input input:focus {
    border-color: #667eea;
}

.tawee-chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tawee-chat-send:hover {
    transform: scale(1.1);
}

.tawee-chat-voice {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 5px;
}

.tawee-chat-voice:hover {
    transform: scale(1.1);
    background: #45a049;
}

.tawee-chat-voice.active {
    background: #f44336;
    animation: tawee-pulse-voice 1s infinite;
}

@keyframes tawee-pulse-voice {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.tawee-typing-indicator {
    display: none;
    padding: 10px 16px;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tawee-typing-dots {
    display: flex;
    gap: 3px;
}

.tawee-typing-dot {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: tawee-typing 1.4s infinite ease-in-out;
}

.tawee-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.tawee-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes tawee-typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.tawee-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tawee-chatbot-container {
        bottom: 15px;
        left: 15px;
    }
    .tawee-chat-window {
        width: calc(100vw - 30px);
        height: 60vh;
        max-height: 500px;
    }
    .tawee-chat-toggle {
        width: 55px;
        height: 55px;
    }
    .tawee-chat-avatar {
        width: 45px;
        height: 45px;
    }
}

/* Trending Pop-up Banner */
.trending-popup {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    animation: slideInDown 0.5s ease-out;
}

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

.trending-popup-button {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: flashGold 1.5s infinite;
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid #FFA500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-popup-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
}

@keyframes flashGold {
    0%, 100% {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FFA500 100%);
        box-shadow: 0 12px 32px rgba(255, 165, 0, 0.8), 0 0 60px rgba(255, 165, 0, 0.6);
    }
}

/* Responsive adjustments for pop-up */
@media (max-width: 768px) {
    .trending-popup {
        top: 80px;
        right: 15px;
        left: 15px;
    }
    
    .trending-popup-button {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
}