* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: #0f1419;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
}

.profile-section {
    flex: 0 0 300px;
    background: linear-gradient(180deg, #1e3a5f 0%, #2d1b4e 100%);
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #374151;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #e5e7eb;
}

.tagline {
    font-size: 16px;
    opacity: 0.8;
    text-align: center;
    color: #9ca3af;
}

.blake {
    font-size: 15px;
    opacity: 0.8;
    text-align: center;
    color: #9ca3af;
}

.info-section {
    flex: 1;
    padding: 40px;
    background: #0f1419;
}

.info-section h2 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 28px;
}

.info-card {
    background: #1a202c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.info-card h3 {
    color: #e5e7eb;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 15px;
}

.learning-card {
    background: #1a202c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.learning-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.learning-card h3 {
    color: #e5e7eb;
    margin-bottom: 10px;
    font-size: 18px;
}

.learning-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 15px;
}

.server-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.server-link:hover {
    color: #93c5fd;
    border-bottom: 2px solid #60a5fa;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: transform 0.2s;
}

.skill-tag:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .profile-section {
        flex: none;
        padding: 30px 20px;
        border-left: none;
        border-bottom: 1px solid #374151;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }

    .username {
        font-size: 26px;
    }

    .info-section {
        padding: 30px 20px;
    }

    .info-section h2 {
        font-size: 24px;
    }
}