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

body {
    font-family: 'Tajawal', 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #3b82f6;
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -100px;
    left: -100px;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 780px;
}

.app-card {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.app-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.05) rotate(2deg);
}

.app-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.app-subtitle {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 24px auto;
}

.specs-badge-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
}

/* Tools Grid Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.tool-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-box:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tool-emoji {
    font-size: 24px;
}

.tool-header h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

.tool-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.btn-compressor {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-compressor:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.btn-splitter {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-splitter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(239, 68, 68, 0.45);
    background: linear-gradient(135deg, #f87171 0%, #b91c1c 100%);
}

.download-icon {
    width: 20px;
    height: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: right;
}

.feature-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.feature-item h3 {
    font-size: 15px;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 12px;
    color: #64748b;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}
