body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0d0d2b, #190a1f, #3a002f);
    background-attachment: fixed;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 100vh;
    margin: 0;
    /* overflow: hidden; */
    position: relative;
}

/* Половина неонового круга, прижатая к краю экрана */
.neon-circle {
    position: fixed; /* Круг всегда будет на одном месте */
    width: 200px;
    height: 200px;
    border-radius: 100%; /* Округлый */
    background: rgba(50, 10, 50, 0.6); /* Цвет чуть темнее фона */
    box-shadow: 0 0 40px rgba(100, 50, 150, 0.6), 0 0 80px rgba(150, 100, 200, 0.4);
    animation: subtleGlow 4s infinite alternate;
    transform: translateX(50%); /* Сдвиг половины круга за границу экрана */
}

/* Размещаем круг с краю экрана (например, справа) */
.neon-circle.right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
}

.neon-circle.left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
}

/* Мягкое свечение */
@keyframes subtleGlow {
    0% {
        transform: scale(1) translateY(-50%) translateX(50%);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1) translateY(-50%) translateX(50%);
        opacity: 0.8;
    }
}

/* Градиентный хедер, но ближе к фону */
header {
    background: linear-gradient(90deg, #190a1f, #2a0f33, #3b1247);
    padding: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.casino-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    border-radius: 15px;
    padding: 15px;
    width: 80%;
    max-width: 900px;
    border: 2px solid #ff00ff;
    transition: 0.3s ease-in-out;
}

.casino-card:hover {
    transform: scale(1.05);
    border-color: #770059;
}

.casino-card img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #ff00ff;
}

.casino-info {
    flex-grow: 1;
    margin-left: 15px;
    text-align: left;
}

.casino-info h2 {
    font-size: 20px;
    margin: 0;
}

.casino-info p {
    font-size: 14px;
    margin: 5px 0;
}

.play-button {
    background: linear-gradient(55deg, rgba(201,19,199,1) 0%, rgba(231,21,165,1) 35%, rgba(255,173,0,1) 100%);
    color: whitesmoke;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover {
    background: linear-gradient(55deg, rgb(220, 12, 255) 35%, rgb(223, 240, 0) 100%);
    transform: scale(1.1);
}

.text-block {
    width: 85%;
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border: 2px solid #ff00ff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

footer {
    background: linear-gradient(90deg, #190a1f, #2a0f33, #3b1247);
    padding: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-link {
    color: white;             /* белый текст */
    text-decoration: none;    /* убираем подчёркивание */
    font-weight: bold;        /* если нужно, чтобы текст был жирным */
  }
  
  /* Можно добавить hover-эффект, если хочешь */
.custom-link:hover {
    color: white;
}
  