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

body {
    background-color: #3b3b3b;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%233C852B"/><path d="M0 0L100 100M100 0L0 100" stroke="%23319C45" stroke-width="2"/></svg>');
    background-size: 200px;
    font-family: 'Press Start 2P', cursive;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.language-selector {
    text-align: right;
    margin-bottom: 20px;
}

.language-selector select {
    background-color: #555;
    color: white;
    border: 3px solid #777;
    padding: 8px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.language-selector select:hover {
    background-color: #666;
    border-color: #888;
}

header {
    text-align: center;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.7);
    border: 4px solid #555;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #FFAA00;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #000;
}

.minecraft-logo {
    font-size: 32px;
    color: #FFAA00;
    text-shadow: 4px 4px 0 #000;
    margin-bottom: 20px;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    background-color: #7B7B7B;
    border: 4px solid #555;
    border-radius: 5px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.profile-info h2 {
    color: #55FF55;
    font-size: 18px;
    margin-bottom: 10px;
}

.description {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border: 4px solid #555;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.description h3 {
    color: #FFAA00;
    margin-bottom: 15px;
    text-align: center;
}

.description p {
    margin-bottom: 15px;
    font-size: 14px;
}

.features-list {
    margin: 15px 0;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.highlight {
    color: #55FFFF;
    font-weight: bold;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.link-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 4px solid #555;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.link-card.youtube {
    border-color: #FF0000;
}

.link-card.telegram {
    border-color: #0088cc;
}

.link-card.donate {
    border-color: #FFAA00;
}

.link-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.youtube .link-icon {
    color: #FF0000;
}

.telegram .link-icon {
    color: #0088cc;
}

.donate .link-icon {
    color: #FFAA00;
}

.link-card a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    background-color: #555;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.link-card a:hover {
    background-color: #666;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 4px solid #555;
    border-radius: 10px;
    font-size: 12px;
}

.pickaxe-animation {
    text-align: center;
    margin: 20px 0;
    font-size: 40px;
    animation: bounce 2s infinite;
}

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

@media (max-width: 600px) {
    h1 {
        font-size: 18px;
    }
    
    .minecraft-logo {
        font-size: 24px;
    }
    
    .profile {
        flex-direction: column;
    }
    
    .avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .description p, .features-list li {
        font-size: 12px;
    }
    
    .links {
        grid-template-columns: 1fr;
    }
}