* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

body {
    background: #0a0a0a;
    font-family: 'Courier New', monospace;
    color: #ff1493;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 20, 147, 0.03) 0px,
            transparent 2px,
            transparent 4px,
            rgba(255, 20, 147, 0.03) 6px
        );
    pointer-events: none;
    z-index: 1000;
    animation: flicker 0.15s infinite;
}

.floating-skull {
    position: fixed;
    font-size: 40px;
    pointer-events: none;
    z-index: 998;
    animation: float-skull 8s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float-skull {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(10deg); }
    50% { transform: translate(-20px, 20px) rotate(-10deg); }
    75% { transform: translate(20px, -30px) rotate(5deg); }
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        margin: 10px auto;
        padding: 10px;
    }

    .floating-skull {
        font-size: 25px;
    }
}

.header {
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    border: 5px solid #ff1493;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.8),
        inset 0 0 40px rgba(139, 0, 0, 0.5),
        0 0 80px rgba(255, 20, 147, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .header {
        padding: 25px 15px;
        border: 3px solid #ff1493;
    }
}

.header:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 60px rgba(255, 20, 147, 1),
        inset 0 0 60px rgba(139, 0, 0, 0.7);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 20, 147, 0.8), inset 0 0 40px rgba(139, 0, 0, 0.5); }
    50% { box-shadow: 0 0 60px rgba(255, 20, 147, 1), inset 0 0 60px rgba(139, 0, 0, 0.7); }
}

.header::before {
    content: '⛧';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 20, 147, 0.1);
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
}

@media (max-width: 768px) {
    .header::before {
        font-size: 120px;
    }
}

h1 {
    font-size: 64px;
    color: #ff1493;
    text-shadow: 
        0 0 10px #ff1493,
        0 0 20px #ff1493,
        0 0 30px #ff1493,
        3px 3px 0 #8b0000,
        6px 6px 0 #000;
    margin-bottom: 20px;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
    font-weight: bold;
    text-transform: uppercase;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

.subtitle {
    color: #ff69b4;
    font-size: 24px;
    text-shadow: 0 0 10px #ff69b4, 2px 2px 0 #000;
    letter-spacing: 8px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

.kuromi-emoji {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8));
    animation: spin-float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .kuromi-emoji {
        width: 30px;
        height: 30px;
    }
}

