@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #f0e0f0;
    background: transparent;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0e021a 0%, #1a062b 50%, #0d011c 100%);
}

header {
    background: linear-gradient(135deg, rgba(30, 5, 45, 0.8) 0%, rgba(20, 10, 35, 0.8) 100%);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #f0e0f0;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
    font-weight: 400;
    text-shadow: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff69b4;
    transition: width 0.3s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

main {
    margin-top: 70px;
    padding-bottom: 4rem;
    position: relative;
    z-index: 10;
}

section {
    scroll-margin-top: 90px;
    padding: 5rem 0;
    background: transparent;
    backdrop-filter: none;
    margin: 2rem auto;
    border-radius: 15px;
    border: none; /* Borde completamente transparente */
    box-shadow: none; /* Sombra completamente transparente */
}

.hero {
    text-align: center;
    color: white;
    background: transparent;
    border-bottom: none; /* Borde inferior completamente transparente */
    box-shadow: none; /* Sombra completamente transparente */
    padding: 8rem 0;
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    border: none; /* Borde completamente transparente */
    border-bottom: none; /* Borde inferior completamente transparente */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 105, 180, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
    color: #e0d0e0;
}

.cta-button {
    background: linear-gradient(135deg, #ff69b4 0%, #da4a9e 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff8dc0 0%, #ff69b4 100%);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.8);
}

.about-section {

}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ff69b4;
    object-fit: cover;
    animation: fadeInLeft 1s ease-out;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.about-text {
    color: #f0e0f0;
    animation: fadeInRight 1s ease-out;
}

.about-text h3 {
    color: #ff69b4;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.skill-tag {
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid #ff69b4;
    color: #ff69b4;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.skill-tag:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.6);
}

.cards-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 105, 180, 0.4);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: rgba(15, 0, 20, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 2.5rem;
    border: none; /* Borde completamente transparente */
    box-shadow: none; /* Sombra completamente transparente */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    /* Puedes mantener un efecto de sombra al pasar el ratón si quieres, o eliminarlo también */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 105, 180, 0.3);
}

.card h3 {
    color: #ff69b4;
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.builds {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
    transition: transform 0.4s ease;
}

.builds:hover {
    transform: scale(1.03);
}

.builds img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.builds:hover img {
    transform: scale(1.07);
}

.social-section {
    text-align: center;
    padding: 5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(30, 0, 35, 0.1);
    border-radius: 50%;
    transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
    border: none; /* Borde completamente transparente */
    box-shadow: none; /* Sombra completamente transparente */
}

.social-link:hover {
    background: #ff69b4;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.7);
    border-color: #ff69b4;
}

.social-link img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    border: none;
    transition: transform 0.4s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.studio-name {
    color: #f0e0f0;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

footer {
    background: rgba(10, 0, 15, 0.1);
    color: #e0d0e0;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-radius: 15px 15px 0 0;
    border-top: none; /* Borde superior completamente transparente */
    box-shadow: none; /* Sombra completamente transparente */
    position: relative;
    z-index: 10;
}

footer p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .about-image img {
        width: 140px;
        height: 140px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .card {
        padding: 2rem;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .builds img {
        height: 180px;
    }

    .social-links {
        gap: 2rem;
    }

    .social-link {
        width: 70px;
        height: 70px;
    }

    .studio-name {
        font-size: 0.95rem;
    }

    section {
        padding: 3.5rem 0;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}