:root {
    --primary-color: #008B9B;
    --secondary-color: #32CD32;
    --accent-color: #FFD700;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --facebook-color: #1877f2;
    --twitch-color: #6441a5;
    --discord-color: #7289DA;
    --youtube-color: #FF0000;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a1b3d 100%);
    color: var(--light-color);
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.profile h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.profile p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Puerto Rico Flag */
.puerto-rico-flag {
    width: 60px;
    height: 40px;
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.stripe {
    height: 8px;
    width: 100%;
}

.stripe.red {
    background-color: #ED0000;
}

.stripe.white {
    background-color: white;
}

.triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #0050F0;
}

.star {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
}

.link-card i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.link-card span {
    font-weight: bold;
}

.link-card .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
}

.link-card:hover .shine {
    left: 100%;
}

/* Social Media Colors */
.facebook { background-color: rgba(24, 119, 242, 0.2); }
.facebook:hover { background-color: rgba(24, 119, 242, 0.4); }

.twitch { background-color: rgba(100, 65, 165, 0.2); }
.twitch:hover { background-color: rgba(100, 65, 165, 0.4); }

.discord { background-color: rgba(114, 137, 218, 0.2); }
.discord:hover { background-color: rgba(114, 137, 218, 0.4); }

.youtube { background-color: rgba(255, 0, 0, 0.2); }
.youtube:hover { background-color: rgba(255, 0, 0, 0.4); }

.kick { background-color: rgba(0, 200, 83, 0.2); }
.kick:hover { background-color: rgba(0, 200, 83, 0.4); }

/* Schedule Card */
.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-card h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-items p {
    font-size: 0.9rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gaming-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--accent-color);
}

.gaming-icons i {
    font-size: 1.5rem;
}

/* Share Section */
.share-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.share-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.share-button.facebook {
    background: #1877f2;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.telegram {
    background: #0088cc;
}

.share-button.copy {
    background: #6c757d;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .profile h1 {
        font-size: 1.4rem;
    }

    .link-card {
        padding: 0.8rem;
    }

    .share-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 