
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #101828 0%, #141b2b 50%, #172130 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Anton', Arial, sans-serif;
}


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

::selection {
    background: #101828;
    color: white;
}

/* ========================================
   HEADER
   ======================================== */
header {
    background: rgba(16, 24, 40, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.3);
}

header.scrolled {
    background: rgba(16, 24, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(16, 24, 40, 0.4);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: whitesmoke;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    transition: opacity 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #101828;
}

.work-button {
    background: transparent;
    color: white !important;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.work-button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button {
    background: white;
    color: #101828 !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    font-size: 14px;
}

.cta-button:hover {
    background: white;
    color: #101828 !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 120px 0 5px;
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.soccer-ball {
    text-align: center;
    display: flex
}

.logoAlgo{
    width: 128px;
    height: 128px;
    text-align: center;
    align-items: center;
}

.hero h1 {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #101828;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    border: 2px solid #101828;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
    background: #0f1419;
    color: white;
    border-color: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.4);
}

.download-btn.android {
    background: #101828;
    color: white;
    border: 2px solid #101828;
}

.download-btn.android:hover {
    background: #0f1419;
    border-color: #0f1419;
    color: white;
}

.btn-text small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.btn-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.scroll-arrow {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 0.8;
}

.scroll-arrow-icon {
    width: 24px;
    height: 24px;
    color: white;
    animation: bounce 2s infinite;
    margin-bottom: 8px;
}

.scroll-arrow-text {
    color: white;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
}

/* Animazione saltellante */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-arrow {
        margin-top: 60px;
    }
    
    .scroll-arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .scroll-arrow-text {
        font-size: 12px;
    }
}
/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 80px 0;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.feature-card {
    flex: 1;
    padding: 60px 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.gradient-bg {
    background: linear-gradient(135deg, #101828 0%, #131b24 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card.white-bg {
    background: rgba(255, 255, 255, 0.95);
    color: #101828;
    border: 1px solid rgba(16, 24, 40, 0.1);
}

.feature-content {
    margin-bottom: 40px;
}

.feature-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: auto;
    height: 400px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.feature-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* ========================================
   CAROUSEL SECTION
   ======================================== */
.carousel-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: auto;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 600px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 40px 20px;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.carousel-slide:not(.active) {
    position: absolute;
    z-index: 1;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.slide-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
    max-height: 500px;
    object-fit: contain;
}

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

.slide-content {
    flex: 1;
    color: white;
    max-width: 500px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content.slide-end {
    text-align: right;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
}

.slide-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.input-group button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.input-group button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-twitch {
    background: #9146ff;
    color: white !important;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
    border: none;
    cursor: pointer;
    width: auto;
    min-width: auto;
    text-align: center;
}

.btn-twitch:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
    text-decoration: none;
}

.btn-twitch:visited {
    color: white !important;
}

.btn-twitch:active {
    color: white !important;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.carousel-slide .download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #101828;
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    border: 2px solid #101828;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.carousel-slide .download-btn:hover {
    background: #0f1419;
    color: white !important;
    border-color: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.4);
    text-decoration: none;
}

.carousel-slide .download-btn:visited {
    color: white !important;
}

.carousel-slide .download-btn:active {
    color: white !important;
}

.carousel-slide .download-btn.android {
    background: #101828;
    color: white !important;
    border: 2px solid #101828;
}

.carousel-slide .download-btn.android:hover {
    background: #0f1419;
    border-color: #0f1419;
    color: white !important;
}

.carousel-slide .download-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.carousel-indicators button.active {
    transform: scale(1.2);
    background: transparent;
    border: 2px solid white;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: transparent; 
    color: rgba(255, 255, 255, 0.8); 
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

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

.testimonials h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.screenshots-collage {
    position: relative;
    margin-bottom: 50px;
    padding: 30px 15px;
    min-height: 400px;
    overflow: hidden;
    background: transparent;
}

.screenshot-item {
    position: absolute;
    transition: all 0.4s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.05) !important;
    z-index: 10;
    filter: brightness(1.05);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.2);
    transition: all 0.3s ease;
    background: white;
}

.screenshot-1 {
    top: 20px;
    left: 5%;
    width: 200px;
    height: 110px;
    transform: rotate(-2deg);
}

.screenshot-2 {
    top: 30px;
    right: 8%;
    width: 170px;
    height: 90px;
    transform: rotate(3deg);
}

.screenshot-3 {
    top: 180px;
    left: 15%;
    width: 140px;
    height: 60px;
    transform: rotate(-1deg);
}

.screenshot-4 {
    top: 90px;
    left: 30%;
    width: 180px;
    height: 120px;
    transform: rotate(1deg);
}

.screenshot-5 {
    top: 220px;
    right: 12%;
    width: 220px;
    height: 150px;
    transform: rotate(-2deg);
}

.screenshot-6 {
    top: 300px;
    left: 8%;
    width: 150px;
    height: 70px;
    transform: rotate(2deg);
}

.screenshot-7 {
    top: 210px;
    left: 42%;
    width: 160px;
    height: 75px;
    transform: rotate(-1deg);
}

.screenshot-8 {
    top: 60px;
    left: 58%;
    width: 180px;
    height: 110px;
    transform: rotate(2deg);
}

.screenshot-9 {
    top: 140px;
    right: 5%;
    width: 190px;
    height: 140px;
    transform: rotate(-3deg);
}

.screenshot-10 {
    top: 260px;
    left: 35%;
    width: 140px;
    height: 75px;
    transform: rotate(1deg);
}

.screenshot-11 {
    top: 320px;
    right: 25%;
    width: 200px;
    height: 120px;
    transform: rotate(-1deg);
}

.screenshot-12 {
    top: 10px;
    left: 22%;
    width: 180px;
    height: 120px;
    transform: rotate(2deg);
}

.final-cta-content {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.final-cta-content .download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #101828;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    border: 2px solid #101828;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.final-cta-content .download-btn:hover {
    background: #0f1419;
    color: white;
    border-color: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.4);
}

