/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-particles {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 2s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:last-child {
    color: #ff9999;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-link:last-child::after {
    background: #ff9999;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
    padding: 6rem 0 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b6b" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100vh) translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: block;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    display: block;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.title-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: wordSlideIn 0.8s ease-out forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }
.title-word:nth-child(5) { animation-delay: 1.0s; }
.title-word:nth-child(6) { animation-delay: 1.2s; }

.animated-gradient {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, wordSlideIn 0.8s ease-out forwards;
}

.magic-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease-in-out infinite, magicGlow 2s ease-in-out infinite, wordSlideIn 0.8s ease-out forwards;
    position: relative;
}

.magic-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 400%;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
    animation: gradientShift 2s ease-in-out infinite;
}

.title-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes wordSlideIn {
    0% {
    opacity: 0;
        transform: translateY(50px) rotateX(90deg);
}
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

@keyframes magicGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.5),
                     0 0 40px rgba(78, 205, 196, 0.3),
                     0 0 60px rgba(69, 183, 209, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.8),
                     0 0 60px rgba(78, 205, 196, 0.6),
                     0 0 90px rgba(69, 183, 209, 0.4);
    }
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.8s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subtitle-text {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.subtitle-text:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(78, 205, 196, 0.4);
}

.whimsical-1 {
    animation: modernGlow1 3s ease-in-out infinite;
    animation-delay: 0s;
}

.whimsical-2 {
    animation: modernGlow2 3s ease-in-out infinite;
    animation-delay: 1s;
}

.whimsical-3 {
    animation: modernGlow3 3s ease-in-out infinite;
    animation-delay: 2s;
}

.animated-dot {
    font-size: 1.5em;
    display: inline-block;
    animation: modernDotGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.animated-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-dot:nth-child(4) {
    animation-delay: 0.4s;
}

.animated-dot:nth-child(6) {
    animation-delay: 0.6s;
}

.animated-dot:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.8));
}

@keyframes modernDotGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
        opacity: 0.8;
    }
    25% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
        opacity: 1;
    }
    75% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
        opacity: 1;
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
        opacity: 0.8;
    }
}

.highlight {
    color: #4ecdc4;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
        opacity: 0;
    animation: slideInUp 0.8s ease-out 1s forwards;
}

