@font-face {
    font-family: 'VCR_OSD_MONO';
    src: url('../font/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'VCR_OSD_MONO', monospace;
}

html,
body,
button,
input,
textarea,
select,
a {
    font-family: 'VCR_OSD_MONO', monospace;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/Fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/Fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(8px);
    z-index: -1;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: none;
    border-radius: 30px;
    padding: 30px;
    padding-top: 80px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
    position: relative;
}

.profile-circle {
    width: 150px;
    height: 150px;
    background-color: #8600be;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-top: -65px;
    margin-bottom: 25px;
    z-index: 10;
}

.oc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section {
    text-align: center;
    color: black;
    margin-bottom: 30px;
}

.info-section h1 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section .description {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    text-decoration: none;
    color: white;
    font-weight: normal;
    font-size: 16px;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #8600be;
    border-color: #8600be;
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

.btn.facebook .btn-icon,
.btn.twitch .btn-icon,
.btn.youtube .btn-icon {
    filter: sepia(1) hue-rotate(260deg) saturate(1.2) brightness(0.9);
}

.btn:hover {
    transform: scale(1.02);
    color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 10px 40px 0 rgba(0, 0, 0, 0.4);
}

.btn::after {
    content: '';
    position: fixed;
    bottom: -30px !important;
    right: -10px !important;
    width: 80px;
    height: 80px;
    background-image: url('../img/Rupy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease-out;
}

.btn:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatGhost {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn:active {
    transform: scale(0.98);
}