@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at center, #0f0f1f, #000000 90%);
    color: #ffffff;
    overflow-x: hidden;
}

.futurist-overview {
    text-align: center;
    padding: 60px 20px;
    backdrop-filter: blur(5px);
}

.futurist-overview h1, 
.futurist-overview h2 {
    text-transform: uppercase;
    color: #00ffe7;
    text-shadow: 0 0 8px #00ffe7;
}

.futurist-overview p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1em;
}

.futurist-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px;
}

.futurist-card {
    background: linear-gradient(145deg, #1a1a2e, #111122);
    border: 1px solid #00ffe7;
    border-radius: 15px;
    width: 320px;
    padding: 30px;
    box-shadow: 0 0 20px #00ffe7;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.futurist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ffe7;
}

.futurist-card h2 {
    background: #00ffe7;
    color: #000;
    padding: 10px 0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.futurist-price {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ffe7;
}

.futurist-price span {
    display: block;
    font-size: 0.6em;
    color: #00ffe7;
}

.futurist-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #ddd;
}

.futurist-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.futurist-cta {
    background: #111122;
    padding: 60px 20px;
    text-align: center;
    border-top: 2px solid #00ffe7;
}

.futurist-cta .cta-button {
    background: #00ffe7;
    color: #000;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.futurist-cta .cta-button:hover {
    background: #00ccbe;
    transform: scale(1.1);
}
