
body {
    margin: 0;
    padding: 0;
    background: #06040a;
    color: #e8e8e8;
    font-family: "Segoe UI", sans-serif;
    letter-spacing: 0.8px;
    


    background: 
        linear-gradient(
            rgba(15, 0, 30, 0.7),  
            rgba(15, 0, 30, 0.7)
        ),
        url('https://pics.craiyon.com/2023-06-26/23c01c55467646beb42871d7967646ea.webp');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: #e8e8e8;
    font-family: "desdemona", sans-serif;
    letter-spacing: 0.8px;
}



:root {
    --neon-purple: #ad00ff;
    --neon-pink: #ff2ed1;
    --neon-blue: #00c8ff;
    --dark-bg: #0b0a12;
}


header {
    background: #06040a;
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid var(--neon-purple);
    box-shadow: 0 0 25px var(--neon-purple);
}

header h1 {
    color: var(--neon-purple);
    font-size: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 18px var(--neon-purple);
}


nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #fff;
    background: var(--neon-purple);
    padding: 10px 18px;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s;
    box-shadow: 0 0 18px var(--neon-purple);
}

nav a:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}


.container {
    max-width: 950px;
    margin: 50px auto;
    padding: 30px;
    background: var(--dark-bg);
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(173, 0, 255, 0.4);
}



button {
    background: var(--neon-purple); 
    color: #551A8B; 
    border: none;
    padding: 12px 20px;
    font-size: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
    box-shadow: 0 0 15px var(--neon-purple);
    text-decoration: none; 
    margin-bottom: 30px;
}

button:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 18px var(--neon-blue);
}
button a {
    color: #551A8B; /* любой цвет, который хочешь */
    text-decoration: none; /* убираем подчеркивание */
}


img {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 22px var(--neon-purple);
    width: 400px;
    height: auto    ;
}


footer {
    text-align: center;
    padding: 20px;
    background: #06040a;
    color: var(--neon-purple);
    border-top: 2px solid var(--neon-purple);
    margin-top: 40px;
    box-shadow: 0 0 18px var(--neon-purple);
}


.glitch {
    position: relative;
    color: var(--neon-purple);
    font-size: 42px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 0 20px var(--neon-purple);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-blue);
    animation: glitch 1s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch 1.3s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% { clip-path: inset(20% 0 30% 0); }
    20% { clip-path: inset(10% 0 40% 0); }
    40% { clip-path: inset(35% 0 15% 0); }
    60% { clip-path: inset(25% 0 25% 0); }
    80% { clip-path: inset(15% 0 50% 0); }
    100% { clip-path: inset(40% 0 10% 0); }
}


h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: "Example",sans-serif;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b380d9;
    text-shadow:
        0 0 6px rgba(173, 0, 255, 0.4),
        0 0 12px rgba(0, 200, 255, 0.25);
}


h1 { font-size: 48px; }
h2 { font-size: 40px; }
h3 { font-size: 32px; }
h4 { font-size: 26px; }
h5 { font-size: 22px; }
h6 { font-size: 19px; }




 li {
    font-size: 18px;
    line-height: 1.7;
    color: #dcdcdc;
    text-align: center;
}

ul, ol {
    margin: 20px auto;
    padding: 0;
    max-width: 800px;
    list-style-position: inside;
}




.center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}



table {
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse;
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
}

table th, table td {
    padding: 14px 18px;
    border: 1px solid var(--neon-purple);
    color: #fff;
    text-shadow: 0 0 8px var(--neon-purple);
}

table th {
    background: rgba(140, 0, 255, 0.25);
    font-size: 20px;
}

table tr:hover {
    background: rgba(255, 0, 255, 0.2);
    transition: 0.2s;
}



hr {
    border: none;
    height: 2px;
    background: var(--neon-purple);
    box-shadow: 0 0 12px var(--neon-purple);
    margin: 30px auto;
    width: 80%;
}

p {
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    color: #c875ff; /* красивый фиолетово-розовый неон */
    text-align: left; /* текст будет слева */
    max-width: 800px; /* ограничиваем ширину для удобного чтения */
    margin: 20px auto; /* центрируем блок, но текст внутри слева */
    padding: 10px 20px; /* отступы внутри блока */
    background: rgba(20, 0, 40, 0.5); /* полупрозрачный фон под текстом */
    border-left: 4px solid var(--neon-purple); /* красивая лев. граница */
    border-radius: 6px;
    box-shadow: 0 0 12px var(--neon-purple);
}