/* --- Global Styles --- */
body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 40px 0;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #6441a5;
    margin-bottom: 10px;
    object-fit: cover;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* --- Button Style --- */
.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 0 45px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s, filter 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* FIXED ICON SIZING */
.icon {
    position: absolute;
    left: 20px;
    width: 18px;   /* Shrinks the icon width */
    height: 18px;  /* Shrinks the icon height */
    fill: currentColor; 
}

/* --- Colors --- */
.twitch { background-color: #6441a5; }
.twitter { background-color: #000000; border: 1px solid #333; }
.discord { background-color: #5865f2; }
.throne { background-color: #2b2b2b; border: 1px solid #ff00ff; }
.credits { background-color: #444; }
.vgen { background-color: #ff3b5c; }
.etsy { background-color: #f36408; }

/* Disabled State */
.disabled {
    background-color: #333 !important;
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
    border: 1px dashed #555;
    transform: none !important;
}

/* --- Credits Page Specifics --- */
.credit-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 10px;
}

.credit-item span {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
    margin-left: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.multi-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.multi-links .btn {
    flex-direction: column;
    padding: 12px 5px;
    min-height: 75px;
    font-size: 0.85rem; /* Slightly smaller text for side-by-side buttons */
}

.multi-links .icon {
    position: static;
    margin-bottom: 6px;
    width: 16px;  /* Even smaller icons for the split buttons */
    height: 16px;
}

.back {
    background-color: transparent;
    border: 1px solid #444;
    margin-top: 15px;
}

.back .icon {
    width: 14px; /* Small arrow icon for back button */
    height: 14px;
}

hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px 0;
}
