
.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Dark radial glow effect */
    /* background: radial-gradient(circle at center, #1a1b3a 0%, #050816 70%); */
}

.content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d3d3e4;
    margin-bottom: 40px;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #5e5ce6; /* Subtle purple/blue */
    color: white;
}

.btn-primary:hover {
    background-color: #4b49c7;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #33365a;
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #5e5ce6;
}

/* Robot Image Positioning */
.robot {
    position: absolute;
    pointer-events: none; /* Allows clicking through images */
}

.robot-top-left {
    top: -15%;
    left: -4%;
    width: 450px;
    /* Added a small float animation */
    animation: float 6s ease-in-out infinite;
}

.robot-bottom-left {
    bottom: 5%;
    left: 25%;
    width: 180px;
    animation: float 8s ease-in-out infinite alternate;
}

.robot-right {
    top: 40%;
    right: 2%;
    width: 500px;
    animation: float 7s ease-in-out infinite;
}

/* Simple floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .robot-right { width: 250px; right: 0; }
    .robot-top-left { width: 120px; }
}

.connectedEL {
    display: none;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(128, 128, 128, 0.144);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.wrapper h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.wrapper p {
    margin-bottom: 0.5rem;
}
.wrapper img {
    max-width: 80%;
    object-fit: contain;
    object-position: center;
}

.wrapper .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.wrapper .flex button {
    width: 50%;
    flex-shrink: 1;
    background: #705ac4;
    padding: 0.5rem 1rem;
    height: 3rem;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border: none;

}
.wrapper .flex button p {
    margin-bottom: 0;
    font-weight: 600;
    color: white;
}
.wrapper .flex button img {
    width: 1.5rem;
}