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

a {
    text-decoration: none;
}

svg {
    width: 40px;
    height: 40px;
    opacity: .8;
}

.app-logo svg {
    width: 128px;
    height: 128px;
    opacity: 1;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.seo {
    margin-top: 30px !important;
    color: #4a5568;
    text-align: right;
}

.download-section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.download-option:hover {
    background: #f9d8ff;
    transform: translateY(-2px);
}

.download-option.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-option.featured:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.download-option.suggested {
    background: linear-gradient(135deg, #ae02cc 0%, #590468 100%);
    color: white;
    border: 2px solid #5d036d;
    position: relative;
    overflow: hidden;
}

.download-option.suggested::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.download-option.suggested:hover {
    background: linear-gradient(135deg, #9d02b8 0%, #520360 100%);
    transform: translateY(-3px);
}

.download-option.webapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.download-option.webapp:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.download-option:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.platform-desc {
    font-size: 14px;
    color: #4b4b4b;
}

.version-badge {
    background: #e53e3e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.app-section {
    text-align: center;
}

.app-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.app-subtitle {
    font-size: 20px;
    color: #718096;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 12px;
    color: #718096;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-title {
        font-size: 36px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

.download-btn {
    background: linear-gradient(135deg, #ae02cc 0%, #667eea 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(174, 2, 204, 0.3);
}
