body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #262630 0%, #3a3a4d 100%);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 40px 20px 0 20px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    background-image: url('icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #b3b3cc;
}

.cta-btn {
    background: linear-gradient(90deg, #5a5aff 0%, #7f53ff 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(90, 90, 255, 0.15);
    transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #7f53ff 0%, #5a5aff 100%);
    transform: translateY(-2px) scale(1.04);
}

.products-section {
    max-width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.product-card {
    background: rgba(38, 38, 48, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 32px 24px;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(90, 90, 255, 0.18);
}

.product-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #7f53ff;
}

.product-desc {
    font-size: 1rem;
    color: #e0e0f0;
    margin-bottom: 18px;
}

.product-price {
    font-size: 1.1rem;
    color: #b3b3cc;
    margin-bottom: 16px;
}

.buy-btn {
    background: linear-gradient(90deg, #5a5aff 0%, #7f53ff 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-end;
    margin-top: auto;
    transition: background 0.2s, transform 0.2s;
}

.buy-btn:hover {
    background: linear-gradient(90deg, #7f53ff 0%, #5a5aff 100%);
    transform: scale(1.05);
}

footer {
    margin-top: 80px;
    text-align: center;
    color: #b3b3cc;
    font-size: 1rem;
    padding-bottom: 24px;
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 2rem;
    }

    .products-section {
        flex-direction: column;
        gap: 20px;
    }
}

.pro-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pro-card > div {
    flex: 1 1 auto;
}

.buy-btn-link {
    flex-shrink: 0;
    align-self: flex-end;
    text-decoration: none;
    float: inline-end;
    margin-bottom: -5px;
}