:root {
    --primary: #FF0066;
    --secondary: #651FFF;
    --background: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --gradient: linear-gradient(135deg, #FF0066, #FF3D00, #FF1744);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 102, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(101, 31, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    overflow: hidden;
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient);
    border-radius: 50%;
    animation: moveUp linear forwards;
    opacity: 0.6;
}

@keyframes moveUp {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
}

.sport-card {
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-inner {
    padding: 3rem 2rem;
    position: relative;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.avatar-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 4px;
    background: var(--gradient);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--card-bg);
}

.power-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.profile-name {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.profile-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.profile-bio {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.power-link {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.power-link.power-up {
    opacity: 1;
    transform: translateY(0);
}

.power-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.link-icon {
    width: 45px;
    height: 45px;
    background: var(--link-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.link-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.link-text {
    flex-grow: 1;
}

.link-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.link-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.link-arrow {
    color: var(--link-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.power-link:hover .link-arrow {
    transform: translateX(5px);
}

.link-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.power-link:hover .link-shine {
    left: 100%;
}

.sport-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.motivation-badge {
    background: var(--gradient);
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .card-inner {
        padding: 2rem 1.5rem;
    }

    .profile-name {
        font-size: 2.5rem;
    }

    .stats-container {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .card-inner {
        padding: 1.5rem 1rem;
    }

    .avatar-container {
        width: 120px;
        height: 120px;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .power-link {
        padding: 1rem;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    .profile-bio {
        font-size: 1rem;
    }

    .motivation-badge {
        padding: 0.6rem 1.5rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }
} 