@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    overflow-x: hidden;
    background-color: #000;
    color: #aaa;
}

/* NAV */
.header__box {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.header__ul {
    display: flex;
    list-style: none;
    position: absolute;
    gap: 40px;
}
.ul__list {
    padding: 10px;
}
.list__link {
    color: #fff;
    border-bottom: 3px solid transparent;
    transition: border 0.3s, color 0.3s;
    font-size: 1.75rem;
}
.link--active {
    padding-bottom: 4px;
    border-bottom: 2px solid #6556b7;
    color: #6556b7;
}

.list__link:hover {
    padding-bottom: 3px;
    color: #6556b7;
    border-bottom: 2px solid #6556b7;
}

@media(max-width:995px) {
    .header__box {
        display: none;
    }
}

/* Navegación tlf*/

.menu-container {
    position: absolute;
    z-index: 1000;
}

.menu-label {
    display: none;
}

.menu-label input[type="checkbox"] {
    display: none;
}

.hidden-buttons {
    display: none;
    margin-top: 10px;
}

.header__ul--tlf {
    width: 9.5rem;
    list-style: none;
    gap: 40px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 3px #aaa;
    z-index: 40;
}

.list__link--tlf {
    color: #fff;
    border-left: 3px solid transparent;
    transition: border 0.5s, color 0.3s;
}
.link--active-tlf {
    padding-left: 6px;
    border-left: 2px solid #6556b7;
    color: #6556b7;
}
.list__link--tlf:hover {
    padding-left: 6px;
    border-left: 2px solid #6556b7;
    color: #6556b7;
}

@media(max-width:995px) {
    .menu-container {
        position: absolute;
        padding: 15px 10px;
        z-index: 10;
    }

    .menu-label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .menu-label input[type="checkbox"] {
        display: none;
    }

    .icon-box {
        width: 1.5rem;
        color: #aaa;
        height: 1.60rem;
        border: 1px solid #fff;
        background-color: #222;
        border-radius: 4px;
        scale: 2;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        transition: all 0.3s;
        margin: 10px 10px;
    }

    .menu-label input[type="checkbox"]:checked + .icon-box {
        border-color: #6556b7;
    }

    .menu-label input[type="checkbox"]:checked + .icon-box i {
        color: white;
    }

    .hidden-buttons {
        display: none;
        margin-top: 10px;
    }

    .menu-label input[type="checkbox"]:checked ~ .hidden-buttons {
        position: absolute;
        top: 60px;
        left: 20px;
        display: flex;
        flex-flow: column wrap;
        scale: 1.2;
        z-index: 20;
    }
}

/* Hero Section */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.hero-container {
    max-width: 800px;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #6556b7;
    box-shadow: 0 0 30px rgba(101, 86, 183, 0.5);
    transition: all 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(101, 86, 183, 0.7);
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #6556b7;
}

.typing-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 500;
    color: #aaa;
    display: inline-block;
}

.typing-text {
    color: #6556b7;
    display: inline-block;
}

.typing-cursor {
    color: #6556b7;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #6556b7;
    border-radius: 50px;
    color: #6556b7;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #6556b7;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(101, 86, 183, 0.4);
}

/* Social Section */

.social-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card i {
    font-size: 3.5rem;
    z-index: 2;
}

.social-card span {
    z-index: 2;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 1;
}

.social-card:hover::before {
    left: 0;
}

.social-card:hover {
    transform: translateY(-5px);
}

.discord {
    border-color: #5865F2;
}
.discord::before {
    background: linear-gradient(135deg, #5865F2, #4752C4);
}
.discord:hover {
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.twitter {
    border-color: #1DA1F2;
}
.twitter::before {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}
.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.instagram {
    border-color: #E1306C;
}
.instagram::before {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}
.instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.tiktok {
    border-color: #00F2EA;
}
.tiktok::before {
    background: linear-gradient(135deg, #00F2EA, #FF0050);
}
.tiktok:hover {
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.4);
}

.kick {
    border-color: #53FC18;
}
.kick::before {
    background: linear-gradient(135deg, #53FC18, #3ab810);
}
.kick:hover {
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.4);
}

.youtube {
    border-color: #FF0000;
}
.youtube::before {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}
.youtube:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* Skills Section */

.skills-section {
    padding: 80px 20px;
    background: #000;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
}

.skills-slider {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0)
    );
}

.skills-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

.skill-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.skill-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.skill-item:hover {
    border-color: #6556b7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(101, 86, 183, 0.3);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 5 - 40px * 5));
    }
}

.tools-section {
    text-align: center;
}

.tools-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tool-item {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tool-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.tool-item:hover {
    border-color: #6556b7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(101, 86, 183, 0.3);
}

/* Responsive */

@media(max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }


    .hero-description {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .social-card {
        font-size: 1.8rem;
    }

    .tools-title {
        font-size: 2.5rem;
    }
}
