/* Screenshots Section */
.screenshots {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.screenshots-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: #000;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 3rem auto 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
    padding: 1rem 0;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-slide.tablet {
    flex: 0 0 480px;
    height: 360px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: #000;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.8);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

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

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 5px;
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot-item:nth-child(2) {
    transform: translateY(30px);
}

.screenshot-item:nth-child(2):hover {
    transform: translateY(20px) scale(1.02);
}

.screenshot-item:nth-child(3) {
    transform: translateY(60px);
}

.screenshot-item:nth-child(3):hover {
    transform: translateY(50px) scale(1.02);
}

.screenshot-frame {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.screenshot-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.screenshot-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.screenshot-screen {
    padding: 2rem 1rem 1rem;
    height: 100%;
}

.mini-header {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mini-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.65rem;
}

.mini-item-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px;
    margin: 0 auto 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.mini-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
}

.mini-cover {
    width: 24px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 4px;
    flex-shrink: 0;
}

.mini-progress {
    flex: 1;
}

.mini-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.mini-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.mini-stat-value {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

