/* General Styles */
html {
    height: 100%;
}

body {
    font-family: 'Unbounded', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #001122, #000000);
    color: #fff;
    line-height: 1.5;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

header {
    text-align: center;
    padding: 50px 0;
}

.nickname {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px #ccc;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.avatar {
    width: 198px;
    height: 198px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-right: 30px;
    box-shadow: 0 0 15px #fff;
}

.personal-info {
    flex: 1;
}

.personal-info h2, .personal-info h3 {
    color: #fff;
    margin: 0 0 5px 0;
}

.personal-info .bio {
    margin: 0 0 10px 0;
}

.personal-info .social-links {
    margin: 0 0 10px 0;
}

.personal-info ul {
    list-style: none;
    padding: 0;
}

.personal-info li {
    margin-bottom: 10px;
}

.personal-info a {
    color: #fff;
    text-decoration: none;
}

.personal-info a:hover {
    text-decoration: underline;
    box-shadow: 0 0 5px #ccc;
}

/* Videos Section */
.videos-section {
    margin-top: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fff;
    box-shadow: 0 0 5px #fff;
}

.video-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    .avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .nickname {
        font-size: 2rem;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nickname {
        font-size: 1.5rem;
    }
    header {
        padding: 30px 0;
    }
    .avatar {
        width: 150px;
        height: 150px;
    }
}
/* Нижняя часть сайта (footer) */
.site-footer {
    position: fixed; /* фиксируем внизу */
    bottom: 0;
    left: 0;
    width: 100%; /* на всю ширину */
    background-color: #000; /* чёрный фон */
    padding: 5px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    /* Белая полоска сверху как очертание */
    border-top: 2px solid #fff;
}

    /* Лого */
    .site-footer img {
        width: 40px;
        height: auto;
        transition: transform 0.3s ease;
    }

        .site-footer img:hover {
            transform: scale(1.1);
        }

/* Текст NFT */
.footer-text {
    color: #fff;
    font-size: 12px;
    margin-top: 3px;
}
