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

:root {
    --primary-color: #20a7db;
    --primary-dark: #1c96c5;
    --secondary-color: #62c1e5;
    --accent-color: #a0d9ef;
    --gradient-primary: linear-gradient(135deg, #20a7db 0%, #62c1e5 100%);
    --gradient-secondary: linear-gradient(135deg, #a0d9ef 0%, #1c96c5 100%);
    --gradient-bg: linear-gradient(135deg, #abe7ff 0%, #1c96c5 50%, #bce6f6 100%);
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f0f6fd;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    color: white;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 200px;
}

.btn-large i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px; /* Account for navbar */
    margin-bottom: 5rem;
}

/* Fullscreen Video Background */
.hero-video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 110vh;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
    box-shadow: none;
    border: none;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 80vh;
    padding-bottom: 10vh;
}

.hero-video {
    display: none; /* Hide the container as video is now fullscreen background */
}

.hero-text {
    color: white;
    position: relative;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

/* Main Hero Content (now visible from start) */
.hero-main-content {
    background-color: rgba(112, 112, 112, 0.5); /* Translucent white */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    border-radius: 1rem; /* Rounded corners */
    padding: 2.5rem; /* Inner spacing */
    box-shadow: var(--shadow-xl); /* Depth */
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    /* text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4); */
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    /* opacity: 0.95; */
    line-height: 1.6;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; /* Centralize buttons */
}

.hero-buttons .btn {
    flex: 1; /* Allow buttons to grow and shrink */
    max-width: 220px; /* Limit maximum width for larger screens */
    min-width: 180px; /* Ensure a minimum width */
    text-align: center; /* Center text within buttons */
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Video Container Styles */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Carousel Styles */
.features-carousel {
    position: relative;
    max-width: 100%;
    margin-top: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 1rem;
}

.features-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.features-carousel .feature-card {
    flex: 0 0 100%;
    min-width: 0; /* Prevents flex items from shrinking below content size */
}

/* Responsive carousel - show multiple cards on larger screens */
@media (min-width: 768px) {
    .features-carousel .feature-card {
        flex: 0 0 calc((100% - 1.5rem) / 2); /* Show 2 cards on tablets with gap */
    }
    
    .features-track {
        align-items: stretch; /* Make cards same height */
    }
}

@media (min-width: 1024px) {
    .features-carousel .feature-card {
        flex: 0 0 calc((100% - 3rem) / 3); /* Show 3 cards on desktop with gaps */
    }
}

@media (min-width: 1200px) {
    .features-carousel .feature-card {
        flex: 0 0 calc((100% - 4.5rem) / 4); /* Show all 4 cards on large screens with gaps */
    }
    
    .carousel-controls {
        display: none; /* Hide controls when all cards are visible */
    }
    
    .carousel-dots {
        display: none; /* Hide dots when all cards are visible */
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    pointer-events: all;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(45, 212, 191, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Screenshots Section */
.screenshots {
    background: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.screenshot-image {
    max-width: 250px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.02);
}

.screenshot-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.screenshot-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-bg);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}





/* Responsive Design */
@media (min-width: 769px) {
    .hero-text {
        text-align: center;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text {
        text-align: center;
        max-width: 90%;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .features-carousel {
        margin-top: 2rem;
    }
    
    .carousel-controls {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

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

    .screenshot-image {
        height: 400px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-large {
        min-width: unset;
        align-items: center;
    }

}

/* Animation and Scroll Effects */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .screenshot-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .feature-card:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .feature-card:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    .feature-card:nth-child(4) {
        animation-delay: 0.3s;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* waytorch 3D Rotation Animation Styles */
.waytorch-banner {
    width: 100%;
    min-height: 85vh;
    text-align: center;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 2rem 0;
}

/* Floating Header Card */
.floating-header-card {
    position: absolute;
    top: 5%;
    left: 0%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 220px;
    text-align: left;
    animation: fadeIn 0.8s ease-out;
}

.floating-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.floating-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

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

.waytorch-slider {
    position: absolute;
    width: 200px;
    height: 260px;
    top: 15%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.8s ease-in-out;
    z-index: 3;
}

/* waytorch Navigation Controls */
.waytorch-nav-controls {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.waytorch-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.waytorch-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.waytorch-nav-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.waytorch-dots {
    position: absolute;
    bottom: 0.5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.waytorch-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.waytorch-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.waytorch-item {
    position: absolute;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(350px);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    background: white;
}



.waytorch-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
}

.waytorch-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.waytorch-item.active-item .waytorch-item-overlay, /* Show overlay for active item */
.waytorch-item.hover-active .waytorch-item-overlay { /* Show overlay on hover */
    transform: translateY(0);
}

.waytorch-item-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.waytorch-item-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* Text content below images */
.waytorch-content-below {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    text-align: center;
    z-index: 4;
}

.waytorch-text-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waytorch-text-item.active {
    display: block;
    opacity: 1;
}

.waytorch-text-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.waytorch-text-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.waytorch-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 100vw);
    height: max-content;
    padding: 2rem;
    z-index: 2;
}

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

.waytorch-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.waytorch-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.waytorch-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.waytorch-feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.waytorch-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.waytorch-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for waytorch rotation */
@media screen and (max-width: 1023px) {
    .waytorch-slider {
        width: 200px;
        height: 254px;
        left: calc(50% - 100px);
    }
    
    .waytorch-item {
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(380px);
    }
    

    
    .waytorch-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .waytorch-banner {
        min-height: 85vh;
        padding: 1.5rem 0;
    }
    
    .floating-header-card {
        top: 3%;
        left: 0%;
        max-width: 250px;
        padding: 1rem 1.5rem;
    }
    
    .floating-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .floating-description {
        font-size: 0.85rem;
    }
    
    .waytorch-slider {
        width: 170px;
        height: 216px;
        left: calc(50% - 85px);
        top: 25%;
    }
    
    .waytorch-item {
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(320px);
    }
    

    
    .waytorch-nav-controls {
        bottom: -1%;
    }
    
    .waytorch-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .waytorch-nav-btn i {
        font-size: 1rem;
    }
    
    .waytorch-dots {
        bottom: -1%;
    }
    
    .waytorch-item-overlay h3 {
        font-size: 1rem;
    }
    
    .waytorch-item-overlay p {
        font-size: 0.8rem;
    }
    
    .waytorch-content-below {
        bottom: 8%;
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .waytorch-text-item h3 {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
    }
    
    .waytorch-text-item p {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
    }
}

@media screen and (max-width: 480px) {
    .floating-header-card {
        top: 3%;
        left: 2%;
        max-width: 250px;
        padding: 0.75rem 1.25rem;
    }
    
    .floating-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .floating-description {
        font-size: 0.8rem;
    }
    
    .waytorch-slider {
        width: 150px;
        height: 190px;
        left: calc(50% - 75px);
    }
    
    .waytorch-item {
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(280px);
    }
    

    
    .waytorch-nav-controls {
        bottom: 1%;
        gap: 0.5rem;
    }
    
    .waytorch-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .waytorch-nav-btn i {
        font-size: 0.9rem;
    }
    
    .waytorch-dots {
        bottom: -1.5%;
    }
    
    .waytorch-dot {
        width: 10px;
        height: 10px;
    }
    
    .waytorch-content-below {
        bottom: 10%;
        max-width: 95%;
        padding: 0 0.5rem;
    }
    
    .waytorch-text-item h3 {
        font-size: 1.1rem;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
    }
    
    .waytorch-text-item p {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
    }
} 