* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background Blur Effects */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blur-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 150, 150, 0.8) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.6) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.7) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.orb-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(130, 130, 130, 0.5) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: 15s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.content-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    box-sizing: border-box;
}

/* Logo */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-logo {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    background: transparent;
    image-rendering: auto;
}

/* Title */
.app-title {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
    text-align: center;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    align-items: center;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.store-badge {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.app-store-badge {
    height: 40px;
    width: auto;
}

.button-text {
    font-weight: 500;
}

/* Rating */
.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stars-display {
    display: flex;
    gap: 4px;
    font-size: 24px;
    color: #ffd700;
}

.star-icon {
    color: #ffd700;
}

.rating-value {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.rating-text {
    font-size: 14px;
    color: #888888;
    font-weight: 300;
}

/* Reviews */
.reviews-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.review-item {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    min-width: 300px;
    max-width: 300px;
    width: 300px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: #2a2a2a;
    background: #111111;
    transform: translateY(-2px);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.review-date {
    font-size: 13px;
    color: #666666;
    font-weight: 300;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    font-size: 16px;
}

.star-filled {
    color: #ffd700;
}

.star-empty {
    color: #333333;
}

.review-content {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    flex-grow: 1;
}

/* Responsive */
@media (min-width: 1025px) {
    .reviews-container {
        flex-wrap: nowrap !important;
        flex-direction: row !important;
    }

    .review-item {
        flex: 0 0 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        width: 300px !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .reviews-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .review-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 60px 20px;
    }

    .content-container {
        gap: 60px;
    }

    .features-section {
        padding: 40px 0;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        padding: 32px 24px;
    }

    .app-logo {
        width: 100px;
        height: 100px;
        border-radius: 22px;
    }

    .download-buttons {
        max-width: 100%;
    }

    .reviews-container {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }

    .review-item {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .rating-value {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 30px 15px;
    }

    .content-container {
        gap: 30px;
    }

    .app-title {
        font-size: 56px;
    }

    .stars-display {
        font-size: 20px;
    }

    .rating-value {
        font-size: 36px;
    }
}

/* Scrollbar */
.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Features Section */
.features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.features-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-item:hover {
    border-color: #2a2a2a;
    background: #111111;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 48px;
    line-height: 1;
    filter: grayscale(0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.feature-name {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.feature-desc {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}