.hero-video-section {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    position: relative;
        opacity: 0;
    animation: slideInUp 1s ease-out 0.8s forwards;
    display: block;
    width: 100%;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 100%;
    pointer-events: auto;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    pointer-events: none;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #ff6b6b, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#features-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.features-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b6b" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: particleMove 20s linear infinite;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.icon-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    opacity: 0.1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.feature-icon span {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-animation {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-chart {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(to top, #ff6b6b, #4ecdc4);
    border-radius: 6px 6px 0 0;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.heart-animation {
    position: relative;
}

.heart {
    font-size: 2rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.rocket-animation {
    position: relative;
}

.rocket {
    font-size: 2rem;
    animation: rocketFly 3s ease-in-out infinite;
}

@keyframes rocketFly {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.rocket-trail {
    position: absolute;
    top: 50%;
    left: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #ff6b6b, transparent);
    animation: trailGrow 3s ease-in-out infinite;
}

@keyframes trailGrow {
    0%, 100% { width: 0; }
    50% { width: 30px; }
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

/* Video playing state */
.portfolio-item.video-playing {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border: 2px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.portfolio-item.video-playing .video-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-item.video-playing .project-title {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.portfolio-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.project-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.project-author {
    color: #4ecdc4;
    font-weight: 500;
    font-size: 1.125rem;
}

.project-content {
    margin-top: 2rem;
}

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

.comparison-side h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.image-slideshow, .video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-slideshow {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.slideshow-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.page-info {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.video-container {
    height: 400px;
    position: relative;
}

.youtube-player {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Video container needs relative positioning for absolute button */
.video-container {
    height: 400px;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.video-overlay .mute-toggle {
    pointer-events: all;
}

.mute-toggle {
    position: absolute;
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* When video is MUTED - Show unmute button (center, large, animated) */
.mute-toggle.video-muted {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6), 0 0 60px rgba(78, 205, 196, 0.4);
    animation: pulseUnmute 2s ease-in-out infinite;
}

.mute-toggle.video-muted:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.8), 0 0 80px rgba(78, 205, 196, 0.6);
}

.mute-toggle.video-muted .audio-icon {
    width: 36px;
    height: 36px;
}

/* When video is UNMUTED - Show mute button (top-right, small, subtle) */
.mute-toggle.video-unmuted {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: pulseMute 2s ease-in-out infinite;
}

.mute-toggle.video-unmuted:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.audio-icon {
    transition: opacity 0.2s ease;
}

/* Pulse animation for unmute button */
@keyframes pulseUnmute {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.6), 0 0 60px rgba(78, 205, 196, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 107, 107, 0.9), 0 0 100px rgba(78, 205, 196, 0.7);
    }
}

/* Modern breathing animation for mute button - smooth scale pulse */
@keyframes pulseMute {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.15);
        border-color: rgba(255, 255, 255, 1);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-header {
    margin-bottom: 3rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.price-unit {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.pricing-features {
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-item .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: particleMove 20s linear infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 0;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 0;
    margin-bottom: 2rem;
}

.contact-form {
    padding: 0 2rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.success-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
}

.success-message h4 {
    color: #4ecdc4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 90%;
    text-align: center;
    }
    
    .hero-video-section {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hidden by default - industry standard */
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex; /* Show when active */
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Fix main title margin - prevent it from going under navbar */
    .hero-content {
        margin-top: 30px; /* Reduced margin */
    }
    
    /* Make navbar narrower on mobile */
    .navbar {
        height: 60px; /* Reduced from default */
        padding: 0 1rem;
    }
    
    /* Make hamburger menu smaller */
    .nav-toggle {
        width: 24px; /* Reduced from 30px */
        height: 24px; /* Reduced from 30px */
    }
    
    .nav-toggle span {
        display: block;
        width: 16px; /* Reduced from 20px */
        height: 1.5px; /* Reduced from 2px */
        background: #fff;
        margin: 1.5px 0; /* Reduced from 2px */
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Fix pricing layout for mobile - stack price and unit vertically */
    .price {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none !important;
    }
    
    .video-overlay-buttons {
        top: 10px;
        right: 10px;
    gap: 10px;
}

    .overlay-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 120px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 95%;
    }
    
    .hero-video-section {
        margin: 2rem auto 0;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .project-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 0;
    }
    
    .contact-form {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Intersection Observer Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading Placeholder */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #4ecdc4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff5252, #26a69a);
}

/* Super Modern Glowing Effects */
@keyframes modernGlow1 {
    0% { 
        text-shadow: 
            0 0 5px rgba(78, 205, 196, 0.3),
            0 0 10px rgba(78, 205, 196, 0.2),
            0 0 15px rgba(78, 205, 196, 0.1),
            0 0 20px rgba(78, 205, 196, 0.05);
        filter: brightness(1);
    }
    25% { 
        text-shadow: 
            0 0 8px rgba(78, 205, 196, 0.5),
            0 0 16px rgba(78, 205, 196, 0.4),
            0 0 24px rgba(78, 205, 196, 0.3),
            0 0 32px rgba(78, 205, 196, 0.2);
        filter: brightness(1.1);
    }
    50% { 
        text-shadow: 
            0 0 12px rgba(78, 205, 196, 0.7),
            0 0 24px rgba(78, 205, 196, 0.6),
            0 0 36px rgba(78, 205, 196, 0.5),
            0 0 48px rgba(78, 205, 196, 0.4);
        filter: brightness(1.2);
    }
    75% { 
        text-shadow: 
            0 0 8px rgba(78, 205, 196, 0.5),
            0 0 16px rgba(78, 205, 196, 0.4),
            0 0 24px rgba(78, 205, 196, 0.3),
            0 0 32px rgba(78, 205, 196, 0.2);
        filter: brightness(1.1);
    }
    100% {
        text-shadow: 
            0 0 5px rgba(78, 205, 196, 0.3),
            0 0 10px rgba(78, 205, 196, 0.2),
            0 0 15px rgba(78, 205, 196, 0.1),
            0 0 20px rgba(78, 205, 196, 0.05);
        filter: brightness(1);
    }
}

@keyframes modernGlow2 {
    0% { 
        text-shadow: 
            0 0 5px rgba(255, 159, 243, 0.3),
            0 0 10px rgba(255, 159, 243, 0.2),
            0 0 15px rgba(255, 159, 243, 0.1),
            0 0 20px rgba(255, 159, 243, 0.05);
        filter: brightness(1);
    }
    25% { 
        text-shadow: 
            0 0 8px rgba(255, 159, 243, 0.5),
            0 0 16px rgba(255, 159, 243, 0.4),
            0 0 24px rgba(255, 159, 243, 0.3),
            0 0 32px rgba(255, 159, 243, 0.2);
        filter: brightness(1.1);
    }
    50% { 
        text-shadow: 
            0 0 12px rgba(255, 159, 243, 0.7),
            0 0 24px rgba(255, 159, 243, 0.6),
            0 0 36px rgba(255, 159, 243, 0.5),
            0 0 48px rgba(255, 159, 243, 0.4);
        filter: brightness(1.2);
    }
    75% { 
        text-shadow: 
            0 0 8px rgba(255, 159, 243, 0.5),
            0 0 16px rgba(255, 159, 243, 0.4),
            0 0 24px rgba(255, 159, 243, 0.3),
            0 0 32px rgba(255, 159, 243, 0.2);
        filter: brightness(1.1);
    }
    100% { 
        text-shadow: 
            0 0 5px rgba(255, 159, 243, 0.3),
            0 0 10px rgba(255, 159, 243, 0.2),
            0 0 15px rgba(255, 159, 243, 0.1),
            0 0 20px rgba(255, 159, 243, 0.05);
        filter: brightness(1);
    }
}

@keyframes modernGlow3 {
    0% { 
        text-shadow: 
            0 0 5px rgba(84, 160, 255, 0.3),
            0 0 10px rgba(84, 160, 255, 0.2),
            0 0 15px rgba(84, 160, 255, 0.1),
            0 0 20px rgba(84, 160, 255, 0.05);
        filter: brightness(1);
    }
    25% { 
        text-shadow: 
            0 0 8px rgba(84, 160, 255, 0.5),
            0 0 16px rgba(84, 160, 255, 0.4),
            0 0 24px rgba(84, 160, 255, 0.3),
            0 0 32px rgba(84, 160, 255, 0.2);
        filter: brightness(1.1);
    }
    50% { 
        text-shadow: 
            0 0 12px rgba(84, 160, 255, 0.7),
            0 0 24px rgba(84, 160, 255, 0.6),
            0 0 36px rgba(84, 160, 255, 0.5),
            0 0 48px rgba(84, 160, 255, 0.4);
        filter: brightness(1.2);
    }
    75% { 
        text-shadow: 
            0 0 8px rgba(84, 160, 255, 0.5),
            0 0 16px rgba(84, 160, 255, 0.4),
            0 0 24px rgba(84, 160, 255, 0.3),
            0 0 32px rgba(84, 160, 255, 0.2);
        filter: brightness(1.1);
    }
    100% { 
        text-shadow: 
            0 0 5px rgba(84, 160, 255, 0.3),
            0 0 10px rgba(84, 160, 255, 0.2),
            0 0 15px rgba(84, 160, 255, 0.1),
            0 0 20px rgba(84, 160, 255, 0.05);
        filter: brightness(1);
    }
}


/* Selection */
::selection {
    background: rgba(255, 107, 107, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 107, 107, 0.3);
    color: #ffffff;
}

/* ====================================
   MOBILE RESPONSIVE STYLES
   ==================================== */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    /* Logo sizing for tablet */
    .logo-image {
        height: 35px;
    }
    
    /* Portfolio grid - single column */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Portfolio items - stack vertically */
    .comparison-layout {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .book-comparison, .video-section {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Reduce video height for mobile */
    .video-container {
        height: 300px !important;
    }
    
    /* Unmute button - smaller on mobile */
    .mute-toggle.video-muted {
        width: 70px !important;
        height: 70px !important;
    }
    
    .mute-toggle.video-muted .audio-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .mute-toggle.video-unmuted {
        width: 42px !important;
        height: 42px !important;
    }
    
    /* Hero section text sizing */
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    /* Features grid - stack */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Pricing card */
    .pricing-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Even smaller logo for mobile */
    .logo-image {
        height: 30px;
    }
    
    /* Reduce padding */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Hero text even smaller */
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
    
    /* Video container smaller */
    .video-container {
        height: 250px !important;
    }
    
    /* Smaller unmute button */
    .mute-toggle.video-muted {
        width: 60px !important;
        height: 60px !important;
    }
    
    .mute-toggle.video-muted .audio-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .mute-toggle.video-unmuted {
        width: 38px !important;
        height: 38px !important;
        top: 12px !important;
        right: 12px !important;
    }
    
    /* Slideshow controls */
    .slideshow-controls button {
        font-size: 1.2rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .page-num {
        font-size: 0.85rem !important;
    }
    
    /* Section padding */
    section {
        padding: 3rem 0 !important;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}