* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: linear-gradient(145deg, #f8faff 0%, #eef2f7 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-card {
    max-width: 820px;
    width: 100%;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 48px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25), inset 0 1px 2px rgba(255,255,255,0.8);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.logo-icon {
    font-size: 2.8rem;
    color: #d97706;
    filter: drop-shadow(0 6px 8px rgba(217,119,6,0.2));
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #92400e, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 2.5rem;
    padding-left: 0.3rem;
    border-left: 4px solid #d97706;
    padding-left: 1rem;
    font-weight: 400;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
    background: white;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.9);
}

.input-group i {
    color: #94a3b8;
    font-size: 1.3rem;
    align-self: center;
}

.url-input {
    flex: 1;
    min-width: 240px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    background: transparent;
    color: #0f172a;
}

.url-input::placeholder {
    color: #94a3b8;
    font-weight: 300;
}

.download-btn {
    background: #d97706;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: 0.15s;
    box-shadow: 0 10px 18px -8px #b45309;
    border: 1px solid rgba(255,255,255,0.2);
}

.download-btn:hover {
    background: #b45309;
    transform: scale(1.02);
    box-shadow: 0 14px 22px -8px #92400e;
}

.platforms {
    margin: 2.5rem 0 1.8rem 0;
}

.platforms h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.icon-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem 2rem;
    align-items: center;
    justify-content: flex-start;
}

.icon-cloud span {
    font-size: 1.9rem;
    color: #334155;
    opacity: 0.7;
    transition: 0.1s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.6rem;
    filter: grayscale(0.3);
}

.icon-cloud span i {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.icon-cloud span small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #475569;
    opacity: 0.8;
}

.feature-box {
    background: #f1f5f9b3;
    border-radius: 30px;
    padding: 1.8rem 1.5rem;
    margin: 2rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    border: 1px solid #ffffffaa;
}

.feature-item {
    flex: 1 1 150px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #d97706;
    background: white;
    padding: 0.6rem;
    border-radius: 20px;
    box-shadow: 0 8px 12px -8px #d97706;
}

.feature-item h4 {
    font-size: 1rem;
    margin: 0.8rem 0 0.3rem;
    color: #0f172a;
}

.feature-item p {
    font-size: 0.85rem;
    color: #475569;
}

.footer-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #cbd5e1;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-note a {
    color: #d97706;
    text-decoration: none;
    font-weight: 500;
}

.footer-note a:hover {
    text-decoration: underline;
}

.disclaimer {
    color: #94a3b8;
    font-size: 0.75rem;
}

.live-stat {
    background: #d97706;
    border-radius: 60px;
    padding: 0.3rem 1.2rem;
    font-size: 0.85rem;
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.alert {
    background: #e6f7e6;
    border: 1px solid #a3d8a3;
    color: #2d6a2d;
    padding: 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    text-align: center;
}