html{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: #ffa2bd;
    font-size: 1rem;
}

::selection{
    background-color: #ffa2bd;
    color: #c44569;
}

body {
    position: relative;
    font-family: Outfit, 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgb(0, 0, 0);
}

body:before{
    content: '';
    position: absolute;
    background-image: url('../shared/v2/-IMAGES-/pan-draw.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; height: 100%;
    z-index: -2;
    filter: blur(2px);
    opacity: 0.4;
}

.container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    min-height: 80vh;
}

/* Left Profile Card */
.profile-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    min-width: 350px;
    width: 40%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../icons/pfp/umaera.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.username {
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.quote {
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

.marks {
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.contact-email {
    color: #ffffff;
    font-size: 14px;
    line-height: 1rem;
}

/* Right Social Media Container */
.social-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 500px;
    width: 100%;
    height: 10%;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(5px);
    transform: 0.2s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.youtube-card {
    background-color: rgba(255, 0, 0, 0.1);
}

.instagram-card {
    background-color: rgba(225, 48, 108, 0.1);
}

.twitch-card {
    background-color: rgba(145, 70, 255, 0.1);
}

.github-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

.discord-card {
    background-color: rgba(35, 54, 255, 0.1);
    grid-column: 1 / -1;
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.platform-handle {
    font-size: 14px;
    color: #ccc;
    font-weight: 400;
}