body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Perubahan di sini */
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a2e;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2ecc71, #3498db);
    z-index: -1;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255,255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 30px 20px;
    box-sizing: border-box;
}

.profile-header {
    margin-bottom: 25px;
}

.profile-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #40E0D0;
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7), 0 0 25px rgba(0, 255, 255, 0.5);
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    border-image: linear-gradient(to right, #ff0099, #4900ff) 1;
    border: 5px solid #87CEEB
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 2em;
    font-weight: 600;
    color: #fff; /* Mengubah warna teks nama */
    margin-bottom: 5px;
}

.email {
    font-size: 0.9em;
    color: #fff;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}

.location {
    font-size: 0.9em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
    background: transparent;
    border-radius: 15px;
    border: 2px solid rgba(255, 255,255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.facebook { background: linear-gradient(to bottom right, #1877F2, #0d4a97); }
.instagram { background: linear-gradient(to bottom right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.x-twitter { background: #000; }
.discord { background: linear-gradient(to bottom right, #5865F2, #444edc); }
.telegram { background: linear-gradient(to bottom right, #0088CC, #005f99); }
.github { background: #333; }
.games { background: linear-gradient(to bottom right, #4CAF50, #2E8B57); }

/* --- Gaya untuk halaman profil game --- */
.game-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2)
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.game-card {
    background: #2c3e50; /* Warna abu-abu gelap */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 102%;
    max-width: 600px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-card-header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 15px 25px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #5d3587;
}

.game-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
}

.game-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    margin-left: 25px;
}

.game-info h3 {
    margin-top: 0;
    color: #fff;
}

.game-info p {
    margin: 5px 0;
    color: #fff;
}

.back-button-container {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s;
}

.back-button:hover {
    background: #2c3e50;
}
