html, body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: Calibri, sans-serif;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pfp-wrapper {
    position: relative;
    display: inline-block;
}

.pfp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.status-dot {
    position: absolute;
    bottom: 10px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2.5px solid black;
    background-color: #555;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

.username {
    font-size: 20px;
}

.lil-title {
    font-size: 10px;
    color: #ccc;
}

.bungee-regular {
    font-family: "Bungee", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.divider {
    border: none;
    border-top: 1px solid #333;
    margin: 14px 0;
}

.active-label {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.active-time {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: default;
    text-align: center;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease;
    z-index: 1;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.time-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.time-row .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: white;
}

.time-row .time span {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.toggle-container-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 12px;
    padding-left: 8px;
    font-weight: 300;
    font-size: 12px;
    color: #ccc;
    user-select: none;
}

.toggle-switch {
    position: relative;
    width: 16px;
    height: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    z-index: 1;
}

.slider::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 1px;
    top: 1px;
    background-color: #bbb;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.toggle-switch input:checked + .slider {
    background-color: #666;
}

.toggle-switch input:checked + .slider::before {
    transform: translateX(6px);
    background-color: #ddd;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.link-button {
    background-color: #3a3a3a;
    color: white;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
    position: relative;
    gap: 4px;
}

.main-label {
    flex-shrink: 0;
}

.hover-label {
    opacity: 0;
    color: #aaa;
    font-size: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-4px);
    white-space: nowrap;
}

.link-button:hover .hover-label {
    opacity: 1;
    transform: translateX(0);
}

.external-icon {
    font-size: 12px;
    color: #ccc;
    margin-left: auto;
}

.contact-text {
    font-size: 11px;
    margin-left: auto;
    padding-right: 8px;
    white-space: nowrap;
}
.email-to {
    color: #cccccc;
    text-decoration: none;
}
.email-to:hover {
    color: #aaa;
    text-decoration: underline;
}