/* Header Styles */
body {
    padding: 20px;
}

header {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.15) 0%, 
        rgba(0, 255, 65, 0.15) 50%,
        rgba(255, 20, 147, 0.15) 100%);
    border: 2px solid var(--concrete-gray);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    animation: fadeInUp 1s ease-out;
}

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

header h1 {
    font-family: 'Staatliches', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--neon-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 0px var(--toxic-purple),
        0 0 20px rgba(138, 43, 226, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            2px 2px 0px var(--toxic-purple),
            0 0 20px rgba(138, 43, 226, 0.5);
    }
    50% {
        text-shadow: 
            2px 2px 0px var(--toxic-purple),
            0 0 30px rgba(138, 43, 226, 0.7),
            0 0 40px rgba(0, 255, 65, 0.3);
    }
}

.subtitle_s {
    color: var(--dirty-white);
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: 'JetBrains Mono', monospace;
    font-style: italic;
}

/* Main Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.profile-container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.left-column, .right-column {
    flex: 1;
    min-width: 300px;
}

/* Card Styles */
.card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(44, 44, 44, 0.8) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid var(--concrete-gray);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.card h2 {
    font-family: 'Staatliches', cursive;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--neon-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--toxic-purple), var(--electric-blue));
    border-radius: 2px;
}

.card p {
    color: var(--dirty-white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card strong {
    color: var(--toxic-green);
    font-weight: 700;
}

/* Badge Styles */
.badges {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.badge {
    background: linear-gradient(135deg, 
        var(--toxic-purple), 
        var(--electric-blue));
    color: var(--neon-white);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.badge::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 ease;
}

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

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

/* List Styles */
ul {
    list-style: none;
    margin-top: 1rem;
}

li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.5);
    transition: all 0.3s ease;
}

li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

li a:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: var(--toxic-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
    
    header {
        padding: 2rem 1.5rem;
    }
    
    .profile-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .left-column, .right-column {
        min-width: 100%;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .badges {
        justify-content: center;
    }
}

/* Animation for cards */
.card {
    animation: cardSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.left-column .card {
    animation-delay: 0.2s;
}

.right-column .card {
    animation-delay: 0.4s;
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced empty state */
.subtitle_s:only-child {
    text-align: center;
    color: var(--concrete-gray);
    font-style: italic;
    padding: 2rem;
    background: rgba(44, 44, 44, 0.2);
    border-radius: 8px;
    border: 1px dashed var(--concrete-gray);
}
