/* Luxury Role Descriptions - Ultra Premium Textured UI */
.luxury-role-section {
    position: relative;
    padding: 8rem 2rem;
    margin: 4rem auto;
    max-width: 1400px;
    background: transparent;
    border-radius: 4rem 1rem 4rem 1rem;
    outline: 1px solid rgba(212, 175, 55, 0.15);
    outline-offset: -20px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* Premium Gold Mesh / Grain Texture */
.luxury-role-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background-image: 
        repeating-linear-gradient(45deg, rgba(212,175,55,0.04) 0px, rgba(212,175,55,0.04) 1px, transparent 1px, transparent 6px),
        repeating-linear-gradient(-45deg, rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 1px, transparent 1px, transparent 6px);
    opacity: 0.8;
}

/* Ambient Drifting Lights & Bokeh */
.luxury-role-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(123, 225, 255, 0.08) 0%, transparent 50%),
        radial-gradient(2px 2px at 20px 30px, rgba(212,175,55,0.8), rgba(0,0,0,0)),    
        radial-gradient(2.5px 2.5px at 140px 100px, rgba(123,225,255,0.6), rgba(0,0,0,0)),    
        radial-gradient(1.5px 1.5px at 90px 40px, rgba(212,175,55,0.9), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 100% 100%, 100% 100%, 250px 250px, 350px 350px, 150px 150px;
    animation: roles-ambient-drift 70s linear infinite;
    mix-blend-mode: color-dodge;
}

@keyframes roles-ambient-drift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, -400px 400px, 300px -300px, -200px -200px; }
}

.lr-heading {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.lr-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #e6c553;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    animation: pulse-eyebrow 4s ease-in-out infinite alternate;
}

@keyframes pulse-eyebrow {
    from { box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); }
    to { box-shadow: 0 0 35px rgba(212, 175, 55, 0.4); border-color: rgba(212, 175, 55, 0.6); }
}

.lr-heading h2 {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 30%, rgba(212, 175, 55, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.lr-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Monolith Grid System */
.lr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

/* Base Monolith Card */
.lr-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.6) 100%);
    border-radius: 40px 10px 40px 10px; /* Cyber-luxury asymmetric corners */
    padding: 3rem 2.5rem;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.7), 
        inset 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
}

/* Moving Neon Laser Mask */
.lr-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #1ffff0, transparent);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: card-laser-sweep 4s linear infinite;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

@keyframes card-laser-sweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Inner Light Sweep Shimmer */
.lr-card::before {
    content: '';
    position: absolute;
    top: -100%; left: -100%;
    width: 300%; height: 300%;
    background: linear-gradient(45deg, transparent 45%, rgba(212,175,55,0.08) 50%, transparent 55%);
    transform: translateY(0) scale(1);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 10;
}

.lr-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: linear-gradient(145deg, rgba(212,175,55,0.06) 0%, rgba(0,0,0,0.8) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.9), 
        0 15px 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lr-card:hover::after {
    opacity: 1;
    background: linear-gradient(90deg, #d4af37, #fff, #1ffff0);
    background-size: 200% 100%;
}

.lr-card:hover::before {
    transform: translateY(20%) translateX(20%);
}

/* Holographic Watermark */
.lr-card-glow {
    position: absolute;
    right: 1.5rem; bottom: 1.5rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
    z-index: 0;
}

.lr-grid .lr-card:nth-child(1) .lr-card-glow::after { content: '01'; }
.lr-grid .lr-card:nth-child(2) .lr-card-glow::after { content: '02'; }
.lr-grid .lr-card:nth-child(3) .lr-card-glow::after { content: '03'; }

.lr-card:hover .lr-card-glow {
    color: rgba(212,175,55,0.06);
    transform: translate(-10px, -10px) scale(1.1);
    text-shadow: 0 0 30px rgba(212,175,55,0.1);
}

/* Card Header */
.lr-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.lr-card-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
    transition: width 0.4s ease;
}

.lr-card:hover .lr-card-header::after {
    width: 100%;
}

.lr-icon-box {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.8rem;
    background: rgba(10, 15, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px 6px 20px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 20px rgba(212,175,55,0.15);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.lr-icon-box::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(123,225,255,0.3);
    border-radius: inherit;
    animation: icon-spin 10s linear infinite;
}

@keyframes icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lr-icon-box svg {
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.4));
    transition: all 0.4s ease;
}

.lr-card:hover .lr-icon-box {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(212,175,55,0.3), 0 0 30px rgba(212,175,55,0.2);
    border-color: #d4af37;
    border-radius: 6px 20px 6px 20px;
}

.lr-card:hover .lr-icon-box svg {
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.8));
}

.lr-card h3 {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #fff, #b8c4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.lr-card:hover h3 {
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    text-shadow: 0 0 25px rgba(212,175,55,0.3);
}

/* List Items */
.lr-list {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.lr-list li {
    position: relative;
    padding: 1.2rem 1rem 1.2rem 3rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.lr-list li:last-child {
    border-bottom: none;
}

/* Animated Golden Hexagon bullet */
.lr-list li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.6rem;
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lr-card:hover .lr-list li {
    color: rgba(255,255,255,0.9);
    transform: translateX(5px);
}

.lr-card:hover .lr-list li::before {
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 10px #d4af37;
    transform: rotate(135deg) scale(1.2);
}

.lr-item-label {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.lr-item-desc {
    display: block;
    font-weight: 400;
}

/* Emphasized Footer Tag */
.lr-card-footer {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #8fa0b3;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.lr-card:hover .lr-card-footer {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* Premium Tags */
.lr-bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.lr-bonus-tags span {
    font-size: 0.75rem;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 2px solid rgba(255,255,255,0.2);
    color: #cbd4de;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lr-card:hover .lr-bonus-tags span {
    background: linear-gradient(90deg, rgba(212,175,55,0.15), transparent);
    border-left-color: #d4af37;
    border-color: rgba(212,175,55,0.4);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

@media(max-width: 1200px) {
    .lr-grid { gap: 2rem; }
    .lr-card { padding: 3rem 1.8rem; }
}

@media(max-width: 960px) {
    .luxury-role-section { border-radius: 2rem; padding: 4rem 1.5rem; }
    .lr-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .lr-card:hover { transform: translateY(-10px); }
}
