:root {
    --bg-dark: #0a0a0c;
    --bg-card: #151518;
    --primary-yellow: #fcd535;
    --primary-hover: #e5be20;
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.download-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 40px 24px;
    text-align: center;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
}

.content {
    position: relative;
    z-index: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 48px 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: var(--primary-yellow);
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.download-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 213, 53, 0.25);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apk-icon {
    width: 28px;
    height: 28px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M420.2 92.9l36.5-63.3c3.7-6.5-1-14.6-8.5-13.8L387 23.3c-29.3-13.4-62.2-20.9-97.1-20.9-35.3 0-68.5 7.6-98.1 21.2L127.3 15.8c-7.4-.8-12.2 7.3-8.5 13.8l36.5 63.3C66.7 131.7 6.4 219.1 1.2 322h573.7c-5.2-102.9-65.5-190.3-154.7-229.1zM187 266.3c-15.6 0-28.2-12.6-28.2-28.2 0-15.6 12.6-28.2 28.2-28.2s28.2 12.6 28.2 28.2c0 15.6-12.6 28.2-28.2 28.2zm202 0c-15.6 0-28.2-12.6-28.2-28.2 0-15.6 12.6-28.2 28.2-28.2s28.2 12.6 28.2 28.2c0 15.6-12.6 28.2-28.2 28.2zM2.8 354h570.4c0 86.8-70.4 157.2-157.2 157.2H160C73.2 511.2 2.8 440.8 2.8 354z"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M420.2 92.9l36.5-63.3c3.7-6.5-1-14.6-8.5-13.8L387 23.3c-29.3-13.4-62.2-20.9-97.1-20.9-35.3 0-68.5 7.6-98.1 21.2L127.3 15.8c-7.4-.8-12.2 7.3-8.5 13.8l36.5 63.3C66.7 131.7 6.4 219.1 1.2 322h573.7c-5.2-102.9-65.5-190.3-154.7-229.1zM187 266.3c-15.6 0-28.2-12.6-28.2-28.2 0-15.6 12.6-28.2 28.2-28.2s28.2 12.6 28.2 28.2c0 15.6-12.6 28.2-28.2 28.2zm202 0c-15.6 0-28.2-12.6-28.2-28.2 0-15.6 12.6-28.2 28.2-28.2s28.2 12.6 28.2 28.2c0 15.6-12.6 28.2-28.2 28.2zM2.8 354h570.4c0 86.8-70.4 157.2-157.2 157.2H160C73.2 511.2 2.8 440.8 2.8 354z"/></svg>') no-repeat center;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.primary-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.secondary-text {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

.notice {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}
