/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Variables */
:root {
    --primary-color: #119ca7;
    --primary-dark: #0d7a85;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-950: #030712;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary-color);
}

.text-red {
    color: #ef4444;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(17, 156, 167, 0.3);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 156, 167, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(17, 156, 167, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    blur: 4px;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.logo-icon i {
    color: white;
    font-size: 1.75rem;
    z-index: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.logo-united {
    color: white;
}

.logo-rp {
    color: var(--primary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(17, 156, 167, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(17, 156, 167, 0.1);
}

.mobile-nav {
    display: none;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 0 0 1rem 1rem;
    padding: 1rem;
    gap: 0.5rem;
    flex-direction: column;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background: rgba(17, 156, 167, 0.1);
}

.btn-mobile {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    text-align: center;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gray-950) 0%, var(--gray-900) 50%, var(--gray-950) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 156, 167, 0.1) 0%, transparent 50%, rgba(17, 156, 167, 0.1) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: 
        linear-gradient(rgba(17, 156, 167, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 156, 167, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(17, 156, 167, 0.3);
    border-radius: 1.5rem;
}

.shape-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    transform: rotate(45deg);
    animation: spin 20s linear infinite;
}

.shape-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.2), transparent);
    transform: rotate(12deg);
    animation: pulse 3s ease-in-out infinite;
}

.shape-3 {
    top: 50%;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    animation: bounce 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17, 156, 167, 0.1);
    border: 1px solid rgba(17, 156, 167, 0.3);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-badge span {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-white {
    color: var(--gray-100);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-300);
    max-width: 64rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.stat-card {
    background: rgba(17, 25, 40, 0.5);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-800);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(17, 156, 167, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(17, 156, 167, 0.1);
}

.stat-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover i {
    transform: scale(1.1);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-400);
    font-weight: 500;
}

/* Section Styles */
section {
    position: relative;
    padding: 6rem 0;
}

.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
    height: 24rem;
    background: rgba(17, 156, 167, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17, 156, 167, 0.1);
    border: 1px solid rgba(17, 156, 167, 0.3);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.section-badge i {
    color: var(--primary-color);
}

.section-badge span {
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-700);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(17, 156, 167, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 156, 167, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    blur: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.2;
}

.feature-icon i {
    color: white;
    font-size: 2rem;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--gray-300);
}

.mission-card {
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), rgba(17, 156, 167, 0.05));
    border: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    z-index: 10;
}

.mission-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 80rem;
    margin: 0 auto 2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Rules Section */
.rules {
    background: var(--gray-950);
}

.rules-container {
    background: rgba(17, 25, 40, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    position: relative;
    z-index: 10;
}

.rules-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-800);
}

.rules-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--gray-400);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.rules-tab:hover {
    color: white;
    background: rgba(31, 41, 55, 0.5);
}

.rules-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(17, 156, 167, 0.3);
}

.rules-tab i {
    font-size: 1.25rem;
}

.rules-content {
    padding: 3rem;
}

.rules-panel {
    display: none;
}

.rules-panel.active {
    display: block;
}

.rules-panel h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.rules-panel h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 1rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
}

.rule-item:hover {
    border-color: rgba(17, 156, 167, 0.3);
    background: rgba(31, 41, 55, 0.5);
}

.rule-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.rule-item:hover .rule-number {
    transform: scale(1.1);
}

.rule-item p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.rule-item:hover p {
    color: white;
}

.rules-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), rgba(17, 156, 167, 0.05));
    border: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.rules-footer p:first-child {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 1rem;
    font-weight: 600;
}

.rules-footer p:last-of-type {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Jobs Section */
.jobs {
    background: var(--gray-900);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.job-category {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-700);
    transition: all 0.5s ease;
}

.job-category:hover {
    border-color: rgba(17, 156, 167, 0.5);
    transform: translateY(-5px);
}

.job-category-header {
    padding: 2rem;
    color: white;
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.accent-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.yellow-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.job-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-category-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-category-icon i {
    font-size: 1.75rem;
    color: white;
}

.job-category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.job-category-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(17, 25, 40, 0.5);
    border-radius: 1rem;
    border: 1px solid var(--gray-600);
    transition: all 0.3s ease;
}

.job-item:hover {
    border-color: rgba(17, 156, 167, 0.3);
    background: rgba(17, 25, 40, 0.7);
}

.job-info {
    flex: 1;
}

.job-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.job-info p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.5;
}

.job-salary {
    text-align: right;
    margin-left: 1rem;
}

