@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.layout-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    align-items: stretch;
}

.profile-card {
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(255, 255, 255, 0.1),
                0 0 50px rgba(255, 255, 255, 0.07),
                0 0 75px rgba(255, 255, 255, 0.05);
    padding: 40px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
}

.side-containers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    gap: 20px;
}

.spotify-card, .discord-card {
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(255, 255, 255, 0.1),
                0 0 50px rgba(255, 255, 255, 0.07),
                0 0 75px rgba(255, 255, 255, 0.05);
    padding: 12px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    display: flex;
    align-items: center;
}

.discord-card {
    background: #1a1a1a;
    overflow: hidden;
    padding: 0;
}

.discord-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.discord-content img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.discord-content img:hover {
    transform: scale(1.02);
}

.discord-join-btn {
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4),
                0 0 20px rgba(255, 255, 255, 0.1),
                0 0 40px rgba(88, 101, 242, 0.2);
}

.discord-join-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-join-btn i {
    font-size: 1.2rem;
}

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

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(255, 255, 255, 0.1),
                0 0 50px rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.profile-info {
    flex: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.title {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 16px;
    font-weight: 500;
}

.bio {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 24px;
    line-height: 1.7;
}

.badges-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

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

.badge {
    background: #252525;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 255, 255, 0.08),
                0 0 40px rgba(255, 255, 255, 0.05);
}

.badge.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.badge.vip i {
    color: #000;
}

.badge.vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffe033 0%, #ffbf5e 100%);
}

.badge.prestige {
    background: linear-gradient(135deg, #9b4dff 0%, #7c3acd 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(155, 77, 255, 0.2);
}

.badge.prestige i {
    color: #ffd700;
}

.badge.prestige:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 77, 255, 0.4);
    background: linear-gradient(135deg, #a666ff 0%, #8c4de0 100%);
}

.badge.user {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.2);
}

.badge.user i {
    color: white;
}

.badge.user:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #5cbd60 0%, #4caf50 100%);
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    background: #2a2a2a;
    border-color: #444;
}

.social-link.discord {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-left: 16px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4),
                0 0 20px rgba(255, 255, 255, 0.1),
                0 0 40px rgba(88, 101, 242, 0.2);
}

.social-link.discord:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    background: #4752C4;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.road-rage-font {
    font-family: 'Road Rage', cursive;
    font-size: 4rem;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #007bff, #ffffff, #007bff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    text-shadow: none;
    letter-spacing: 2px;
}

.audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1a1a1a;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.1),
                0 0 40px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
}

.audio-control:hover {
    transform: scale(1.1);
    background: #252525;
}

.audio-control.muted i::before {
    content: "\f6a9";  /* Font Awesome muted icon */
}

@media (max-width: 1024px) {
    .layout-wrapper {
        flex-direction: column;
    }

    .side-containers {
        width: 100%;
        flex-direction: row;
    }

    .spotify-card, .discord-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }

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

    .badges {
        justify-content: center;
    }

    .badges-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .side-containers {
        flex-direction: column;
    }

    .social-link.discord {
        margin-left: 0;
    }
} 