/* BACKGROUND */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #6a0032 0%, #3a005f 40%, #1a002e 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
}

/* PARTICLES */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 40, 60, 0.75);
    border-radius: 50%;
    filter: blur(2px) drop-shadow(0 0 6px rgba(255, 0, 40, 0.9));
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0.4; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

/* NAVBAR */
.custom-nav {
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 5;
}

/* CONTENT */
.content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* PROFILE PIC */
.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 40px auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARDS (slightly smaller) */
.card-block {
    background: rgba(20, 22, 35, 0.75);
    border-radius: 16px;
    padding: 22px 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 80, 120, 0.25);
    box-shadow:
        0 0 30px rgba(0,0,0,0.7),
        0 0 12px rgba(255, 40, 60, 0.25),
        inset 0 0 14px rgba(255,255,255,0.03);

    margin: 0 auto 40px auto;   /* centers it */
    max-width: 700px;           /* 👈 control width here */
    width: 90%;                 /* responsive */
}

.icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.service-bubble {
    color: #fff;
    text-decoration: none;
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* SOCIAL GRID (unchanged layout) */
.social-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* SOCIAL BUTTONS — now with hover effect */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 18px rgba(0,0,0,0.7),
        0 0 10px rgba(255, 40, 60, 0.25);
}

/* FIX SVG SIZING */
.social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

/* Social colors */
.discord { background: #5865F2; }
.twitter { background: #1DA1F2; }
.bluesky { background: #0285FF; }
.telegram { background: #2AABEE; }
.steam { background: #1b2838; }
.email { background: #b02c28; }
.interest { background: #673ab7; }
.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* SERVICES GRID */
.service-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

/* mobile */
@media (max-width: 500px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-bubble {
    padding: 12px 16px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #4a0030, #1a0015);
    border: 1px solid rgba(255, 80, 120, 0.25);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    box-shadow:
        0 0 18px rgba(0,0,0,0.7),
        0 0 10px rgba(255, 40, 60, 0.25);
    transition: 0.2s;
}

.service-bubble:hover {
    transform: translateY(-3px);
    background: radial-gradient(circle at top left, #6a0040, #1a0015);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}
