/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans:wght@400;700&family=Fredoka+One:wght@400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, #1b0bb6 0%, #000000 50%, #1b0bb6 100%);
    background-size: 400% 400%;
    animation: rainbowShift 8s ease-in-out infinite;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(27, 11, 182, 0.75));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    padding: 0 2rem !important;
    gap: 2rem !important;
}

.nav-logo img, .nav-logo-right img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-logo {
    grid-column: 1 !important;
    justify-self: start !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
}

.nav-logo-right {
    grid-column: 3 !important;
    justify-self: end !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
}

.nav-menu {
    grid-column: 2 !important;
    display: flex !important;
    list-style: none !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    justify-self: center !important;
    width: auto !important;
    min-height: auto !important;
    margin: 0 !important;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 0.25rem 0.5rem !important;
    position: relative !important;
    white-space: nowrap !important;
    text-align: center !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.nav-link:hover, .nav-link.active {
    color: #ffd700 !important;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.35) !important;
    transform: none !important;
}

/* Section Styles */
.section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 2rem 3rem 2rem;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(27, 11, 182, 0.5));
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 50px;
}

.hero-icon {
    font-size: 7rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    animation: heroIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

/* Module-specific floating animations */
.hero-icon[data-module="1"] {
    animation: module1Float 4s ease-in-out infinite;
}

.hero-icon[data-module="2"] {
    animation: module2Float 4s ease-in-out infinite;
}

.hero-icon[data-module="3"] {
    animation: module3Float 4s ease-in-out infinite;
}

.hero-icon[data-module="4"] {
    animation: module4Float 4s ease-in-out infinite;
}

.hero-icon[data-module="5"] {
    animation: module5Float 4s ease-in-out infinite;
}

.hero-icon[data-module="6"] {
    animation: module6Float 4s ease-in-out infinite;
}

@keyframes heroIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Module 1: Creator Mindset - Brain wave animation */
@keyframes module1Float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(-20px) rotate(0deg) scale(1.1); }
    75% { transform: translateY(-10px) rotate(-5deg) scale(1.05); }
}

/* Module 2: Content Creation - Bounce and spin */
@keyframes module2Float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(15deg) scale(1.1); }
    50% { transform: translateY(-25px) rotate(0deg) scale(1.2); }
    75% { transform: translateY(-15px) rotate(-15deg) scale(1.1); }
}

/* Module 3: iPhone Videography - Camera shake */
@keyframes module3Float {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-12px) translateX(3px) scale(1.05); }
    50% { transform: translateY(-20px) translateX(0px) scale(1.1); }
    75% { transform: translateY(-12px) translateX(-3px) scale(1.05); }
}

/* Module 4: Production Projects - Film reel rotation */
@keyframes module4Float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-8px) rotate(90deg) scale(1.08); }
    50% { transform: translateY(-16px) rotate(180deg) scale(1.15); }
    75% { transform: translateY(-8px) rotate(270deg) scale(1.08); }
}

/* Module 5: Content Strategy - Rocket launch */
@keyframes module5Float {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-15px) scale(1.1); }
    75% { transform: translateY(-25px) scale(1.15); }
}

/* Module 6: Boss Creator Showcase - Trophy glow */
@keyframes module6Float {
    0%, 100% { transform: translateY(0px) scale(1); filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)); }
    25% { transform: translateY(-8px) scale(1.05); filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
    50% { transform: translateY(-16px) scale(1.1); filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1)); }
    75% { transform: translateY(-8px) scale(1.05); filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(27, 11, 182, 0.6)); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.hero-highlight {
    background: linear-gradient(135deg, rgba(27, 11, 182, 0.3), rgba(255, 255, 255, 0.2));
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 1.5rem 2.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: heroHighlightGlow 3s ease-in-out infinite;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

@keyframes heroHighlightGlow {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 20px 40px rgba(27, 11, 182, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.4); }
}

.hero-badge {
    font-size: 3rem;
    animation: heroBadgeBounce 2s ease-in-out infinite;
}

@keyframes heroBadgeBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(10deg); }
    75% { transform: scale(1.2) rotate(-10deg); }
}

.hero-tagline {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.hero-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(27, 11, 182, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 1rem 2rem;
    animation: featureFloat 5s ease-in-out infinite;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 1s; }
.feature-item:nth-child(3) { animation-delay: 2s; }

@keyframes featureFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg); }
}

.feature-icon {
    font-size: 2rem;
    animation: featureIconSpin 3s ease-in-out infinite;
}

@keyframes featureIconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.feature-text {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

/* Section Titles */
.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
    animation: titleGlow 3s ease-in-out infinite;
}

/* Content Cards */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.visual-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(27, 11, 182, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: superCardFloat 6s ease-in-out infinite;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.visual-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes superCardFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg); }
}

.visual-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: superIconBounce 3s ease-in-out infinite;
}

@keyframes superIconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}

