
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    min-height: calc(100vh - 4rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #666 #f5f5f5;
    backdrop-filter: blur(5px);
}
/* Custom scrollbar for WebKit browsers */
.content::-webkit-scrollbar {
    width: 8px;
}
.content::-webkit-scrollbar-track {
    background: #2d2d2d;
}

.content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}
.profile {
    text-align: center;
    margin-bottom: 2rem;
}
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(85, 85, 85, 0.7);
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.bio {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
    color: #aaa;
    font-weight: 500;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.link-card {
    background: rgba(40, 40, 40, 0.95);
    padding: 1rem;
    text-decoration: none;
    color: #ddd;
    border: 1px solid #444;
display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(60, 60, 60, 0.95);
}
.link-card i {
    font-size: 1.2rem;
    color: #aaa;
}
.videos h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ddd;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}
.video-card {
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid #444;
    text-decoration: none;
    color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.video-card p {
    padding: 0.8rem;
    margin: 0;
    font-weight: 500;
}

/* Dark theme scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #2d2d2d;
}
::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #666;
}



.fa-kick::before {
        font-family: Arial Black, sans-serif;
        font-weight: bold;
        content: 'K';
        font-size: 1.1em;
 }
