{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: #695f75;
    background-color: #fdfafd;
}

header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(227, 186, 219, 0.2);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b178a8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.hero {
    text-align: center;
    margin-bottom: 0rem;
    background: linear-gradient(135deg, #fef6ff 0%, #fff8f8 100%);
    padding: 3rem 1rem;
    border-radius: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 0.8rem;
    margin-bottom: 0rem;
    color: #9d6b93;
}

.hero h2 {
    margin-bottom: 0rem;
    margin-top: 0rem;
}

.hero p {
    font-size: 1.2rem;
    color: #8a7d96;
    max-width: 600px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0rem auto;
    border: 12px solid #e8d8e4;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 184, 207, 0.3);
    animation: float 6s ease-in-out infinite;
}

.screenshot-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.screenshots {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.screenshot {
    flex: 0 0 100%;
    height: 100%;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta {
    display: flex;
    justify-content: center;
}

.dots {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8d8e4;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b178a8;
    transform: scale(1.2);
}

.description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 184, 207, 0.15);
}

.description-text {
    height: 110px;
    overflow: hidden;
    transition: height 0.3s ease;
}

.description-text.expanded {
    height: auto;
}

.read-more {
    color: #b178a8;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #9d6b93;
    transform: translateY(-1px);
}

.reviews {
    overflow-x: auto;
    white-space: nowrap;
    padding: 2rem 1rem;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    display: inline-block;
    width: 300px;
    padding: 1.5rem;
    margin-right: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 184, 207, 0.15);
    white-space: normal;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
    border: 3px solid #f7e8f3;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #e4a7d6;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #b178a8 0%, #9d6b93 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(189, 147, 181, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(189, 147, 181, 0.3);
}

footer {
    background: #fef6ff;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid #f7e8f3;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}