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

html {
    overscroll-behavior: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    background: radial-gradient(ellipse at 50% 30%, #0366B8 0%, #024c96 50%, #013B73 100%);
    min-height: 100vh;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0px;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.section-divider {
    border: none;
    height: 1px;
    background-color: rgba(74, 85, 104, 0.2);
    margin: 24px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mb-24 {
    margin-bottom: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.description p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 400px;
    margin: 0 auto;
}

.downloads {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #0366B8;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(3, 102, 184, 0.3);
    width: 200px;
    justify-content: center;
}

.download-btn:hover {
    background: #024c96;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(3, 102, 184, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn .icon {
    font-size: 24px;
}

.download-btn .text {
    font-size: 16px;
}

.subtitle {
    font-weight: 400;
    color: rgba(26, 32, 44, 0.7);
    font-size: 24px;
    margin-bottom: 24px;
}

.mobile-info {
    text-align: center;
}

.mobile-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.mobile-downloads {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(74, 85, 104, 0.2);
    min-width: 120px;
    justify-content: center;
}

.mobile-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-btn .icon {
    opacity: 0.8;
}

.mobile-btn .text {
    font-size: 14px;
}



@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 40px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .description p {
        font-size: 16px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .downloads {
        flex-direction: column;
    }

    .mobile-downloads {
        flex-direction: column;
        align-items: center;
    }
}
