* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6600;
    --primary-dark: #e55a00;
    --primary-light: #ff8533;
    --secondary-color: #ff8533;
    --dark-bg: #0f0f0f;
    --darker-bg: #000000;
    --card-bg: #1a1a1a;
    --card-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --border-hover: #ff6600;
    --shadow-primary: rgba(255, 102, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.brand-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--shadow-primary));
    transition: all 0.3s;
}

.brand-link:hover .brand-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--shadow-primary));
}

.nav-brand h1 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px var(--shadow-primary);
    transition: all 0.3s;
    margin: 0;
}

.brand-link:hover h1 {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--darker-bg);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu,
.dropdown.hover-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
    padding-right: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 133, 51, 0.1) 0%, transparent 40%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23333" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.server-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--shadow-primary));
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.server-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px var(--shadow-primary));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), #ffaa66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--shadow-primary));
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--darker-bg);
    box-shadow: 0 4px 15px var(--shadow-primary);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.about-text {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    line-height: 2;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* How to Join Section */
.how-to-join {
    padding: 100px 0;
    background: var(--darker-bg);
}

.join-explanation {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.explanation-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.explanation-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.explanation-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.explanation-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.explanation-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    align-items: flex-start;
}

.step-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
    transform: translateX(-5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.step-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Levels Section */
.levels {
    padding: 100px 0;
    background: var(--dark-bg);
}

.levels-content {
    margin-top: 3rem;
}

.levels-intro {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.levels-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.levels-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.level-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.level-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.level-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.level-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.level-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.level-benefits {
    list-style: none;
    text-align: right;
    padding: 0;
}

.level-benefits li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.level-benefits li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-info {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
}

.experience-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.exp-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.exp-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--darker-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.exp-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.exp-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.exp-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.exp-method p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    box-shadow: 0 0 15px var(--shadow-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg), #1f1f1f);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-hover), #252525);
    box-shadow: 0 15px 40px var(--shadow-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Rules Section */
.rules {
    padding: 100px 0;
    background: var(--darker-bg);
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
}

.rule-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--card-bg), #1f1f1f);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.rule-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.rule-item:hover::before {
    transform: scaleY(1);
}

.rule-item:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-hover), #252525);
    box-shadow: 0 8px 25px var(--shadow-primary);
    transform: translateX(-5px);
}

.rule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--darker-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-primary);
    transition: all 0.3s;
}

.rule-item:hover .rule-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--shadow-primary);
}

.rule-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: var(--text-secondary);
}

/* Join Section */
.join {
    padding: 100px 0;
    background: var(--dark-bg);
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
}

.join-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.join-info ol {
    list-style: none;
    counter-reset: step-counter;
}

.join-info ol li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-right: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.join-info ol li::before {
    content: counter(step-counter);
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--darker-bg);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.server-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    color: var(--text-secondary);
}

.info-value {
    color: var(--primary-color);
    font-weight: 600;
}

.info-value.online {
    color: #00ff00;
}


