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

/* === CITY SKYLINE EFFECT === */
.skyline-layer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 0;
    background-size: auto 100%;
    animation: panBack 300s infinite linear;
    opacity: 0.15;
}

.city-back {
    background: linear-gradient(transparent 50%, #0a0a2a 90%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect fill="%23444" x="10" y="40" width="15" height="60"/><rect fill="%23444" x="30" y="30" width="20" height="70"/><rect fill="%23444" x="55" y="50" width="18" height="50"/><rect fill="%23444" x="80" y="20" width="25" height="80"/><rect fill="%23444" x="115" y="45" width="15" height="55"/><rect fill="%23444" x="140" y="35" width="18" height="65"/><rect fill="%231a1a3f" x="166" y="10" width="30" height="90"/><rect fill="%23555" x="0" y="95" width="200" height="5"/></svg>');
    animation-duration: 200s;
    filter: blur(2px);
}

.city-front {
    background: linear-gradient(transparent 60%, #0a0a1a 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect fill="%23666" x="5" y="60" width="12" height="40"/><rect fill="%23666" x="25" y="50" width="17" height="50"/><rect fill="%23666" x="48" y="70" width="15" height="30"/><rect fill="%23666" x="70" y="40" width="22" height="60"/><rect fill="%23666" x="100" y="65" width="13" height="35"/><rect fill="%23666" x="120" y="55" width="10" height="45"/><rect fill="%23902dd8" x="155" y="30" width="20" height="70"/><rect fill="%23555" x="0" y="95" width="200" height="5"/></svg>');
    animation-duration: 80s;
    opacity: 0.3;
    filter: blur(1px);
}

@keyframes panBack {
    0% { background-position: 0 0; }
    100% { background-position: 2000px 0; }
}

body {
    background: radial-gradient(circle at 30% 30%, #1a0a3d, #0a0a1a, #0a1a0a);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientBg {
    0%, 100% {
        background-position: 0% 50%;
        background-size: 400% 400%;
    }
    25% {
        background-position: 100% 50%;
        background-size: 500% 500%;
    }
    50% {
        background-position: 75% 25%;
        background-size: 600% 600%;
    }
    75% {
        background-position: 25% 75%;
        background-size: 500% 500%;
    }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00ff88, #00ccff, #ff006e);
    border-radius: 50%;
    animation: float infinite linear;
    opacity: 0.7;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.avatar-wrapper {
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #333;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center top;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
        transform: scale(1.05);
    }
}

.profile-avatar:hover {
    border-color: #00ff88;
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-username {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease-in-out infinite, textGlow 1.5s ease-in-out infinite, textFloat 4s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 80px rgba(131, 56, 236, 0.6);
    font-family: 'Inter', sans-serif;
    position: relative;
    line-height: 1.2;
    filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.9)) drop-shadow(0 0 60px rgba(6, 255, 165, 0.7));
}

.profile-username::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3), rgba(6, 255, 165, 0.3));
    border-radius: 12px;
    z-index: -1;
    filter: blur(15px);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.7)) drop-shadow(0 0 40px rgba(6, 255, 165, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 110, 1)) drop-shadow(0 0 80px rgba(6, 255, 165, 0.8));
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.profile-realname {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: -0.8rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.profile-description {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
}

.bio-section {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
}

.bio-section strong {
    color: #00ff88;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.about-image-container {
    margin: 2rem auto;
    text-align: center;
    max-width: 600px; /* Adjust as needed */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    border: 2px solid #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.image-label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #00ff88;
    text-align: center;
    font-style: italic;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.about-video-container {
    margin: 2rem auto;
    text-align: center;
    max-width: 600px; /* Adjust as needed */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.3); /* Different color for video */
    transition: all 0.3s ease;
}

.about-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.5);
}

.about-video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    border: 2px solid #8338ec; /* Different color for video border */
    box-shadow: 0 0 15px rgba(131, 56, 236, 0.6);
    transition: transform 0.3s ease;
}

.about-video:hover {
    transform: scale(1.02);
}

.video-label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8338ec; /* Different color for video label */
    text-align: center;
    font-style: italic;
    text-shadow: 0 0 5px rgba(131, 56, 236, 0.3);
}

.empire-section, .karen-section, .employee-transformation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.empire-section h4, .karen-section h4, .employee-transformation h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.karen-section {
    border-left-color: #ff006e;
}

.karen-section h4 {
    color: #ff006e;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.karen-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
}

.karen-section p strong {
    color: #ff006e;
    text-shadow: 0 0 5px rgba(255, 0, 110, 0.3);
}

.empire-section ul, .employee-transformation ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.empire-section li, .employee-transformation li {
    background: rgba(0, 255, 136, 0.08);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #00ff88;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.empire-section li:hover, .employee-transformation li:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(5px);
}

