body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #0d1b2a, #020617);
    color: #fff;
}

.title {
    text-align: center;
    font-size: 36px;
    margin: 40px 0;
    color: #4da3ff;
}

.packs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 40px 60px;
}

.pack-card {
    background: linear-gradient(180deg, #0b1220, #050b16);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 136, 255, 0.45);
}

.pack-card img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 15px;
}

.pack-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #00ff9c;
    margin-bottom: 5px;
}

.points {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.btn.primary {
    background: #2563eb;
    color: #fff;
}

.btn.primary:hover {
    background: #1e40af;
}

.btn.secondary {
    background: #0f172a;
    border: 1px solid #2563eb;
    color: #4da3ff;
}

.btn.secondary:hover {
    background: #020617;
}