.visual-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.visual-desc {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

/* Stats Display */
.stats-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(27, 11, 182, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    animation: statFloat 5s ease-in-out infinite;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.4);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

/* Creator Showcase */
.creator-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.creator-main {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(27, 11, 182, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: superCardFloat 6s ease-in-out infinite;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.creator-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.creator-name-large {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.creator-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, rgba(27, 11, 182, 0.5), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

.creator-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creator-card-compact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(27, 11, 182, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: superCardFloat 6s ease-in-out infinite;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.creator-avatar-compact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.creator-name-compact {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.creator-desc-compact {
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

/* Impact Highlight */
.impact-highlight {
    background: linear-gradient(135deg, rgba(27, 11, 182, 0.3), rgba(255, 255, 255, 0.2));
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    animation: heroHighlightGlow 3s ease-in-out infinite;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: heroBadgeBounce 2s ease-in-out infinite;
}

.impact-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.impact-traits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trait {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(27, 11, 182, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
    animation: featureFloat 5s ease-in-out infinite;
}

/* Storytelling Flow */
.storytelling-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.flow-step {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(27, 11, 182, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    animation: superCardFloat 6s ease-in-out infinite;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.flow-step:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.4);
}

.flow-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: superIconBounce 3s ease-in-out infinite;
}

.flow-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.flow-desc {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(27, 11, 182, 0.3), rgba(255, 255, 255, 0.2));
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    animation: heroHighlightGlow 3s ease-in-out infinite;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.highlight-box h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.highlight-box p {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

/* Inspirational Quote */
.inspirational-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
    text-align: center;
}

/* Video Player Styles */
.video-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.video-player {
    width: 100%;
    max-width: 120vh; /* Scaled down 16:9 ratio width - matching index.html */
    height: 67.5vh; /* Scaled down proportionally - matching index.html */
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 215, 0, 0.3);
}

.video-description {
    text-align: center;
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

/* Kahoot Game Embed */
.kahoot-embed-container {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(27, 11, 182, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-align: center;
}

.kahoot-embed-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.kahoot-embed-wrapper {
    margin: 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.kahoot-embed-wrapper iframe {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.kahoot-embed-wrapper iframe:hover {
    transform: scale(1.02);
}

.kahoot-embed-info {
    margin-top: 1.5rem;
}

.kahoot-embed-info p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
}

.kahoot-play-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.kahoot-play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff5252, #d63031);
}

/* Canva Presentation Embed */
.canva-embed-container {
    margin: 1.5rem 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.canva-embed-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    padding-bottom: 0;
    overflow: hidden;
}



.canva-embed-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.05);
}

.canva-credit {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.canva-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.canva-credit a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for Video and Kahoot */
@media (max-width: 768px) {
    .video-player {
        height: 60vh;
        max-width: 106.67vh;
    }
    
    .kahoot-embed-container {
        padding: 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .kahoot-embed-title {
        font-size: 1.5rem;
    }
    
    .kahoot-embed-wrapper iframe {
        height: 350px;
    }
    
    .canva-embed-wrapper {
        padding-top: 70%; /* Better aspect ratio for tablets */
    }
    
    .canva-credit {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    /* Optimize section spacing for tablets */
    .section {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .video-player {
        height: 250px;
    }
    
    .kahoot-embed-container {
        padding: 1rem;
        margin: 1rem 0 0.8rem 0;
    }
    
    .kahoot-embed-title {
        font-size: 1.3rem;
    }
    
    .kahoot-embed-wrapper iframe {
        height: 280px;
    }
    
    .kahoot-play-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .canva-embed-wrapper {
        padding-top: 80%; /* Better mobile aspect ratio */
    }
    
    .canva-credit {
        font-size: 0.75rem;
        margin-top: 0.6rem;
    }
    
    /* Optimize section spacing for mobile */
    .section {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .visual-grid {
        gap: 1rem;
    }
    
    .visual-card {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .video-player {
        height: 200px;
    }
    
    .kahoot-embed-container {
        padding: 0.8rem;
        margin: 0.8rem 0 0.6rem 0;
    }
    
    .kahoot-embed-title {
        font-size: 1.2rem;
    }
    
    .kahoot-embed-wrapper iframe {
        height: 220px;
    }
    
    .kahoot-play-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .canva-embed-wrapper {
        padding-top: 85%; /* Even better for tiny screens */
    }
    
    .canva-credit {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    /* Optimize section spacing for small mobile */
    .section {
        padding: 1rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.6rem;
    }
    
    .visual-grid {
        gap: 0.8rem;
    }
    
    .visual-card {
        padding: 0.8rem;
    }
}

/* Module Navigation */
.module-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(27, 11, 182, 0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    z-index: 999;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.module-nav.collapsed {
    transform: translateX(calc(100% + 20px));
    opacity: 0;
}

.module-nav-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(27, 11, 182, 0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.module-nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.module-nav-toggle.hidden {
    opacity: 0;
    pointer-events: none;
}

.module-nav-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-nav-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
}

.module-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.module-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(27, 11, 182, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.module-link:hover, .module-link.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(27, 11, 182, 0.3));
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.module-icon {
    font-size: 1.2rem;
    filter: drop-shadow(1px 1px 0px rgba(0,0,0,0.8));
}

.module-text {
    font-weight: 500;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.8);
    line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .module-nav {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        border-radius: 15px;
        padding: 1rem;
    }
    
    .module-nav-toggle {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .module-nav-title {
        font-size: 1rem;
        margin: 0 0 0.8rem 0;
    }
    
    .module-links {
        gap: 0.6rem;
    }
    
    .module-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .module-icon {
        font-size: 1rem;
    }
    
    .nav-container {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 0 1rem !important;
    }

    .nav-logo, .nav-logo-right {
        justify-self: center !important;
    }

    .nav-logo img, .nav-logo-right img {
        height: 32px !important;
    }

    .nav-menu {
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .nav-link {
        font-size: 0.95rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    .section {
        padding: 120px 1rem 2rem 1rem;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-highlight {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .creator-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .creator-main {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-display {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .storytelling-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-traits {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .visual-card, .stat-item, .flow-step {
        padding: 1.5rem;
    }
    
    .creator-main {
        padding: 1.5rem;
    }
    
    .creator-avatar-large {
        width: 80px;
        height: 80px;
    }
    
    .creator-name-large {
        font-size: 2rem;
    }
} 