body {
    background-image: url('/assets/image/shieldzy-bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 42px 0 rgba(0,187,0,0.50);
    padding: 30px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 300px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(2px);
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-name {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.profile-bio {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    background: rgba(255,255,255,0.85);
    color: #232526;
    text-decoration: none;
    padding: 6px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s, transform 0.1s, box-shadow 0.18s;
    box-shadow: 0 1.5px 6px rgba(0,187,0,0.10);
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    padding-left: 10px;
    margin: 0 6px;
    border: 1px solid rgba(0,187,0,0.13);
}

.link-btn:hover {
    background: #00bb00;
    color: #fff;
    transform: translateY(-1.5px) scale(1.025);
    box-shadow: 0 4px 16px rgba(0,187,0,0.18);
}

.link-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #fff;
    margin-right: 6px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

#gear-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00bb00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

#gear-button:hover {
    background: #008f00;
    transform: scale(1.05);
}

#main-container, #gear-container {
    transition: transform 0.6s ease-in-out;
}

#main-container.flipped {
    transform: rotateY(180deg);
}

#gear-container.flipped {
    transform: rotateY(0deg);
}

@media (max-width: 500px) {
    .container {
        max-width: 98vw;
        width: 70vw;
        padding: 20px 5vw;
        margin: 24px 0;
        border-radius: 14px;
    }
    .profile-img {
        width: 64px;
        height: 64px;
        margin-bottom: 10px;
    }
    .profile-name {
        font-size: 1.2rem;
    }
    .profile-bio {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
    .link-btn {
        font-size: 0.85rem;
        padding: 5px 0;
        border-radius: 6px;
        padding-left: 8px;
        margin: 0 2px;
        gap: 6px;
    }
    .link-icon {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        margin-right: 4px;
    }
}


