﻿

.sci-fi-container {
    text-align: center;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #0b0f29, #1c2450);
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #29abe2, 0 0 20px #29abe2;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    padding: 15px 40px;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(45deg, #29abe2, #7ac4f4);
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(41, 171, 226, 0.7), 0 0 30px rgba(122, 196, 244, 0.7);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(41, 171, 226, 1), 0 0 50px rgba(122, 196, 244, 1);
    }

    .button:active {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(41, 171, 226, 0.5), 0 0 20px rgba(122, 196, 244, 0.5);
    }

.sci-fi-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.sci-fi-effect:nth-child(1) {
    animation-delay: 0s;
}

.sci-fi-effect:nth-child(2) {
    animation-delay: 0.5s;
}

.sci-fi-effect:nth-child(3) {
    animation-delay: 1s;
}
