/* MOTARSKI - Rock/Alternative Artist Site */

:root {
    /* Deeper, darker backgrounds for music aesthetic */
    --bg-primary: #000000;
    --bg-secondary: #050508;
    --bg-card: #0a0a0f;
    --bg-elevated: #0f0f18;

    /* Purple/Pink neon accents for rock aesthetic */
    --accent-primary: #ff006e;
    --accent-secondary: #8338ec;
    --accent-tertiary: #3a86ff;
    --accent-glow: rgba(255, 0, 110, 0.5);
    --accent-glow-strong: rgba(255, 0, 110, 0.8);
    --magenta-glow: rgba(131, 56, 236, 0.5);

    /* Cooler text tones */
    --text-primary: #f0f0f5;
    --text-secondary: #a8a8b8;
    --text-dim: #68687a;

    /* Music-focused status colors */
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff0055;
    --bitcoin-orange: #f7931a;

    /* Purple-tinted borders and shadows */
    --border-color: rgba(131, 56, 236, 0.25);
    --border-color-strong: rgba(131, 56, 236, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.95);
    --shadow-neon: 0 0 25px rgba(255, 0, 110, 0.4), 0 0 50px rgba(255, 0, 110, 0.2);
    --shadow-neon-magenta: 0 0 25px rgba(131, 56, 236, 0.5), 0 0 50px rgba(131, 56, 236, 0.25);
}

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

body {
    font-family: 'Sora', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(131, 56, 236, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.05) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Cyberpunk scanline effect */
.grain::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(131, 56, 236, 0.04) 0px,
        transparent 1px,
        transparent 2px,
        rgba(131, 56, 236, 0.04) 3px
    );
    pointer-events: none;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Card */
.hero-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg), var(--shadow-neon);
    border: 2px solid var(--border-color-strong);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 40px var(--accent-glow-strong), 0 0 80px var(--accent-glow);
    transition: all 0.4s;
}

.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 60px var(--accent-glow-strong), 0 0 100px var(--accent-glow), inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.profile-content {
    flex: 1;
    min-width: 300px;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--success), rgba(0, 255, 136, 0.6));
    color: white;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.status-badge.unavailable {
    background: linear-gradient(135deg, #ff6600, #ff3366);
    color: white;
}

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

h1 {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--accent-primary);
    font-weight: 600;
}

.typing-container {
    margin-top: 20px;
}

.typing-container img {
    max-width: 100%;
    height: auto;
}

/* Card Styling */
.card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), var(--shadow-neon);
    border-color: var(--border-color-strong);
}

.card h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card h2::before {
    content: '';
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.skill-card {
    background: var(--bg-elevated);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-neon);
    border-color: var(--accent-primary);
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-icon {
    font-size: 3em;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px var(--accent-glow-strong)) drop-shadow(0 0 40px var(--accent-glow));
}

.skill-icon i {
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon i {
    color: var(--accent-primary);
    filter: brightness(1.3);
    transform: scale(1.1) rotate(5deg);
}

.skill-card h3 {
    font-size: 1.3em;
    color: var(--accent-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.skill-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95em;
}

/* Projects Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(0, 255, 136, 0.05) 100%);
    padding: 40px;
    border-radius: 24px;
    border: 3px solid transparent;
    background-clip: padding-box;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-color);
}

/* Animated gradient border */
.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, var(--success), var(--accent-primary), var(--success));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 4s ease infinite;
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Shine effect on hover */
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
    transition: left 0.8s;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 255, 136, 0.5), 0 0 80px rgba(0, 255, 136, 0.2);
}

.project-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s ease infinite;
}

.project-card:hover::after {
    left: 100%;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    font-size: 2.5em;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6)) drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
}

.project-icon i {
    color: var(--success);
    transition: all 0.3s ease;
}

.project-card:hover .project-icon i {
    transform: scale(1.15) rotate(-5deg);
    filter: brightness(1.2);
}

/* Bitcoin icon - orange color */
.project-icon.bitcoin-icon {
    filter: drop-shadow(0 0 15px rgba(247, 147, 26, 0.6)) drop-shadow(0 0 30px rgba(247, 147, 26, 0.3));
}

