@font-face {
    font-family: 'DrunkFont';
    src: url('assets/DRUNKFONTS-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Positions';
    src: url('assets/PositionsByArixbored-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BlueScreen';
    src: url('assets/Blue Screen Personal Use.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --text-color: #ffffff;
    --bg-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Positions', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.name {
    font-family: 'DrunkFont', monospace;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: normal;
    letter-spacing: 15px;
    text-align: center;
}

.quote {
    font-family: 'BlueScreen', monospace;
    font-size: 0.7rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 3rem;
    letter-spacing: 4px;
    animation: quote-pulse 4s ease-in-out infinite;
}

@keyframes quote-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.socials-section,
.contacts-section {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.section-title {
    font-family: 'DrunkFont', sans-serif;
    font-size: 2.5rem;
    text-transform: lowercase;
    letter-spacing: 15px;
    color: var(--primary-color);
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}

.section-title.left {
    order: 1;
}

.section-title.right {
    order: 2;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    order: 2;
    text-align: right;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    order: 1;
    text-align: left;
}

.contact-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.contact-link span {
    order: 1;
}

.contact-link .icon {
    order: 2;
    margin-right: 0;
    margin-left: 0;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    font-family: 'Positions', sans-serif;
    font-weight: normal;
    display: inline-block;
    letter-spacing: 0px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    font-family: 'Positions', sans-serif;
    font-weight: normal;
    letter-spacing: 0px;
}

.social-link .icon {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.contact-link .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover,
.contact-link:hover {
    letter-spacing: 3px;
    opacity: 0.9;
}

.social-link:hover .icon,
.contact-link:hover .icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 3rem;
    }
    
    .container {
        max-width: 100%;
    }
    
    .name {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
        letter-spacing: 6px;
    }
    
    .quote {
        font-size: 1rem;
        margin-top: 2.5rem;
        letter-spacing: 2px;
    }
    
    .socials-section,
    .contacts-section {
        flex-direction: row;
        align-items: center;
        margin-bottom: 3.5rem;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 3.2rem;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        letter-spacing: 1.5rem;
    }
    
    .section-title.left {
        order: 1;
    }
    
    .section-title.right {
        order: 2;
    }
    
    .social-links {
        order: 2;
        text-align: right;
        gap: 0.8rem;
    }
    
    .contact-links {
        order: 1;
        text-align: left;
        gap: 0.8rem;
    }
    
    .social-link,
    .contact-link {
        font-size: 1.7rem;
    }
    
    .social-link .icon,
    .contact-link .icon {
        width: 24px;
        height: 24px;
    }
}
