/* Braz - Content Creator & Crypto Influencer Styles */

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background */
.braz-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.element-4 { bottom: 15%; right: 25%; animation-delay: 3s; }
.element-5 { top: 50%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.pulse-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.wave-1 { width: 100px; height: 100px; animation-delay: 0s; }
.wave-2 { width: 200px; height: 200px; animation-delay: 1s; }
.wave-3 { width: 300px; height: 300px; animation-delay: 2s; }

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Header Banner */
.header-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.creator-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge.live { border-color: #ff0000; }
.badge.verified { border-color: #00ff00; }
.badge.elite { border-color: #ffd700; }

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner-title {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.banner-title h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
    50% { text-shadow: 0 0 30px rgba(255, 0, 255, 0.8); }
}

.banner-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profile Section */
.profile-section {
    padding: 40px 0;
}

.profile-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.avatar-container {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff0000, #ff7700, #ffdd00, #00ff00, #0099ff, #6600ff, #ff0080, #ff0000);
    animation: ringRotate 3s linear infinite;
    z-index: 1;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ring-pulse {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.avatar-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.spark {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #fff, transparent);
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.spark-1 { top: 10%; left: 80%; animation-delay: 0s; }
.spark-2 { top: 30%; right: 5%; animation-delay: 0.5s; }
.spark-3 { bottom: 20%; left: 10%; animation-delay: 1s; }
.spark-4 { bottom: 40%; right: 20%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.profile-info {
    flex: 1;
}

.username {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fire-icon, .gem-icon {
    font-size: 2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bio {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.creator-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ff80;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff0080, #00ff80, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Main Platforms Section */
.main-platforms {
    padding: 60px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.platform-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.platform-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00ff80;
}

.platform-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.platform-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Crypto Section */
.crypto-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.05));
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.crypto-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.crypto-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: cryptoRotate 4s ease-in-out infinite;
}

@keyframes cryptoRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.crypto-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffd700;
}

.crypto-content p {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.crypto-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Social Section */
.social-section {
    padding: 60px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.social-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon {
    font-size: 2rem;
    animation: socialBounce 2s ease-in-out infinite;
}

@keyframes socialBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.social-info {
    flex: 1;
}

.social-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #00ff80;
}

.social-info p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.social-arrow {
    font-size: 1.5rem;
    color: #00ff80;
    transition: transform 0.3s ease;
}

.social-card:hover .social-arrow {
    transform: translateX(10px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    text-align: center;
}

.cta-container h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ff0080, #ff6b00);
    color: white;
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #00ff80;
    border: 2px solid #00ff80;
}

.cta-btn.secondary:hover {
    background: #00ff80;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 128, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.8));
    padding: 40px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.brand {
    color: #00ff80;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    transition: color 0.3s ease;
}

.brand:hover {
    color: #ff0080;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-banner {
        height: 200px;
        margin: 10px;
    }
    
    .banner-title h1 {
        font-size: 2rem;
    }
    
    .banner-title p {
        font-size: 1rem;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .username {
        font-size: 2rem;
        justify-content: center;
    }
    
    .creator-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 