.project-icon.bitcoin-icon i {
    color: var(--bitcoin-orange);
}

.project-badge {
    background: var(--success);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card h3 {
    font-size: 1.5em;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tech span {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-family: 'Space Mono', monospace;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

/* Project CTA Button */
.project-card .cta-wrapper {
    position: relative;
    z-index: 10;
}

.project-card:hover .cta-wrapper {
    animation: ctaPulse 1.5s ease-in-out infinite;
}

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

/* Project Features */
.project-features {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    text-align: center;
    min-width: 90px;
}

.feature-title {
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 1.1em;
    }

    .feature-subtitle {
        font-size: 0.75em;
    }

    .project-features {
        gap: 8px;
        padding: 12px;
    }

    .feature-item {
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .project-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 0.95em;
    }

    .feature-subtitle {
        font-size: 0.7em;
    }

    .project-features {
        flex-direction: column;
        gap: 12px;
    }

    .feature-item {
        min-width: 100%;
        padding: 8px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }
}

/* Audio Card */
.audio-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s;
}

.audio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.audio-controls {
    display: flex;
    justify-content: center;
}

.audio-button {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.4);
}

#playIcon {
    font-size: 1.2em;
}

/* Connect Card */
.connect-card {
    text-align: center;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #000;
    border: 2px solid var(--accent-primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-glow);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow-strong), var(--shadow-neon);
}

.button-icon {
    font-size: 1.3em;
}

.button-icon i {
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px 20px;
    color: var(--text-dim);
    font-size: 0.9em;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .hero-card {
        padding: 30px;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 2em;
    }

    .card {
        padding: 30px 20px;
    }

    .card h2 {
        font-size: 1.5em;
    }

    .skills-grid,
    .project-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-card,
    .card,
    .audio-card {
        padding: 20px;
    }

    .skill-card,
    .project-card {
        padding: 24px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 0.95em;
    }
}

/* Cyberpunk glitch effect animation */
@keyframes glitch {
    0%, 100% {
        text-shadow:
            2px 2px 0 var(--accent-primary),
            -2px -2px 0 var(--accent-secondary);
    }
    25% {
        text-shadow:
            -2px 2px 0 var(--accent-primary),
            2px -2px 0 var(--accent-secondary);
    }
    50% {
        text-shadow:
            2px -2px 0 var(--accent-primary),
            -2px 2px 0 var(--accent-secondary);
    }
    75% {
        text-shadow:
            -2px -2px 0 var(--accent-primary),
            2px 2px 0 var(--accent-secondary);
    }
}

/* Subtle pulsing animation for neon elements */
@keyframes neonPulse {
    0%, 100% {
        filter: brightness(1);
        box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    }
    50% {
        filter: brightness(1.2);
        box-shadow: 0 0 30px var(--accent-glow-strong), 0 0 60px var(--accent-glow);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-glow);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow-strong);
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.05);
}

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

.stat-number {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Mono', monospace;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Kubernetes Emphasis */
.kubernetes-emphasis {
    border: 3px solid var(--accent-primary);
    position: relative;
    overflow: visible;
    box-shadow: 0 0 30px var(--accent-glow-strong), 0 0 60px var(--accent-glow);
}

.kubernetes-emphasis::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.15;
    z-index: -1;
}

.kubernetes-emphasis .skill-icon i {
    animation: neonPulse 3s infinite;
}

.kubernetes-emphasis:hover .skill-icon i {
    animation: neonPulse 1.5s infinite;
}

.skill-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 8px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Toolbox Sections */
.toolbox-section {
    margin-bottom: 40px;
}

.toolbox-section:last-of-type {
    margin-bottom: 30px;
}

.toolbox-category {
    font-size: 1.3em;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbox-category i {
    filter: drop-shadow(0 0 15px var(--accent-glow-strong));
}

.toolbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    box-shadow: 0 0 15px var(--accent-glow);
}

.tool-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.tool-icon i {
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.tool-item:hover .tool-icon i {
    filter: drop-shadow(0 0 10px var(--accent-glow-strong));
    transform: scale(1.15);
}

.tool-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95em;
}

