/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/pattern.svg') repeat;
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .hero-image {
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.feature-card {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Product Cards */
.product-card {
    border-radius: 15px;
    overflow: hidden;
}

.product-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .price {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.product-card .play-button {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .play-button {
    opacity: 1;
}

/* Market Section */
.market-card {
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.market-card:hover {
    transform: translateY(-10px);
}

.market-card .icon-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.market-card .icon-list i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    margin-left: 1rem;
}

/* Social Section */
.social-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.social-card:hover i,
.social-card:hover h5 {
    color: white !important;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/pattern.svg') repeat;
    opacity: 0.1;
}

.newsletter-form .form-control {
    border-radius: 30px;
    padding: 1rem 1.5rem;
    height: auto;
}

.newsletter-form .btn {
    border-radius: 30px;
    padding: 1rem 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .product-card img {
        height: 250px;
    }
}