.job-salary {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.job-salary i {
    font-size: 1.25rem;
}

.job-salary small {
    display: block;
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

.illegal-jobs {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.illegal-jobs h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.illegal-jobs p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.illegal-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.illegal-job {
    background: rgba(17, 25, 40, 0.7);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.illegal-job:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.1);
}

.illegal-job h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 0.75rem;
}

.illegal-job p {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.illegal-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.illegal-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.illegal-stat span:first-child {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.illegal-stat span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
}

.risk-high {
    color: #fb923c;
}

.risk-extreme {
    color: #f87171;
}

.reward-medium {
    color: #fbbf24;
}

.reward-high {
    color: #34d399;
}

.jobs-footer {
    text-align: center;
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-700);
    position: relative;
    z-index: 10;
}

.jobs-footer h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.jobs-footer p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jobs-tip {
    background: rgba(17, 156, 167, 0.1);
    border: 1px solid rgba(17, 156, 167, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
}

.jobs-tip p {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Staff Section */
.staff {
    background: var(--gray-950);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.staff-member {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-700);
    transition: all 0.5s ease;
}

.staff-member:hover {
    border-color: rgba(17, 156, 167, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 156, 167, 0.1);
}

.staff-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.staff-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
}

.staff-icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.staff-member:hover .staff-icon {
    transform: scale(1.1);
}

.staff-icon i {
    font-size: 2.5rem;
    color: white;
}

.staff-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.staff-header p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
}

.staff-content {
    padding: 2rem;
}

.staff-content p {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.staff-detail {
    background: rgba(17, 25, 40, 0.5);
    padding: 1rem;
    border-radius: 1rem;
}

.detail-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: white;
    font-size: 0.875rem;
}

.moderators {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--gray-700);
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.moderators h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.moderators h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.moderators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.moderator {
    background: rgba(17, 25, 40, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-600);
    transition: all 0.3s ease;
}

.moderator:hover {
    border-color: rgba(17, 156, 167, 0.3);
    background: rgba(17, 25, 40, 0.7);
}

.moderator h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.moderator-role {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.moderator-specialty {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.staff-recruitment {
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), rgba(17, 156, 167, 0.05));
    border: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.staff-recruitment h4 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.staff-recruitment p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.recruitment-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement {
    text-align: center;
}

.requirement-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(17, 156, 167, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.requirement-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

.requirement h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.requirement p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Join Section */
.join {
    background: var(--gray-900);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.step {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-700);
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.step:hover {
    border-color: rgba(17, 156, 167, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 156, 167, 0.1);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(17, 156, 167, 0.3);
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    color: white;
    font-size: 2.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.server-connection {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--gray-700);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.server-connection h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.server-connection h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.server-connection p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.server-ip-container {
    max-width: 32rem;
    margin: 0 auto;
}

.server-ip-container > p {
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 1rem;
}

.server-ip-box {
    background: rgba(17, 25, 40, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-600);
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#serverIP {
    background: var(--gray-800);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    border: 1px solid rgba(17, 156, 167, 0.3);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.server-stat {
    background: rgba(31, 41, 55, 0.5);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.server-stat i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.server-stat div {
    text-align: left;
}

.server-stat strong {
    display: block;
    color: white;
    font-weight: 700;
}

.server-stat small {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.join-info {
    text-align: center;
    position: relative;
    z-index: 10;
}

.info-section {
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), rgba(17, 156, 167, 0.05));
    border: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.info-section h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.info-section h5 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.info-column h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.info-column ul {
    list-style: none;
    padding: 0;
}

.info-column li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-950);
    border-top: 1px solid var(--gray-800);
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
    height: 24rem;
    background: rgba(17, 156, 167, 0.03);
    border-radius: 50%;
    filter: blur(80px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: var(--gray-800);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.discord:hover {
    color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.social-link.youtube:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-link.twitter:hover {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.social-link.instagram:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.server-info,
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item,
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
}

.info-item i,
.contact-item i {
    width: 2rem;
    height: 2rem;
    background: rgba(17, 156, 167, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.server-ip-footer {
    margin-top: 1rem;
}

.server-ip-footer p {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.server-ip-footer code {
    background: var(--gray-800);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(17, 156, 167, 0.3);
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    display: block;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    text-align: center;
}

.footer-cta {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 156, 167, 0.1), rgba(17, 156, 167, 0.05));
    border: 1px solid rgba(17, 156, 167, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.footer-cta p:first-child {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-cta p:last-child {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin: 0;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .rules-tabs {
        flex-direction: column;
    }

    .rules-tab {
        min-width: auto;
    }

    .server-ip-box {
        flex-direction: column;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}