.empire-section strong, .employee-transformation strong {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.morning-routine, .achievements, .philosophy {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid #ff006e;
}

.morning-routine h4, .achievements h4, .philosophy h4 {
    color: #ff006e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.morning-routine ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.morning-routine li {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.2rem;
    border-left: 3px solid #00ff88;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.morning-routine li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.morning-routine li:hover::before {
    left: 100%;
}

.achievements p, .philosophy p {
    font-size: 1rem;
    line-height: 1.9;
    color: #ccc;
    text-align: justify;
}

.philosophy {
    border-left-color: #8338ec;
}

.philosophy h4 {
    color: #8338ec;
    text-shadow: 0 0 10px rgba(131, 56, 236, 0.5);
}

.philosophy p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ddd;
    text-align: center;
    padding: 1rem;
    background: rgba(131, 56, 236, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(131, 56, 236, 0.2);
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: statFloat 6s ease-in-out infinite;
}

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

.stat:nth-child(2) {
    animation-delay: 1s;
}

.stat:nth-child(3) {
    animation-delay: 2s;
}

.stat:nth-child(4) {
    animation-delay: 3s;
}

/* Add animation delays for new stats */
.stat:nth-child(5) {
    animation-delay: 4s;
}

.stat:nth-child(6) {
    animation-delay: 5s;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.follow-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.follow-btn.following {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #fff;
    border-bottom-color: #00ff88;
}

.tab-btn:hover {
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    animation: cardFloat 8s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0);
    }
    25% {
        transform: translateY(-3px) rotateX(1deg);
    }
    75% {
        transform: translateY(3px) rotateX(-1deg);
    }
}

.project-card:nth-child(even) {
    animation-delay: 2s;
}

.project-card:nth-child(3n) {
    animation-delay: 4s;
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover .project-thumbnail {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.project-description {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: #888;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: #888;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.floating-text {
    position: fixed;
    top: 50%;
    right: -300px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff006e;
    text-shadow: 0 0 30px rgba(255, 0, 110, 1), 0 0 60px rgba(255, 0, 110, 0.5);
    z-index: 1000;
    animation: flashText 3s ease-in-out;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

@keyframes flashText {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(-10deg);
        filter: blur(10px) drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
        filter: blur(0px) drop-shadow(0 0 30px rgba(255, 0, 110, 1));
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(-2deg);
        filter: blur(0px) drop-shadow(0 0 30px rgba(255, 0, 110, 1));
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotate(10deg);
        filter: blur(5px) drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
    }
}

.grindset-philosophy {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border-radius: 12px;
    border: 2px solid #ff006e;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.grindset-philosophy h4 {
    color: #ff006e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.grindset-philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
    text-align: center;
}

.grindset-philosophy p strong {
    color: #ff006e;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.grindset-philosophy ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.grindset-philosophy li {
    background: rgba(255, 0, 110, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid #ff006e;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grindset-philosophy li::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.2), transparent);
    transition: left 0.6s ease;
}

.grindset-philosophy li:hover {
    background: rgba(255, 0, 110, 0.2);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.grindset-philosophy li:hover::before {
    left: 100%;
}

.business-empire {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.business-empire h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-empire ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.business-empire li {
    background: rgba(0, 255, 136, 0.08);
    padding: 1rem 1.2rem;
    border-left: 3px solid #00ff88;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.business-empire li:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.business-empire strong {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.sigma-rules {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(58, 134, 255, 0.1));
    border-radius: 12px;
    border: 2px solid #8338ec;
}

.sigma-rules h4 {
    color: #8338ec;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(131, 56, 236, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

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

.sigma-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(131, 56, 236, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(131, 56, 236, 0.3);
    transition: all 0.3s ease;
}

.sigma-rule:hover {
    background: rgba(131, 56, 236, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(131, 56, 236, 0.3);
}

.rule-number {
    background: #8338ec;
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 0 15px rgba(131, 56, 236, 0.5);
}

.rule-text {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}

.advanced-routine {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid #00ff88;
}

.advanced-routine h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.routine-breakdown {
    display: grid;
    gap: 1.5rem;
}

.time-block {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    transition: all 0.3s ease;
}

.time-block h5 {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.time-block ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.time-block li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.time-block li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.nutrition-protocol {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 190, 11, 0.05);
    border-radius: 12px;
    border: 2px solid #ffbe0b;
}

.nutrition-protocol h4 {
    color: #ffbe0b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 190, 11, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.meal-plan {
    display: grid;
    gap: 1.5rem;
}

.meal {
    background: rgba(255, 190, 11, 0.08);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #ffbe0b;
}

.meal h5 {
    color: #ffbe0b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 190, 11, 0.5);
}

.meal ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.meal li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.meal li:hover {
    background: rgba(255, 190, 11, 0.1);
    transform: translateX(5px);
}

.mindset-training {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(58, 134, 255, 0.05);
    border-radius: 12px;
    border: 2px solid #3a86ff;
}

.mindset-training h4 {
    color: #3a86ff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(58, 134, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.training-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.module {
    background: rgba(58, 134, 255, 0.08);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #3a86ff;
    transition: all 0.3s ease;
}

.module h5 {
    color: #3a86ff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
}

.module ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.module li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.module li:hover {
    background: rgba(58, 134, 255, 0.1);
    transform: translateX(5px);
}

.success-metrics {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 12px;
    border: 2px solid #06ffa5;
}

.success-metrics h4 {
    color: #06ffa5;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(6, 255, 165, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 255, 165, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(6, 255, 165, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 255, 165, 0.3);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #06ffa5;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.8);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weekly-schedule {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid #ff006e;
}

.weekly-schedule h4 {
    color: #ff006e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

.day-schedule {
    background: rgba(255, 0, 110, 0.08);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #ff006e;
    transition: all 0.3s ease;
}

.day-schedule:hover {
    background: rgba(255, 0, 110, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.2);
}

.day-schedule h5 {
    color: #ff006e;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.day-schedule p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }
    
    .profile-header {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .profile-avatar-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        justify-content: center;
    }
    .profile-username {
        font-size: 2.5rem;
    }
    .profile-realname {
        font-size: 1rem;
    }
}