* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0b0c10;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    background: linear-gradient(180deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.container {
    width: 90%;
    max-width: 450px;
    text-align: center;
    z-index: 1;
    background: rgba(20, 20, 35, 0.7);
    padding: 40px 30px 20px; /* Adjusted bottom padding for footer */
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.container::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
}

.avatar {
    width: 100px;
    height: 100px;
    background: #1f2833;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #0ff;
    border: 3px solid #f0f;
    box-shadow: 0 0 20px #f0f, inset 0 0 15px #f0f;
    text-shadow: 0 0 10px #0ff;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    letter-spacing: 4px;
}

.profile p {
    color: #f0f;
    margin-bottom: 25px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #f0f;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.link-btn i {
    font-size: 1.4rem;
    margin-right: 15px;
    width: 25px; /* Keeps icons aligned */
    text-align: center;
}

/* Specific Platform Styling */
.twitch {
    border-color: #9146FF;
    text-shadow: 0 0 5px #9146FF;
    box-shadow: 0 0 10px rgba(145, 70, 255, 0.4);
}
.twitch:hover {
    background: rgba(145, 70, 255, 0.3);
    box-shadow: 0 0 25px #9146FF;
    transform: scale(1.02);
}

.steam {
    border-color: #0ff;
    text-shadow: 0 0 5px #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}
.steam:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 25px #0ff;
    transform: scale(1.02);
}

.platform {
    border-color: #f0f;
    text-shadow: 0 0 5px #f0f;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
    cursor: default;
}

/* Legal Footer */
.legal {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}
.legal p {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
    letter-spacing: 1px;
    line-height: 1.4;
}
}