/* ╔══════════════════════════════════════════╗
   ║         VALCREST RP — Main Styles        ║
   ║     Blue & White Professional Theme      ║
   ╚══════════════════════════════════════════╝ */

/* ─── CSS Variables ─── */
:root {
    --primary: #0a74da;
    --primary-light: #1e90ff;
    --primary-dark: #0856a6;
    --primary-glow: rgba(10, 116, 218, 0.3);
    --accent: #00bfff;

    --white: #ffffff;
    --off-white: #f0f4f8;
    --light-gray: #e2e8f0;
    --medium-gray: #94a3b8;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-medium: #334155;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--white);
    background: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 116, 218, 0.15);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    border: 1px solid rgba(10, 116, 218, 0.25);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(10, 116, 218, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 116, 218, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(10, 116, 218, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-logo i {
    font-size: 1.6rem;
    color: var(--primary-light);
}

.nav-logo .accent {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(10, 116, 218, 0.15);
}

.nav-link.active {
    color: var(--primary-light);
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #0a1628 30%, #0c2d5a 60%, #0856a6 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 20% 50%, rgba(10, 116, 218, 0.2), transparent),
        radial-gradient(ellipse 600px 300px at 80% 30%, rgba(0, 191, 255, 0.12), transparent),
        radial-gradient(ellipse 400px 200px at 50% 80%, rgba(10, 116, 218, 0.08), transparent);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 116, 218, 0.2);
    border: 1px solid rgba(10, 116, 218, 0.35);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ─── Feature Cards ─── */
.features {
    padding: 100px 0;
    position: relative;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 116, 218, 0.2);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(10, 116, 218, 0.15), rgba(0, 191, 255, 0.08));
    margin-bottom: 24px;
    font-size: 1.6rem;
    color: var(--primary-light);
    border: 1px solid rgba(10, 116, 218, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Info / About Section ─── */
.info-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark), var(--dark-light));
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content p {
    color: var(--medium-gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-list-item:hover {
    border-color: rgba(10, 116, 218, 0.2);
    background: rgba(10, 116, 218, 0.05);
}

.info-list-item i {
    font-size: 1.2rem;
    color: var(--primary-light);
    width: 24px;
    text-align: center;
}

.info-list-item span {
    font-weight: 500;
}

.info-image {
    position: relative;
}

.info-image-card {
    background: linear-gradient(135deg, rgba(10, 116, 218, 0.15), rgba(30, 41, 59, 0.6));
    border: 1px solid rgba(10, 116, 218, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.info-image-card .big-icon {
    font-size: 5rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px rgba(10, 116, 218, 0.4));
}

.info-image-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-image-card p {
    color: var(--medium-gray);
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 116, 218, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 200px at 20% 20%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(ellipse 300px 200px at 80% 80%, rgba(0, 191, 255, 0.1), transparent);
}

.cta-card * {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* ─── Page Header ─── */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #020617 0%, #0a1628 50%, #0c2d5a 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 50% 50%, rgba(10, 116, 218, 0.15), transparent);
}

.page-header * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ─── Rules ─── */
.rules-section {
    padding: 80px 0 100px;
    background: var(--dark);
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: var(--transition);
}

.rule-item:hover {
    border-color: rgba(10, 116, 218, 0.2);
    transform: translateX(8px);
}

.rule-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
}

.rule-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.rule-content p {
    color: var(--medium-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ─── Staff Cards ─── */
.staff-section {
    padding: 80px 0 100px;
    background: var(--dark);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.staff-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 116, 218, 0.25);
    box-shadow: var(--shadow-glow);
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-avatar {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 24px;
    font-size: 2.2rem;
    box-shadow: 0 0 30px rgba(10, 116, 218, 0.35);
}

.staff-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.staff-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 116, 218, 0.15);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(10, 116, 218, 0.25);
}

/* ─── Contact ─── */
.contact-section {
    padding: 80px 0 100px;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(10, 116, 218, 0.2);
    background: rgba(10, 116, 218, 0.05);
}

.contact-info-card .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 116, 218, 0.15), rgba(0, 191, 255, 0.08));
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    color: var(--primary-light);
    border: 1px solid rgba(10, 116, 218, 0.2);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
}

.form-group input,
.form-group textarea {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── Footer ─── */
.footer {
    padding: 80px 0 0;
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-light);
    font-size: 1.4rem;
}

