* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 2px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    color: #4a9eff;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-icon {
    color: #4a9eff;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

nav a:hover {
    background-color: #333;
    color: #4a9eff;
}

/* Main content styles */
main {
    flex: 1;
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border-left: 5px solid #4a9eff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a9eff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.highlight {
    color: #4a9eff;
    font-weight: bold;
}

.section {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.section h3 {
    color: #4a9eff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

/* Avatar section */
.avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.avatar-box {
    width: 200px;
    height: 200px;
    background-color: #252525;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #4a9eff;
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.3);
}

.avatar-placeholder {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.avatar-label {
    font-size: 1.3rem;
    color: #4a9eff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    color: #4a9eff;
    font-size: 1.5rem;
}

/* Contacts section */
.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
}

.contact-card {
    background-color: #252525;
    border-radius: 10px;
    padding: 25px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 3rem;
    color: #4a9eff;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4a9eff;
}

.contact-card p {
    margin-bottom: 20px;
    color: #aaa;
}

.contact-link {
    display: inline-block;
    background-color: #4a9eff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-link:hover {
    background-color: #3a8eef;
}

/* Info section */
.info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.info-content p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

/* Footer styles */
footer {
    background-color: #1a1a1a;
    padding: 25px 0;
    border-top: 2px solid #333;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    font-size: 1.1rem;
    color: #aaa;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #4a9eff;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #252525;
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-links a:hover {
    background-color: #333;
    color: #4a9eff;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}
.roblox-avatar {
    height:200px;
    padding-top:9px;
    width:193px;
    padding-left:1px;

}
/* Стили для кнопки Roblox */
.roblox-button-container {
    margin-top: 20px;
    text-align: center;
}

.roblox-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e73232;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.roblox-button:hover {
    background-color: #d42a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.roblox-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fa-roblox {
    font-size: 1.2rem;
}

/* Уменьшение размера аватара (если нужно) */
.avatar-box {
    width: 150px;  /* Изменено с 200px на 150px */
    height: 150px; /* Изменено с 200px на 150px */
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
    .roblox-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .avatar-box {
        width: 130px;
        height: 130px;
    }
}