:root {
    --bg-dark: #000000;
    --card-bg: rgba(25, 25, 25, 0.8);
    --card-border: rgba(255, 127, 81, 0.4);
    --accent-glow: #FF7F51;
    --accent-dark: #cc5500;
    --accent-red: #FF7F51;
    --accent-orange: #FF9B54;
    --accent-light: #FF9B54;
    --text-main: #ffffff;
}

* {
    box-sizing: border-box;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle, var(--accent-glow) 30%, transparent 90%);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

#centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 550px;
    padding: 40px 20px;
}

.avatar-container {
    position: relative;
    margin-bottom: 20px;
}

.avatar-container::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    z-index: -1;
    opacity: 0.8;
    filter: blur(10px);
}

#av {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--accent-red), var(--accent-orange)) border-box;
    display: block;
    box-shadow: 0 0 45px var(--accent-glow);
}

.verification-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background-color: #f13c45;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(241, 60, 69, 0.4), 0 4px 8px rgba(0,0,0,0.5);
    z-index: 10;
    box-shadow: 0 0 45px var(--accent-glow);
}

.verification-badge svg {
    width: 22px;
    height: 22px;
}

#name {
    margin: 0 0 30px 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.link {
    margin: 10px 0;
    width: 100%;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 127, 81, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    border-color: rgba(206, 66, 87, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

/* CaseHug Card Specifics */
#a18pl {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

#a18pl::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(206, 66, 87, 0.1), transparent);
    pointer-events: none;
}

#a18pl img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid var(--accent-dark);
}

#a18pltext {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.agelimit {
    color: white;
    background: var(--accent-red);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(206, 66, 87, 0.4);
}

.desc-text {
    margin: 0 0 15px 0;
    font-size: 0.85rem;
    color: #a19a9c;
    font-weight: 400;
    line-height: 1.4;
}

.money {
    color: var(--accent-light);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 155, 84, 0.4);
}

#money-swap {
    display: inline;
}

#money-swap::after {
    content: '|';
    animation: blink 1s step-end infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.row {
    display: flex;
    gap: 10px;
}

.btn-secondary, .btn-primary {
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.btn-secondary {
    background: rgba(114, 0, 38, 0.2);
    border: 1px solid var(--accent-dark);
    color: var(--accent-red);
}

#cutoutref {
    width: 130px;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(114, 0, 38, 0.4);
    border-color: var(--accent-red);
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    flex: 1;
    box-shadow: 0 4px 15px rgba(206, 66, 87, 0.3);
}

.btn-primary:hover {
    background: #e04a62;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 66, 87, 0.5);
}

/* Extra Social Link */
.extra-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.icon-youtube {
    background: linear-gradient(135deg, #ff0000, #990000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.icon-tiktok {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 26px;
    height: 26px;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.link-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #a19a9c;
}

.chevron {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nomargin {
    margin: 0;
}

footer {
    opacity: 10%;
}