.footer-desc {
    color: var(--medium-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-links li i {
    font-size: 0.7rem;
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.footer-bottom p+p {
    margin-top: 4px;
}

/* ─── Scroll to top ─── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(10, 116, 218, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(10, 116, 218, 0.5);
}

/* ─── Page Content ─── */
.page-content {
    padding: 80px 0 100px;
    background: var(--dark);
}

.page-content .content-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content .content-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
}

.page-content .content-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 48px 28px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-content .content-card {
        padding: 32px 24px;
    }

    /* Mobile Dropdown Fixes */
    .nav-dropdown {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(10, 116, 218, 0.05);
        border: none;
        border-left: 2px solid var(--primary-light);
        padding: 5px 10px;
        opacity: 0;
        visibility: hidden;
        height: 0;
        transform: none;
        margin-top: 5px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:active .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 10px;
    }

    .dropdown-menu li a {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* ─── Navbar Dropdown ─── */
.nav-dropdown {
    position: relative;
    padding: 10px 0;
    /* Add padding to increase hover area */
}

.nav-dropdown .dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    margin-top: -10px;
    /* Pull it up slightly to overlap the hover area */
}

/* Invisible bridge so mouse doesn't fall off during hover */
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.nav-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 6px;
    border: 1px solid var(--primary-light);
}

.nav-avatar-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.nav-profile-link {
    display: flex;
    align-items: center;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--white);
    background: rgba(10, 116, 218, 0.15);
}

.dropdown-menu li a i {
    font-size: 0.9rem;
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

/* ─── Discord Button ─── */
.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

/* ─── Whitelist Login Card ─── */
.whitelist-login-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.whitelist-login-card .login-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    margin: 0 auto 28px;
    font-size: 2.4rem;
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.35);
}

.whitelist-login-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.whitelist-login-card p {
    color: var(--medium-gray);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ─── Application Progress Bar ─── */
.app-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 20px;
}

.app-progress::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    width: 100px;
}

.progress-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.progress-step.completed .progress-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.progress-step.completed .progress-label {
    color: #10b981;
}

.progress-step.active .progress-icon {
    background: rgba(10, 116, 218, 0.15);
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: 0 0 15px rgba(10, 116, 218, 0.2);
}

.progress-step.active .progress-label {
    color: var(--white);
}

@media (max-width: 600px) {
    .app-progress::before {
        left: 30px;
        right: 30px;
    }

    .progress-step {
        width: 70px;
    }

    .progress-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .progress-label {
        font-size: 0.75rem;
    }
}

/* ─── Whitelist User Bar ─── */
.whitelist-user-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whitelist-user-bar .user-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whitelist-user-bar .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
}

.whitelist-user-bar .user-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whitelist-user-bar .user-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.whitelist-user-bar .user-tag {
    display: block;
    color: var(--medium-gray);
    font-size: 0.82rem;
}

/* ─── Whitelist Form UI ─── */
.whitelist-form .form-group {
    background: rgba(30, 41, 59, 0.3);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
    transition: var(--transition);
}

.whitelist-form .form-group:hover,
.whitelist-form .form-group:focus-within {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(10, 116, 218, 0.15);
}

.whitelist-form .form-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.02em;
    text-shadow: none !important;
    /* Prevent any accidental text shadows */
}

.whitelist-form .form-group label i {
    color: var(--primary-light);
    font-size: 1.1rem;
    background: rgba(10, 116, 218, 0.12);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(10, 116, 218, 0.2);
    text-shadow: none !important;
}

.whitelist-form .form-hint {
    color: var(--medium-gray) !important;
    font-size: 0.85rem !important;
    margin-top: 8px !important;
    display: block;
    font-style: italic;
    opacity: 0.8;
}

.whitelist-form input,
.whitelist-form textarea,
.whitelist-form select {
    background: rgba(15, 23, 42, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.whitelist-form input:focus,
.whitelist-form textarea:focus,
.whitelist-form select:focus {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: var(--primary-light) !important;
}

/* ─── Whitelist Success ─── */
.whitelist-success {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 32px;
}

.whitelist-success i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 12px;
}

.whitelist-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.whitelist-success p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ─── Mobile Dropdown Fix ─── */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(10, 116, 218, 0.05);
        border: none;
        box-shadow: none;
        padding: 4px 0 4px 16px;
        min-width: auto;
    }

    .whitelist-user-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .whitelist-user-bar .user-info {
        flex-direction: column;
    }

    .whitelist-login-card {
        padding: 40px 24px;
    }
}

/* ─── Whitelist Error ─── */
.whitelist-error {
    max-width: 700px;
    margin: 0 auto 24px;
    text-align: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    padding: 20px;
    color: #ef4444;
}

.whitelist-error i {
    font-size: 1.4rem;
    margin-right: 8px;
}

/* ─── Profile Page ─── */
.profile-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 40px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    box-shadow: 0 0 20px rgba(10, 116, 218, 0.3);
}

.profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 0 20px rgba(10, 116, 218, 0.3);
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.profile-tag {
    display: block;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.profile-id {
    display: block;
    color: var(--light-gray);
    font-size: 0.8rem;
    margin-top: 4px;
    opacity: 0.6;
}

.profile-section-title {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-section-title h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-section-title i {
    color: var(--primary-light);
}

.profile-empty {
    text-align: center;
    background: rgba(30, 41, 59, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 60px 24px;
}

.profile-empty i {
    font-size: 3rem;
    color: var(--medium-gray);
    opacity: 0.3;
    margin-bottom: 16px;
}

.profile-empty p {
    color: var(--medium-gray);
}

.profile-app-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.app-status-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.app-status-banner.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

.app-status-banner.status-accepted {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-bottom: 1px solid rgba(16, 185, 129, 0.25);
}

.app-status-banner.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-bottom: 1px solid rgba(239, 68, 68, 0.25);
}

.app-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.app-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
}

.app-expand {
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.app-expand summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-gray);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.app-expand summary::-webkit-details-marker {
    display: none;
}

.app-expand summary:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--primary-light);
}

.app-expand[open] summary i {
    transform: rotate(180deg);
}

.app-expand-content {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 4px;
}

.app-field-profile {
    margin-top: 20px;
}

.app-field-profile label {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.app-field-profile p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.app-reject-reason {
    margin-top: 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.app-reject-reason i {
    font-size: 1.8rem;
    color: #ef4444;
    margin-top: 4px;
}

.app-reject-reason strong {
    color: #ef4444;
    display: block;
    margin-bottom: 6px;
}

.app-reject-reason p {
    color: var(--light-gray);
    line-height: 1.6;
}

.app-accepted-info {
    margin-top: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.app-accepted-info i {
    font-size: 1.8rem;
    color: #10b981;
    margin-top: 4px;
}

.app-accepted-info strong {
    color: #10b981;
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.app-accepted-info p {
    color: var(--light-gray);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .app-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ─── Application Hero ─── */
.app-hero {
    position: relative;
    padding: 100px 0 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, var(--dark) 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(10, 116, 218, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.app-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(10, 116, 218, 0.12);
    border: 1px solid rgba(10, 116, 218, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.app-hero .hero-badge i {
    font-size: 1rem;
}

.app-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.app-hero p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.app-hero .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 116, 218, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.app-hero .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.app-hero .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.app-hero .hero-stat .stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.app-hero .hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .app-hero {
        padding: 80px 0 40px 0;
    }

    .app-hero h1 {
        font-size: 2.2rem;
    }

    .app-hero p {
        font-size: 1.05rem;
    }

    .app-hero .hero-stats {
        gap: 24px;
    }

    .app-hero .hero-stat .stat-value {
        font-size: 1.3rem;
    }
}

/* ─── Subscriptions Hero ─── */
.subscriptions-hero {
    position: relative;
    padding: 100px 0 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, var(--dark) 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subscriptions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.subscriptions-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscriptions-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.subscriptions-hero p {
    font-size: 1.25rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .subscriptions-hero {
        padding: 80px 0 40px 0;
    }

    .subscriptions-hero h1 {
        font-size: 2.5rem;
    }

    .subscriptions-hero p {
        font-size: 1.1rem;
    }
}

/* ─── Premium VIP Badges & Banners ─── */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(220, 38, 38, 0.2)) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.premium-badge i {
    color: #f59e0b;
}

.coming-soon-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.coming-soon-banner .banner-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 1.8rem;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.coming-soon-banner h3 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    color: #10b981;
}

.coming-soon-banner p {
    margin: 0;
    color: var(--light-gray);
    font-size: 1.05rem;
}

/* ─── VIP Pricing Grid ─── */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vip-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 41, 59, 0.7);
}

.vip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    border: 2px solid;
}

.vip-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.vip-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vip-price span {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.vip-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.4;
}

.vip-features li i {
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--primary-light);
}

/* ─── VIP Popular (Gold) Card ─── */
.vip-popular {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-color: rgba(245, 158, 11, 0.3);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vip-popular::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.vip-popular:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.15);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.vip-popular .vip-features li i {
    color: #f59e0b;
}

/* ─── Disabled VIP Buttons ─── */
.btn-vip {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    color: var(--medium-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: none;
}

.btn-vip.btn-silver {
    background: rgba(148, 163, 184, 0.05);
}

.btn-vip.btn-gold {
    background: rgba(245, 158, 11, 0.05);
    color: rgba(245, 158, 11, 0.6);
    border-color: rgba(245, 158, 11, 0.2);
}

.btn-vip.btn-diamond {
    background: rgba(56, 189, 248, 0.05);
}

@media (max-width: 992px) {
    .vip-popular {
        transform: none;
    }

    .vip-popular:hover {
        transform: translateY(-5px);
    }

    .coming-soon-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}