.homepage-section {
    padding: 2rem 2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(0.2rem, 2vw, 0.8rem);
    margin: 0;
    line-height: 0.9;
    background: linear-gradient(to bottom, #fff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.8rem);
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    margin-top: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto;
}

.hero-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.hero-images-grid img:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    color: #a0a0c0;
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.8;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 3rem;
    width: 100%;
    margin-top: 4rem;
}

.screenshot-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.screenshot-item:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-cyan);
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: white;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.screenshot-item:hover .screenshot-caption {
    transform: translateY(0);
}

.screenshot-caption h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.screenshot-caption p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #ccc;
    opacity: 0.9;
}

.setup-card {
    background: rgba(10, 10, 30, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 40px;
    padding: 4rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.setup-card::before {
    content: "NO NEED TO INSTALL, JUST RIDE!";
    position: absolute;
    top: 50px;
    right: -100px;
    background: linear-gradient(45deg, var(--neon-magenta), #ff0055);
    color: #fff;
    padding: 8px 100px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    z-index: 1;
}

@media (max-width: 600px) {
    .setup-card::before {
        display: none;
    }
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}

.step-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    line-height: 1;
    opacity: 0.8;
}

.step-text h3 {
    margin: 0 0 1rem 0;
    color: white;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.step-text p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta-actions {
    margin-top: 1rem;
}

@media (max-width: 1600px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .homepage-section {
        padding: 4rem 1.5rem;
    }
    .setup-card {
        padding: 2.5rem 1.5rem;
    }
    .screenshot-caption {
        padding: 1rem;
        transform: translateY(0);
    }
    .screenshot-caption h3 {
        font-size: 1.3rem;
    }
    .screenshot-caption p {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
}