/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--darker-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Hero Small (for requirements page) */
.hero-small {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.hero-small .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.requirements-section.alt-bg {
    background: var(--darker-bg);
}

.requirements-content {
    margin-top: 3rem;
}

.req-intro {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.req-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.req-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.req-card.recommended {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.req-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.req-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.req-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.req-badge.minimum {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.req-badge.recommended-badge {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.req-list {
    list-style: none;
    padding: 0;
}

.req-list li {
    color: var(--text-secondary);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li strong {
    color: var(--text-primary);
    display: inline-block;
    min-width: 120px;
}

.req-note {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    border-right: 4px solid var(--primary-color);
}

.req-note h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.req-note ul {
    list-style: none;
    padding: 0;
}

.req-note ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.req-note ul li::before {
    content: '⚠️';
    position: absolute;
    right: 0;
}

/* FiveM Steps */
.fivem-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fivem-step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.fivem-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fivem-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fivem-step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.fivem-step a {
    color: var(--primary-color);
    text-decoration: none;
}

.fivem-step a:hover {
    text-decoration: underline;
}

.req-requirements {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.req-requirements h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.req-requirements ul {
    list-style: none;
    padding: 0;
}

.req-requirements ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.req-requirements ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Steam Section */
.steam-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.steam-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.steam-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.steam-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.steam-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.steam-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.steam-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.steam-steps {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.steam-steps h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.steam-steps-list {
    list-style: none;
    counter-reset: steam-counter;
    padding: 0;
}

.steam-steps-list li {
    counter-increment: steam-counter;
    color: var(--text-secondary);
    padding: 1rem 0;
    padding-right: 3rem;
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.steam-steps-list li:last-child {
    border-bottom: none;
}

.steam-steps-list li::before {
    content: counter(steam-counter);
    position: absolute;
    right: 0;
    top: 1rem;
    background: var(--primary-color);
    color: var(--darker-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Discord Section */
.discord-info {
    margin-top: 3rem;
}

.discord-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.discord-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.discord-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.discord-card ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.discord-card ul li {
    color: var(--text-secondary);
    padding: 0.8rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.discord-card ul li::before {
    content: '💬';
    position: absolute;
    right: 0;
}

.discord-join {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.discord-join h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.discord-steps {
    max-width: 800px;
    margin: 0 auto;
}

.discord-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.discord-step:last-child {
    margin-bottom: 0;
}

.discord-step .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.discord-step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.discord-step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.discord-step a {
    color: var(--primary-color);
    text-decoration: none;
}

.discord-step a:hover {
    text-decoration: underline;
}

.discord-invite {
    text-align: center;
}

.invite-box {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.invite-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.invite-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.invite-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.nav-menu a.active {
    color: var(--primary-color);
}

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.jobs-section.alt-bg {
    background: var(--darker-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: linear-gradient(135deg, var(--card-bg), #1f1f1f);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-hover), #252525);
    box-shadow: 0 15px 40px var(--shadow-primary);
}

.job-card.approved {
    border-top: 4px solid #4CAF50;
}

.job-card.general {
    border-top: 4px solid #2196F3;
}

.job-card.investment {
    border-top: 4px solid #FF9800;
}

.job-card.motorsport {
    border-top: 4px solid #F44336;
}

.job-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.job-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.job-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: right;
}

.job-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.job-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.job-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--card-bg);
        border: none;
        border-top: 1px solid var(--border-color);
        margin-top: 0;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-text {
        padding: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item:hover {
        transform: translateY(-5px);
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .exp-methods {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .req-grid {
        grid-template-columns: 1fr;
    }

    .fivem-steps {
        grid-template-columns: 1fr;
    }

    .steam-info {
        grid-template-columns: 1fr;
    }

    .discord-step {
        flex-direction: column;
        text-align: center;
    }

    .hero-small {
        height: 50vh;
        min-height: 300px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .rules-nav {
        gap: 0.5rem;
    }

    .rule-nav-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .rule-content-box {
        padding: 1.5rem;
    }

    .rules-nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .rule-nav-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .rule-nav-item:hover {
        transform: translateY(-3px);
    }

    .nav-icon {
        font-size: 1.5rem;
    }

    .rules-nav-title {
        font-size: 1.1rem;
    }

    .rule-content-box h3 {
        font-size: 1.1rem;
    }
}

/* Rules Navigation */
.rules-nav-section {
    background: var(--darker-bg);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.rules-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rules-nav-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.rules-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.rule-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.rule-nav-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.rule-nav-item:hover,
.rule-nav-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--darker-bg);
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px var(--shadow-primary);
    font-weight: 600;
}

.rule-nav-item:hover::before,
.rule-nav-item.active::before {
    transform: scaleY(1);
}

.nav-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-text {
    flex: 1;
    font-weight: 500;
}

/* Rule Content Box Styles */
.rule-content-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.rule-content-box h3:first-of-type {
    margin-top: 0;
}

.rule-content-box h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.rule-content-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

.rule-content-box code {
    background: var(--darker-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: 600;
}