.tool-level {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.tool-level.expert {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    animation: expertPulse 3s ease-in-out infinite;
}

@keyframes expertPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
    }
}

.tool-level.advanced {
    background: var(--success);
    color: var(--bg-primary);
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
}

.tool-level.intermediate {
    background: var(--warning);
    color: var(--bg-primary);
}

/* Philosophy Box */
.philosophy-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(112, 0, 255, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}

.philosophy-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.philosophy-icon i {
    color: var(--warning);
    filter: drop-shadow(0 0 15px rgba(255, 170, 0, 0.6));
}

.philosophy-content {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95em;
}

.philosophy-content strong {
    color: var(--accent-primary);
}

/* Project Highlight (AIRE section) */
.project-highlight {
    background: var(--bg-elevated);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.project-highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.project-highlight h3 {
    font-size: 1.5em;
    color: var(--text-primary);
    margin: 0;
}

.project-badge.experimental {
    background: var(--warning);
    color: var(--bg-primary);
}

.project-badge.live {
    background: var(--success);
    color: white;
}

.workflow-diagram {
    font-family: 'Space Mono', monospace;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.9em;
    margin: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.tech-stack-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tech-stack-inline span {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85em;
    font-family: 'Space Mono', monospace;
    border: 1px solid var(--border-color);
}

.info-banner {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(112, 0, 255, 0.1));
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-secondary);
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.info-banner strong {
    color: var(--accent-secondary);
}

/* Fun Facts */
.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.fun-fact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.fun-fact:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.fact-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.fact-content {
    flex: 1;
}

.fact-content strong {
    display: block;
    color: var(--accent-primary);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.fact-content span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.spotify-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.spotify-link:hover {
    color: var(--success);
    text-shadow: 0 0 10px var(--accent-glow);
}

.spotify-link::after {
    content: ' 🎧';
    opacity: 0;
    transition: opacity 0.3s;
}

.spotify-link:hover::after {
    opacity: 1;
}

/* YouTube Card Styling */
.youtube-card {
    display: block;
    height: 152px;
    background: linear-gradient(135deg, #282828, #181818);
    border: 2px solid #303030;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

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

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

.youtube-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.youtube-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.youtube-icon {
    font-size: 48px;
    margin-bottom: 12px;
    color: #FF0000;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.youtube-card:hover .youtube-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8));
}

.youtube-text {
    text-align: center;
    margin-bottom: 12px;
}

.youtube-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Sora', sans-serif;
}

.youtube-handle {
    font-size: 13px;
    color: #aaaaaa;
    font-family: 'Space Mono', monospace;
}

.youtube-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FF0000;
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.youtube-card:hover .youtube-subscribe {
    background: #cc0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

.youtube-subscribe i {
    font-size: 16px;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* Spotify Section Enhancement */
.fun-facts-card h3 i.fa-spotify {
    color: #1DB954;
    margin-right: 8px;
}

/* Terminal Styling - Cyberpunk Edition */
.terminal-wrapper {
    margin-top: 20px;
    max-width: 100%;
}

.terminal {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 0 1px var(--border-color-strong),
        var(--shadow-neon);
    border: 2px solid var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.terminal:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 255, 255, 0.5),
        0 0 80px rgba(0, 255, 255, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border-bottom: 1px solid var(--border-color-strong);
}

.terminal-header .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.terminal-header .red {
    background: var(--danger);
    box-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
}

.terminal-header .yellow {
    background: var(--warning);
    box-shadow: 0 0 8px rgba(255, 170, 0, 0.6);
}

.terminal-header .green {
    background: var(--success);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.terminal-header:hover .dot {
    transform: scale(1.15);
    filter: brightness(1.3);
}

.terminal-header .title-bar {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 18px 20px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    line-height: 1.6;
    min-height: 280px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-secondary);
    position: relative;
}

.terminal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow-strong);
}

.line {
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.prompt {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--accent-glow);
    font-weight: 700;
}

.error {
    color: var(--danger);
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.4);
}

.ok {
    color: var(--success);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.4);
}

.out {
    color: var(--text-secondary);
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    margin-left: 2px;
    background: var(--accent-primary);
    vertical-align: bottom;
    animation: cursorBlink 1s steps(1, start) infinite;
    box-shadow: 0 0 8px var(--accent-glow-strong);
}

@keyframes cursorBlink {
    50% { opacity: 0; }
}

/* Responsive updates */
@media (max-width: 768px) {
    .toolbox-grid {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .philosophy-box {
        flex-direction: column;
        text-align: center;
    }

    .workflow-diagram {
        font-size: 0.75em;
    }

    .terminal {
        max-width: 100%;
    }

    .terminal-wrapper {
        text-align: left;
    }

    .terminal-body {
        max-height: 240px;
        min-height: 240px;
        font-size: 12px;
        padding: 14px 16px 16px;
        text-align: left;
    }

    .terminal-header {
        padding: 10px 14px;
    }

    .line {
        text-align: left;
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    border-color: var(--border-color-strong);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 255, 0.2);
}

.lang-btn {
    padding: 6px 14px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    outline: none;
    text-transform: uppercase;
    min-width: 42px;
}

.lang-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    background: rgba(0, 255, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.lang-btn.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.1);
    position: relative;
}

.lang-btn.active::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        gap: 6px;
    }

    .lang-btn {
        padding: 5px 12px;
        font-size: 12px;
        min-width: 38px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 5px 8px;
        gap: 5px;
    }

    .lang-btn {
        padding: 4px 10px;
        font-size: 11px;
        min-width: 35px;
    }
}