@keyframes spin-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.content {
    background: linear-gradient(to bottom, #1a0a0a, #0d0505);
    border: 3px solid #ff1493;
    border-radius: 0;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

@media (max-width: 768px) {
    .content {
        padding: 20px;
        margin: 20px 0;
    }
}

.content::before {
    content: '♥';
    position: absolute;
    font-size: 400px;
    color: rgba(139, 0, 0, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .content::before {
        font-size: 200px;
    }
}

.section {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 30px;
    }
}

h2 {
    color: #ff1493;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 
        0 0 10px #ff1493,
        0 0 20px #ff1493,
        2px 2px 0 #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff1493;
    padding-bottom: 10px;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

.about {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    color: #ff69b4;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}

@media (max-width: 768px) {
    .about {
        font-size: 16px;
        line-height: 1.8;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .button-container {
        gap: 15px;
        margin-top: 20px;
    }
}

.button {
    background: linear-gradient(135deg, #330000, #8b0000);
    color: #ff1493;
    padding: 20px 40px;
    border: 3px solid #ff1493;
    border-radius: 0;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.6),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .button {
        padding: 15px 25px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.4), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 1),
        inset 0 0 20px rgba(255, 20, 147, 0.3);
    color: #fff;
}

.footer {
    text-align: center;
    color: #ff1493;
    font-size: 16px;
    margin-top: 40px;
    text-shadow: 0 0 10px #ff1493;
    letter-spacing: 2px;
    padding: 20px;
    border-top: 2px solid #ff1493;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .footer {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 15px;
    }
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff1493;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #8b0000;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    10% { clip: rect(97px, 9999px, 99px, 0); }
    20% { clip: rect(85px, 9999px, 24px, 0); }
    30% { clip: rect(46px, 9999px, 87px, 0); }
    40% { clip: rect(12px, 9999px, 59px, 0); }
    50% { clip: rect(69px, 9999px, 71px, 0); }
    60% { clip: rect(30px, 9999px, 8px, 0); }
    70% { clip: rect(90px, 9999px, 42px, 0); }
    80% { clip: rect(55px, 9999px, 66px, 0); }
    90% { clip: rect(18px, 9999px, 93px, 0); }
    100% { clip: rect(73px, 9999px, 14px, 0); }
}

.divider {
    text-align: center;
    font-size: 32px;
    color: #ff1493;
    margin: 30px 0;
    text-shadow: 0 0 20px #ff1493;
}

@media (max-width: 768px) {
    .divider {
        font-size: 24px;
        margin: 20px 0;
    }
}

.server-box {
    background: #000;
    border: 3px solid #ff1493;
    border-radius: 0;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        inset 0 0 20px rgba(255, 20, 147, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .server-box {
        padding: 15px;
    }
}

.server-box img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    filter: brightness(0.9) contrast(1.1);
}

.interactive-zone {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    border: 3px solid #ff1493;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    text-align: center;
}

@media (max-width: 768px) {
    .interactive-zone {
        padding: 20px;
        margin: 20px 0;
    }
}

.click-me {
    font-size: 24px;
    color: #ff1493;
    padding: 20px;
    border: 3px dashed #ff1493;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 0 10px #ff1493;
    animation: blink 1.5s infinite;
}

@media (max-width: 768px) {
    .click-me {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .click-me {
        font-size: 14px;
        padding: 12px;
    }
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.click-me:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
    animation: none;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 997;
}

/* Стили для карточек игр с второй страницы */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.game-card {
    background: linear-gradient(to bottom, #1a0000, #0d0505);
    border: 3px solid #ff1493;
    padding: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    display: block;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.8),
        inset 0 0 40px rgba(255, 20, 147, 0.2);
    border-color: #ff69b4;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ff1493;
    transition: all 0.3s;
    filter: brightness(0.8) contrast(1.1);
}

.game-card:hover .game-image {
    filter: brightness(1) contrast(1.2);
}

.game-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.game-title {
    font-size: 22px;
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 768px) {
    .game-title {
        font-size: 18px;
    }
}

.game-description {
    font-size: 14px;
    color: #ff69b4;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

/* Стили для аркадной игры (Змейка) */
.snake-game-container {
    background: linear-gradient(to bottom, #1a0a0a, #0d0505);
    border: 3px solid #ff1493;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
}

.snake-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.snake-score {
    color: #ff1493;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 10px #ff1493;
    letter-spacing: 2px;
}

#snake-canvas {
    border: 2px solid #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    background: #0a0a0a;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.snake-start-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff1493;
    font-size: 18px;
    text-shadow: 0 0 10px #ff1493;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 2px dashed #ff1493;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.snake-game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff1493;
    font-size: 18px;
    text-shadow: 0 0 10px #ff1493;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border: 3px solid #ff1493;
    z-index: 10;
    pointer-events: none;
    text-align: center;
    white-space: pre-line;
    display: none;
}

.snake-controls {
    margin-top: 15px;
    color: #ff69b4;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}

@media (max-width: 768px) {
    .snake-game-header {
        flex-direction: column;
        text-align: center;
    }
    
    .snake-score {
        font-size: 16px;
    }
    
    #snake-canvas {
        max-width: 100%;
        height: auto;
    }
}

/* Стили для аудио плеера */
.audio-player-container {
    background: linear-gradient(to bottom, #1a0a0a, #0d0505);
    border: 3px solid #ff1493;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.audio-player-header {
    text-align: center;
    margin-bottom: 20px;
}

.audio-title {
    color: #ff1493;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 10px #ff1493;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.audio-track-info {
    color: #ff69b4;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}

.audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.audio-btn {
    background: linear-gradient(135deg, #330000, #8b0000);
    color: #ff1493;
    border: 2px solid #ff1493;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 0 10px rgba(255, 20, 147, 0.4),
        inset 0 0 5px rgba(0, 0, 0, 0.5);
    min-width: 45px;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.8),
        inset 0 0 10px rgba(255, 20, 147, 0.2);
    color: #fff;
}

.audio-btn.active {
    background: linear-gradient(135deg, #8b0000, #ff1493);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 1),
        inset 0 0 10px rgba(255, 20, 147, 0.3);
}

.audio-progress-container {
    width: 100%;
    height: 8px;
    background: #000;
    border: 2px solid #ff1493;
    cursor: pointer;
    margin: 15px 0;
    position: relative;
}

.audio-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
}

.audio-time {
    text-align: center;
    color: #ff69b4;
    font-size: 12px;
    margin-bottom: 10px;
}

.audio-volume-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.audio-volume-label {
    color: #ff69b4;
    font-size: 14px;
    min-width: 80px;
}

.audio-volume-slider {
    width: 200px;
    max-width: 100%;
    height: 6px;
    background: #000;
    border: 2px solid #ff1493;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ff1493;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

.audio-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ff1493;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

#audio-volume-value {
    color: #ff1493;
    font-size: 14px;
    min-width: 50px;
    text-align: left;
}

.audio-playlist {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
    border-top: 2px solid #ff1493;
    padding-top: 15px;
}

.playlist-item {
    padding: 10px;
    margin: 5px 0;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.playlist-item:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
    transform: translateX(5px);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

.playlist-item.active {
    background: rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
    color: #ff1493;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

.playlist-empty {
    text-align: center;
    color: #ff69b4;
    padding: 20px;
    font-style: italic;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .audio-controls {
        gap: 10px;
    }
    
    .audio-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .audio-volume-slider {
        width: 150px;
    }
}

/* Плавные анимации для улучшения UX */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 20, 147, 0.9);
    }
}

.section {
    animation: fadeIn 0.5s ease-out;
}

.button {
    position: relative;
    overflow: hidden;
}

.button:active {
    transform: scale(0.95);
}

/* Улучшения для интерактивных элементов */
.click-me {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-zone {
    transition: all 0.3s ease;
}

.interactive-zone:hover {
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.8),
        inset 0 0 20px rgba(255, 20, 147, 0.1);
}

.game-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Плавное появление элементов при скролле */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content::before {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Улучшенная прокрутка */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff1493 #000;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #000;
}

*::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 5px;
    transition: background 0.3s;
}

*::-webkit-scrollbar-thumb:hover {
    background: #ff69b4;
}

/* Улучшения для мобильных устройств */
@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
    
    .snake-game-container {
        padding: 10px;
    }
    
    #snake-canvas {
        width: 100%;
        height: auto;
    }
    
    .audio-controls {
        gap: 8px;
    }
    
    .audio-btn {
        flex: 1;
        min-width: 40px;
    }
}

/* Улучшение футера */
.footer {
    animation: fadeIn 0.8s ease-out;
    transition: all 0.3s;
}

.footer:hover {
    text-shadow: 0 0 15px #ff1493;
}

/* Улучшение заголовков */
h2 {
    transition: all 0.3s;
}

h2:hover {
    text-shadow: 
        0 0 15px #ff1493,
        0 0 25px #ff1493,
        2px 2px 0 #000;
    transform: translateY(-2px);
}

/* Улучшение для header */
.header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Плавная анимация для плавающих элементов */
.floating-skull {
    transition: opacity 0.3s;
}

/* Улучшение для server-box */
.server-box {
    transition: all 0.3s;
}

.server-box:hover {
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.8),
        inset 0 0 30px rgba(255, 20, 147, 0.2);
    transform: scale(1.02);
}

.server-box img {
    transition: all 0.3s;
}

.server-box:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

/* Подсветка при фокусе для доступности */
button:focus,
a:focus {
    outline: 2px solid #ff1493;
    outline-offset: 2px;
}

/* Улучшение для разделителей */
.divider {
    transition: all 0.3s;
}

.divider:hover {
    text-shadow: 0 0 30px #ff1493;
    transform: scale(1.1);
}

/* Анимация для частиц */
#particle-canvas {
    transition: opacity 0.5s;
}

