body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background-color: #000;
    color: #f5f5f5;
}

h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fefefe;
    animation: fadeInUp 1s ease both;
    text-align: center;
}

h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fefefe;
    margin-top: 60px;
    animation: fadeInUp 1s ease both;
}

p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease both;
    margin-bottom: 20px;
}

a {
    color: #74c0ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #a5e3ff;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msy-title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 8px;
    margin: 40px 0 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.5s ease-out;
}

.intro-block {
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-in-out;
}

.intro-block a {
    color: #9ae0ff;
    text-decoration: underline;
}