:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8534;
    --background-start: #1a1a1a;
    --background-end: #2d2d2d;
    --text-color: #ffffff;
    --card-background: rgba(255, 107, 0, 0.1);
    --card-border: rgba(255, 107, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.25);
    --footer-color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] {
    --primary-color: #ff6b00;
    --secondary-color: #ff8534;
    --background-start: #f5f5f5;
    --background-end: #e0e0e0;
    --text-color: #333333;
    --card-background: rgba(255, 107, 0, 0.05);
    --card-border: rgba(255, 107, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --footer-color: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--background-start), var(--background-end));
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.05), transparent 50%);
    pointer-events: none;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 10px var(--shadow-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.profile {
    margin-bottom: 40px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    background: var(--glass-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.profile-img-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    padding: 4px;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transform-style: preserve-3d;
}

.profile-img-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(15px);
    z-index: 1;
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.profile-img:hover {
    transform: scale(1.05) translateZ(20px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.7);
}

.profile h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.profile h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.profile:hover h1::after {
    width: 100%;
}

.profile p {
    color: var(--text-color);
    font-size: 1.1em;
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-card {
    background: var(--glass-bg);
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-card:hover::before {
    transform: translateY(0);
}

.link-card span {
    z-index: 1;
    transition: opacity 0.3s ease;
}

.link-card:hover span {
    opacity: 0;
}

.link-card i {
    font-size: 1.3em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.link-card:hover i {
    transform: scale(1.5) translateY(-100%);
    color: white;
}

.link-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.link-card[href*="discord"] {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.link-card[href*="discord"]::before {
    background: linear-gradient(45deg, #5865F2, #7289da);
}

.link-card[href*="whatsapp"] {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.link-card[href*="whatsapp"]::before {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.link-card[href*="instagram"] {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

.link-card[href*="instagram"]::before {
    background: linear-gradient(45deg, #833AB4, #E1306C, #F77737);
}

.link-card[href*="youtube"] {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.link-card[href*="youtube"]::before {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.8em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: white;
}

/* Cores específicas para os ícones sociais */
.social-icon[href*="discord"] {
    color: #5865F2;
}

.social-icon[href*="discord"]::before {
    background: linear-gradient(45deg, #5865F2, #7289da);
}

.social-icon[href*="whatsapp"] {
    color: #25D366;
}

.social-icon[href*="whatsapp"]::before {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-icon[href*="instagram"] {
    color: #E1306C;
}

.social-icon[href*="instagram"]::before {
    background: linear-gradient(45deg, #833AB4, #E1306C, #F77737);
}

.social-icon[href*="youtube"] {
    color: #FF0000;
}

.social-icon[href*="youtube"]::before {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: var(--footer-color);
    opacity: 0.8;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.3s ease;
}

/* Adicionando efeito de animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile, .link-card, .social-icon {
    animation: fadeInUp 0.5s ease forwards;
}

.profile { animation-delay: 0.1s; }
.links a:nth-child(1) { animation-delay: 0.2s; }
.links a:nth-child(2) { animation-delay: 0.3s; }
.links a:nth-child(3) { animation-delay: 0.4s; }
.links a:nth-child(4) { animation-delay: 0.5s; }
.links a:nth-child(5) { animation-delay: 0.6s; }
.social-icons a:nth-child(1) { animation-delay: 0.7s; }
.social-icons a:nth-child(2) { animation-delay: 0.8s; }
.social-icons a:nth-child(3) { animation-delay: 0.9s; }
.social-icons a:nth-child(4) { animation-delay: 1s; }

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-img-container,
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .profile h1 {
        font-size: 2em;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
    
    .profile {
        padding: 20px;
    }
} 