* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --discord-bg: #36393f;
    --discord-dark: #202225;
    --discord-darker: #18191c;
    --discord-blurple: #5865f2;
    --discord-green: #3ba55d;
    --text-primary: #ffffff;
    --text-secondary: #b9bbbe;
    --text-muted: #72767d;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--discord-darker);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

::selection {
    color: var(--discord-blurple);
    background-color: var(--text-primary);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.profile-header {
    background: var(--discord-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.profile-header:hover {
    transform: translateY(-5px);
}

.profile-banner {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.profile-info {
    padding: 80px 30px 30px;
    position: relative;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid var(--discord-dark);
    position: absolute;
    top: -70px;
    left: 30px;
    background: linear-gradient(135deg, var(--discord-blurple), #7289da);
    padding: 4px;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    transition: transform 0.3s ease;
}

.profile-header:hover .profile-avatar {
    transform: scale(1.05) rotate(5deg);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-indicator {
    width: 40px;
    height: 40px;
    background: var(--discord-green);
    border-radius: 50%;
    border: 6px solid var(--discord-dark);
    position: absolute;
    bottom: 5px;
    right: 5px;
    animation: pulse 2s infinite;
}

.profile-details {
    margin-left: 0;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff, var(--discord-blurple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-username {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--discord-blurple);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.about-section {
    background: var(--discord-dark);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.section-title i {
    color: var(--discord-blurple);
    font-size: 24px;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--discord-blurple);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--discord-blurple);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.project-card {
    background: var(--discord-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--discord-blurple);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.3);
}

.project-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(114, 137, 218, 0.1));
}

.project-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--discord-blurple), #7289da);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
    transform: rotate(10deg) scale(1.1);
}

.project-icon img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.project-type {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-body {
    padding: 25px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(88, 101, 242, 0.1);
    color: var(--discord-blurple);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.project-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--discord-blurple);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.project-button:hover {
    background: #4752c4;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--discord-dark);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), var(--discord-dark));
}

.stat-icon {
    font-size: 32px;
    color: var(--discord-blurple);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--discord-blurple), #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .profile-banner {
        height: 150px;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
        top: -50px;
        left: 20px;
    }

    .profile-info {
        padding: 60px 20px 20px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-username {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-details {
        margin-left: 0;
    }

    .project-header {
        flex-direction: column;
        text-align: center;
    }
}

.header {
    width: 80%;
    margin: auto;
    margin-top: 80px;
    padding: 20px;
    background-color: var(--discord-dark);
    border: 2px solid var(--discord-bg);
    border-radius: 10px;
}

.header hr {
    width: 5%;
    border: 2px solid var(--discord-blurple);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header .title {
    font-size: 21px;
    font-weight: bold;
    text-transform: capitalize;
}

.header .content {
    font-size: 17px;
    font-weight: 500;
}

.header form label {
    font-size: 21px;
    font-weight: bold;
}

.header form input[type="text"] {
    border: 2px solid var(--discord-blurple);
    border-radius: 5px;
    background-color: var(--discord-dark);
    color: var(--discord-blurple);
    padding: 5px;
    margin: 10px;
    transition: all 0.4s ease-in;
}

form input[type="text"]:hover {
    border-color: var(--discord-green);
}

form input[type="text"]:focus {
    border: 2px solid var(--discord-blurple);
    background-color: var(--discord-darker);
    color: white;
}   


.container-bakim {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    margin-top: 200px;
    text-align: center;
}

.container-bakim .bakim-image {
    width: 300px;
    height: 300px;
    margin: auto;
}

.container-bakim .title {
    font-size: 27px;
    font-weight: bold;
    padding: 20px;    
    text-transform: uppercase;
}

.container-bakim .content {
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
}