/* Import main styles */
@import url('main.css');

/* App-specific styles */
.xyun-section {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    padding-top: 80px;
}

.app-badge {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-right: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.app-developer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.xyun-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.xyun-screenshots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#novaCarousel {
    width: 300px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#novaCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

#novaCarousel .carousel-item {
    border-radius: 20px;
    overflow: hidden;
}

#novaCarousel .carousel-item img {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

#novaCarousel .carousel-indicators {
    bottom: 10px;
}

#novaCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 3px;
}

#novaCarousel .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9);
}

#novaCarousel .carousel-control-prev,
#novaCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

#novaCarousel .carousel-control-prev {
    left: 10px;
}

#novaCarousel .carousel-control-next {
    right: 10px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--white);
}

.download-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.download-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

.info-item i {
    color: #7c3aed;
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.download-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.download-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #7c3aed;
    border-color: #7c3aed;
}

.download-buttons .btn:hover {
    background: #6d28d9;
    border-color: #6d28d9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .app-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .app-info h1 {
        font-size: 2rem;
    }
    
    .xyun-screenshots {
        margin-top: 2rem;
    }
    
    #novaCarousel {
        width: 250px;
        height: 500px;
    }
    
    #novaCarousel .carousel-item img {
        width: 250px;
        height: 500px;
    }
    
    .download-info {
        justify-content: center;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .app-info h1 {
        font-size: 1.75rem;
    }
    
    .xyun-description {
        font-size: 1rem;
    }
    
    #novaCarousel {
        width: 200px;
        height: 400px;
    }
    
    #novaCarousel .carousel-item img {
        width: 200px;
        height: 400px;
    }
    
    .download-section h2 {
        font-size: 2rem;
    }
    
    .info-item {
        width: 100%;
        justify-content: center;
    }
} 