.final-cta-content .download-btn.android {
    background: #101828;
    color: white;
    border: 2px solid #101828;
}

.final-cta-content .download-btn.android:hover {
    background: #0f1419;
    border-color: #0f1419;
    color: white;
}

.final-cta-content .btn-text small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.final-cta-content .btn-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, #0a0f1a 0%, #101828 50%, #1a242f 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .features-container {
        padding: 0 30px;
    }
    
    .feature-card {
        padding: 50px 35px;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-image img {
        height: 350px;
    }

    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-slides {
        min-height: 500px;
    }
    
    .carousel-slide {
        min-height: 500px;
        gap: 40px;
        padding: 30px 15px;
    }
    
    .slide-content {
        min-height: 250px;
    }
    
    .slide-image {
        min-height: 250px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        min-height: 3rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        min-height: 3.3rem;
    }
    
    .slide-image img {
        max-width: 320px;
        max-height: 400px;
    }

    .carousel-control,
    .carousel-control.prev,
    .carousel-control.next {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .carousel-control:hover,
    .carousel-control.prev:hover,
    .carousel-control.next:hover {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    .carousel-control.prev {
        left: 15px;
    }
    
    .carousel-control.next {
        right: 15px;
    }
    
    .btn-twitch {
        padding: 12px 25px;
        font-size: 16px;
        min-width: 180px;
    }

    .screenshots-collage {
        min-height: 350px;
        padding: 25px 12px;
    }
    
    .screenshot-item {
        transform: scale(0.85) !important;
    }
    
    .screenshot-item:hover {
        transform: scale(0.9) !important;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-text {
        display: none;
    }
    
    nav ul {
        gap: 8px;
    }
    
    .work-button, 
    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
        min-width: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-container {
        padding: 0 20px;
    }

    .features-row {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .feature-image img {
        height: 300px;
    }
    
    .features-row:first-child .feature-card:first-child {
        order: 1;
    }
    
    .features-row:first-child .feature-card:last-child {
        order: 2;
    }
    
    .features-row:last-child .feature-card:first-child {
        background: linear-gradient(135deg, #101828 0%, #131b24 100%) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        order: 3;
    }
    
    .features-row:last-child .feature-card:last-child {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #101828 !important;
        border: 1px solid rgba(16, 24, 40, 0.1) !important;
        order: 4;
    }
    
    .features-row:last-child .feature-card:first-child:hover {
        color: white !important;
    }
    
    .features-row:last-child .feature-card:last-child:hover {
        color: #101828 !important;
    }

    .carousel-section {
        padding: 60px 0;
    }
    
    .slide-end h1 {
        padding-bottom: 40px;
    }
    
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-slides {
        height: 700px;
        min-height: 700px;
    }
    
    .carousel-slide {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: 700px;
        min-height: 700px;
        padding: 40px 10px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .carousel-slide.active {
        position: absolute;
    }
    
    .slide-content {
        order: 1;
        max-width: 100%;
        width: 100%;
        min-height: 300px;
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    .slide-image {
        order: 2;
        width: 100%;
        min-height: 280px;
        margin-top: 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        min-height: 2.4rem;
        text-align: center;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        min-height: 3rem;
        text-align: center;
    }
    
    .slide-content.slide-end {
        text-align: center;
    }
    
    .slide-image img {
        max-width: 300px;
        max-height: 250px;
        border-radius: 15px;
    }
    
    .carousel-control,
    .carousel-control.prev,
    .carousel-control.next {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-control:hover,
    .carousel-control.prev:hover,
    .carousel-control.next:hover {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 20px;
    }
    
    .carousel-indicators button {
        width: 15px;
        height: 15px;
        touch-action: manipulation;
        background: transparent;

    }
    
    .input-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    
    .input-group input {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .input-group button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
        width: 100%;
    }
    
    .carousel-slide .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .btn-twitch {
        padding: 12px 25px;
        font-size: 16px;
        display: block;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
        min-width: auto;
    }

    .testimonials {
        padding: 60px 0 40px;
        background: transparent !important;
    }
    
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .screenshots-collage {
        position: relative;
        margin-bottom: 30px;
        padding: 15px 10px;
        min-height: 280px;
        max-height: 300px;
        overflow: hidden;
        background: transparent !important;
    }
    
    .screenshot-item {
        position: absolute;
        transition: all 0.4s ease;
        cursor: pointer;
    }
    
    .screenshot-item:hover {
        transform: scale(1.05) !important;
        z-index: 10;
        filter: brightness(1.05);
    }
    
    .screenshot-item:active {
        transform: scale(1.1) !important;
        z-index: 15;
    }
    
    .screenshot-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(16, 24, 40, 0.2);
        transition: all 0.3s ease;
        background: white;
    }
    
    .screenshot-1 {
        top: 15px;
        left: 8%;
        width: 120px;
        height: 70px;
        transform: rotate(-2deg);
    }
    
    .screenshot-2 {
        top: 20px;
        right: 12%;
        width: 100px;
        height: 60px;
        transform: rotate(3deg);
    }
    
    .screenshot-3 {
        top: 110px;
        left: 15%;
        width: 90px;
        height: 50px;
        transform: rotate(-1deg);
    }
    
    .screenshot-4 {
        top: 60px;
        left: 30%;
        width: 110px;
        height: 75px;
        transform: rotate(1deg);
    }
    
    .screenshot-5 {
        top: 140px;
        right: 8%;
        width: 130px;
        height: 85px;
        transform: rotate(-2deg);
    }
    
    .screenshot-6 {
        top: 180px;
        left: 5%;
        width: 85px;
        height: 45px;
        transform: rotate(2deg);
    }
    
    .screenshot-7 {
        top: 130px;
        left: 35%;
        width: 95px;
        height: 55px;
        transform: rotate(-1deg);
    }
    
    .screenshot-8 {
        top: 35px;
        left: 55%;
        width: 105px;
        height: 70px;
        transform: rotate(2deg);
    }
    
    .screenshot-9 {
        top: 90px;
        right: 25%;
        width: 115px;
        height: 80px;
        transform: rotate(-3deg);
    }
    
    .screenshot-10 {
        top: 160px;
        left: 25%;
        width: 85px;
        height: 50px;
        transform: rotate(1deg);
    }
    
    .screenshot-11 {
        top: 200px;
        right: 20%;
        width: 120px;
        height: 75px;
        transform: rotate(-1deg);
    }
    
    .screenshot-12 {
        top: 10px;
        left: 22%;
        width: 100px;
        height: 65px;
        transform: rotate(2deg);
    }
    
    .final-cta-content {
        margin-top: 20px;
    }
    
    .final-cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .final-cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .final-cta-content .download-btn {
        max-width: 260px;
        padding: 10px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (480px)
   ======================================== */
@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    nav ul {
        gap: 6px;
    }
    
    .work-button, 
    .cta-button {
        padding: 6px 12px;
        font-size: 11px;
    }

    .features-container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-image img {
        height: 250px;
    }
    
    .features-row:last-child .feature-card:first-child {
        background: linear-gradient(135deg, #101828 0%, #131b24 100%) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .features-row:last-child .feature-card:last-child {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #101828 !important;
        border: 1px solid rgba(16, 24, 40, 0.1) !important;
    }

    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .carousel-slides {
        height: 650px;
        min-height: 650px;
    }
    
    .carousel-slide {
        height: 650px;
        min-height: 650px;
        gap: 25px;
        padding: 30px 10px;
    }
    
    .slide-content {
        min-height: 280px;
    }
    
    .slide-image {
        min-height: 240px;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        min-height: 2.3rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.4;
        min-height: 2.85rem;
    }
    
    .slide-image img {
        max-width: 260px;
        max-height: 220px;
        border-radius: 12px;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 15px;
    }
    
    .input-group input,
    .input-group button {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .btn-twitch {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .carousel-slide .download-btn {
        max-width: 250px;
        padding: 10px 16px;
    }

    .testimonials {
        padding: 40px 0 30px;
        background: transparent !important;
    }
    
    .testimonials h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .screenshots-collage {
        min-height: 240px;
        max-height: 260px;
        padding: 10px 8px;
        margin-bottom: 25px;
        background: transparent !important;
    }
    
    .screenshot-1 {
        width: 100px;
        height: 60px;
        top: 12px;
        left: 5%;
        transform: rotate(-2deg);
    }
    
    .screenshot-2 {
        width: 85px;
        height: 50px;
        top: 15px;
        right: 8%;
        transform: rotate(3deg);
    }
    
    .screenshot-3 {
        width: 75px;
        height: 40px;
        top: 90px;
        left: 12%;
        transform: rotate(-1deg);
    }
    
    .screenshot-4 {
        width: 95px;
        height: 65px;
        top: 50px;
        left: 28%;
        transform: rotate(1deg);
    }
    
    .screenshot-5 {
        width: 110px;
        height: 70px;
        top: 120px;
        right: 5%;
        transform: rotate(-2deg);
    }
    
    .screenshot-6 {
        width: 70px;
        height: 35px;
        top: 150px;
        left: 3%;
        transform: rotate(2deg);
    }
    
    .screenshot-7 {
        width: 80px;
        height: 45px;
        top: 110px;
        left: 32%;
        transform: rotate(-1deg);
    }
    
    .screenshot-8 {
        width: 90px;
        height: 60px;
        top: 30px;
        left: 52%;
        transform: rotate(2deg);
    }
    
    .screenshot-9 {
        width: 95px;
        height: 65px;
        top: 75px;
        right: 22%;
        transform: rotate(-3deg);
    }
    
    .screenshot-10 {
        width: 70px;
        height: 40px;
        top: 135px;
        left: 22%;
        transform: rotate(1deg);
    }
    
    .screenshot-11 {
        width: 100px;
        height: 60px;
        top: 170px;
        right: 18%;
        transform: rotate(-1deg);
    }
    
    .screenshot-12 {
        width: 85px;
        height: 55px;
        top: 8px;
        left: 20%;
        transform: rotate(2deg);
    }
    
    .final-cta-content h2 {
        font-size: 20px;
    }
    
    .final-cta-content p {
        font-size: 13px;
    }
    
    .final-cta-content .download-btn {
        max-width: 240px;
        padding: 9px 14px;
    }
}


@media (max-width: 768px) {
    .testimonials,
    .testimonials::before,
    .testimonials .container,
    .screenshots-collage {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
    }
}

@media (max-width: 480px) {
    .testimonials,
    .testimonials::before,
    .testimonials .container,
    .screenshots-collage {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
    }
}
