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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .content-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .carousel-container {
        flex: 0 0 auto;
        width: 500px;
    }

    .carousel {
        max-width: 500px;
    }

    .text-content {
        flex: 1;
        max-width: 500px;
        text-align: left;
    }

    .text-content .description {
        text-align: left;
        padding: 0;
    }

    .text-content .features-list li {
        margin: 8px 0;
    }

    .text-content .cta-button {
        margin-top: 10px;
    }
}

.title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.title-link:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ff6b9d, #c06c84, #f67280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
    cursor: pointer;
}

.carousel-container {
    margin-bottom: 40px;
}

.carousel-link {
    text-decoration: none;
    display: block;
}

.carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.carousel-images {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: #000;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #ff6b9d;
    width: 14px;
    height: 14px;
}

.scroll-indicator {
    display: none;
    margin-top: 20px;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2.5rem;
    color: #ff6b9d;
    opacity: 0.8;
}

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

.text-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.text-link:hover {
    transform: translateY(-5px);
}

.description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 40px;
    padding: 0 20px;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.features-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.features-link:hover {
    transform: translateY(-3px);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    font-size: 1.2rem;
    color: #f0f0f0;
}

.features-list li {
    padding: 12px 20px;
    margin: 8px auto;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.features-list li:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, #ff6b9d, #c06c84);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, #ff8fb3, #d08199);
}

@media (max-width: 1023px) {
    body {
        padding: 10px;
    }

    .carousel-container {
        width: 80%;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel {
        width: 100%;
    }

    .scroll-indicator {
        display: block;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .features-list {
        font-size: 1.1rem;
    }

    .features-list li {
        padding: 10px 15px;
        max-width: 350px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .description {
        font-size: 1rem;
    }

    .features-list {
        font-size: 1rem;
    }

    .features-list li {
        padding: 8px 12px;
        max-width: 300px;
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
}
