body {
    font-family: 'Russo One', 'PT Sans', sans-serif; /* 90s-style fonts */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000; /* Start with a dark background */
    background-size: cover;
    color: #ffd700; /* Gold/yellow text - adjust as needed */
}

/* Background with Grunge Texture and Patriotic Colors */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("ukraine-background.jpg") no-repeat center center; /* Replace with a suitable background */
    background-size: cover;
    filter: sepia(30%) grayscale(20%); /* Subtle sepia and desaturation */
    z-index: -1;
}

.background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("grunge-texture.png"); /* Replace with a grunge texture image */
    opacity: 0.4; /* Adjust the opacity of the texture */
    z-index: -1;
}

/* Container for Content */
.container {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8); /* Darker semi-transparent background */
    border-radius: 15px;
    padding: 40px; /* More padding */
    text-align: center;
    max-width: 550px; /* Slightly wider */
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7); /* More pronounced shadow */
    z-index: 1;
}

/* Profile Image - Old Photo Look */
.profile img {
    width: 160px; /* Slightly larger */
    height: 160px; /* Slightly larger */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px; /* More margin */
    border: 5px solid #ffd700; /* Gold border */
    filter: sepia(40%) grayscale(20%); /* Sepia and desaturation */
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.1);
}

/* Artist Name - Cyrillic, Bold, with Outline */
.profile h1 {
    font-family: 'Russo One', sans-serif; /* 90s-style font */
    font-size: 3em; /* Larger font size */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #ffd700; /* Gold color */
    -webkit-text-stroke: 1px #000; /* Black outline */
    letter-spacing: 2px; /* Add letter spacing */
}

/* Tagline - Cyrillic, Italicized */
.profile p {
    font-family: 'PT Sans', sans-serif; /* More readable font */
    margin-bottom: 35px;
    font-size: 1.3em;
    font-style: italic;
    color: #ffd700; /* Gold color */
}

/* Links Container */
.links {
    display: flex;
    flex-direction: column;
    gap: 18px; /* More gap */
}

/* Link Buttons - 90s Style */
.link-button {
    background-color: #ffd700; /* Gold background */
    color: #000; /* Black text */
    padding: 18px 25px; /* More padding */
    border-radius: 10px; /* Rounded corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Add initial shadow */
}

.link-button:hover {
    background-color: #b39400; /* Darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* More pronounced shadow on hover */
}

/* Social Icons - Ukrainian Flag Colors */
.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    color: #ffd700; /* Gold/Yellow */
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #005bbb; /* Blue */
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

.hover-effect {
    transform: scale(1.1);
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.announcement {
    margin-top: 30px;
    padding: 20px;
    background-image: url("announcement-background.jpg"); /* Your background image */
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    border-radius: 10px;
}

.announcement p {
    font-size: 1.2em;
    color: #ffd700; /* Gold text */
    text-align: center;
    margin: 0;
    font-style: italic;
}

.charity {
    margin-top: 30px; /* Add margin to the top */
    text-align: center;
}

.charity img {
    max-width: 200px; /* Adjust size as needed */
    height: auto;
    border: 2px solid #ffd700; /* Example: Add a border */
    border-radius: 5px; /* Example: Add rounded corners */
}