* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: #a0a0a0;
    line-height: 1.6;
    overflow-x: hidden;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%) brightness(30%);
}

nav {
    background: rgba(20, 20, 20, 0.95);
    padding: 10px 40px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-content {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo-container { justify-self: start; }
.nav-logo { height: 40px; filter: grayscale(100%) brightness(0.8); }
.nav-links { justify-self: center; }

.nav-links a {
    color: #888;
    margin: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: #fff; }

.container {
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    background: rgba(30, 30, 30, 0.85); 
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #444;
    position: relative;
    z-index: 1;
}

.profile-centered { text-align: center; margin-bottom: 30px; }
.profile-img { width: 150px; height: 150px; border-radius: 5px; object-fit: cover; border: 1px solid #555; margin-bottom: 20px; }
.grunge-text { background: linear-gradient(to bottom, #cfcfcf 0%, #7a7a7a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.box { background: rgba(0, 0, 0, 0.2); padding: 20px; border-radius: 5px; margin-top: 20px; border: 1px solid #333; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.gallery-img { width: 100%; height: 200px; object-fit: cover; border: 1px solid #444; border-radius: 5px; }
.animate { animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }