/* =========================================
   PAGES CSS - Career, Policy Pages
   ========================================= */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, #050508 0%, #0a0a0f 100%);
    text-align: center;
}

.page-hero .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero h1 span {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-desc {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Why Join Section */
.why-join {
    padding: 100px 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #818cf8;
}

.benefit-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* Open Positions */
.open-positions {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 50px;
}

.positions-list {
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.position-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.position-dept {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.position-info h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.position-meta {
    display: flex;
    gap: 20px;
}

.position-meta span {
    color: #64748b;
    font-size: 14px;
}

.position-meta i {
    margin-right: 6px;
    color: #94a3b8;
}

.btn-apply {
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-apply:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   POLICY PAGES
   ========================================= */

.policy-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 50px;
}

.policy-container h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.policy-container .last-updated {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.policy-container h3 {
    color: #fff;
    font-size: 20px;
    margin: 35px 0 15px;
}

.policy-container p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-container ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.policy-container ul li {
    color: #94a3b8;
    font-size: 15px;
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.policy-container ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 12px;
}

.policy-container a {
    color: #818cf8;
    transition: color 0.3s;
}

.policy-container a:hover {
    color: #a5b4fc;
}

/* Responsible Gaming Specific */
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.warning-box h4 {
    color: #ef4444;
    font-size: 16px;
    margin-bottom: 10px;
}

.warning-box p {
    color: #fca5a5;
    font-size: 14px;
    margin: 0;
}

.help-resources {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.help-resources h4 {
    color: #10b981;
    font-size: 18px;
    margin-bottom: 15px;
}

.help-resources ul li::before {
    color: #10b981;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .position-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .position-meta {
        justify-content: center;
    }

    .policy-container {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 40px 25px;
    }
}