/* ============================================
   ARTIST-SPECIFIC STYLES FOR MOTARSKI
   ============================================ */

/* Artist Hero Section */
.artist-hero .profile-content {
    text-align: center;
}

.artist-name {
    font-size: 4em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.artist-tagline {
    font-size: 1.5em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 300;
}

.artist-subtitle {
    font-size: 1.2em;
    color: var(--text-dim);
    margin-bottom: 30px;
    font-family: 'Space Mono', monospace;
}

/* Streaming Badges */
.streaming-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.stream-badge.spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: #000;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
}

.stream-badge.spotify:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(29, 185, 84, 0.6);
}

.stream-badge.youtube {
    background: linear-gradient(135deg, #FF0000, #ff3333);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.stream-badge.youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

/* YouTube Section Enhancements */
.youtube-card-large {
    display: block;
    background: var(--bg-elevated);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 700px;
    margin: 0 auto;
}

.youtube-card-large:hover {
    border-color: #FF0000;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.youtube-card-large .youtube-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.youtube-icon-large {
    font-size: 5em;
    color: #FF0000;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.youtube-text-large {
    flex: 1;
}

.youtube-title-large {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.youtube-handle-large {
    font-size: 1.3em;
    color: var(--accent-primary);
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
}

.youtube-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.youtube-subscribe-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FF0000, #ff3333);
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.youtube-card-large:hover .youtube-subscribe-large {
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

/* Connect Section Platform Buttons */
.spotify-btn {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.2), rgba(30, 215, 96, 0.2));
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.3), rgba(30, 215, 96, 0.3));
    box-shadow: 0 0 30px rgba(29, 185, 84, 0.4);
}

.youtube-btn {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 51, 51, 0.2));
    border-color: #FF0000;
}

.youtube-btn:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 51, 51, 0.3));
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

/* Responsive adjustments for artist styles */
@media (max-width: 768px) {
    .artist-name {
        font-size: 2.5em;
    }

    .artist-tagline {
        font-size: 1.2em;
    }

    .artist-subtitle {
        font-size: 1em;
    }

    .streaming-badges {
        flex-direction: column;
    }

    .stream-badge {
        width: 100%;
        justify-content: center;
    }

    .youtube-card-large {
        padding: 24px;
    }

    .youtube-title-large {
        font-size: 1.8em;
    }

    .youtube-handle-large {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 2em;
    }

    .youtube-icon-large {
        font-size: 3.5em;
    }

    .youtube-title-large {
        font-size: 1.5em;
    }
}
