/* style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* VIDEO BACKGROUND - YOUR VIDEO */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
    z-index: -2;
}

/* Snowfall Effect - Only ❆ icons falling from top to bottom */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: #ffffff;
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    user-select: none;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-50px) translateX(0px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0.2;
    }
}

/* Main header/navigation */
header {
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-red {
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.newlife-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 3px;
}

nav a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 60px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Jobs Section */
.jobs-section {
    margin-bottom: 80px;
}

.job-category-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.job-category-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
    padding-bottom: 15px;
}

.job-category-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.job-category-title.legal {
    color: #4CAF50;
}

.job-category-title.illegal {
    color: #f44336;
}

.job-category-title.freelance {
    color: #FF9800;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.job-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.job-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.job-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.job-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
}

.job-status.available {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.job-status.limited {
    background-color: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.job-status.high-risk {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.job-status.medium-risk {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.job-status.business {
    background-color: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.5);
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}

/* Job Modal */
.job-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.job-modal.active {
    opacity: 1;
    visibility: visible;
}

.job-modal-content {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.job-modal.active .job-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff0000;
}

.job-modal-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.job-modal-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.job-modal-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
}

.job-modal-requirements {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.job-modal-requirements h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.job-modal-requirements ul {
    list-style-position: inside;
    color: rgba(255, 255, 255, 0.8);
}

.job-modal-requirements li {
    margin-bottom: 8px;
}

.job-modal-salary {
    font-size: 1.3rem;
    color: #00ff00;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* How to Play Section */
.how-to-play-section {
    margin-bottom: 80px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 280px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.step-card:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.step-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Factions Sections */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gangs & Factions Layout */
.gang-section, .faction-section {
    margin-bottom: 100px;
}

.gang-container, .faction-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gang-container:hover, .faction-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.gang-container.reverse, .faction-container.reverse {
    flex-direction: row-reverse;
}

.gang-image, .faction-image {
    flex: 0 0 400px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gang-image img, .faction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gang-container:hover .gang-image img, .faction-container:hover .faction-image img {
    transform: scale(1.05);
}

/* Special Hitman image styling */
.faction-image.hitman-special img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

/* Government and EMS logos */
.faction-image.gov-special img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
}

.faction-image.ems-special img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
}

.gang-content, .faction-content {
    flex: 1;
}

.gang-title, .faction-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gang-subtitle, .faction-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.gang-description, .faction-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.gang-tag, .faction-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid;
}

/* Gang Tags */
.gang-tag.grove-street {
    background-color: rgba(0, 100, 0, 0.2);
    color: #006400;
    border-color: rgba(0, 100, 0, 0.5);
    text-shadow: 0 0 10px rgba(0, 100, 0, 0.3);
}

.gang-tag.vagos {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.gang-tag.los-aztecas {
    background-color: rgba(173, 216, 230, 0.2);
    color: #ADD8E6;
    border-color: rgba(173, 216, 230, 0.5);
    text-shadow: 0 0 10px rgba(173, 216, 230, 0.3);
}

.gang-tag.ballas {
    background-color: rgba(75, 0, 130, 0.2);
    color: #4B0082;
    border-color: rgba(75, 0, 130, 0.5);
    text-shadow: 0 0 10px rgba(75, 0, 130, 0.3);
}

.gang-tag.bloods {
    background-color: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.gang-tag.silent-hunters {
    background-color: rgba(26, 143, 108, 0.2);
    color: #1a8f6c;
    border-color: rgba(26, 143, 108, 0.5);
    text-shadow: 0 0 10px rgba(26, 143, 108, 0.3);
}

.gang-tag.yakuza {
    background-color: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border-color: rgba(255, 165, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.gang-tag.gladiators {
    background-color: rgba(0, 0, 139, 0.2);
    color: #00008B;
    border-color: rgba(0, 0, 139, 0.5);
    text-shadow: 0 0 10px rgba(0, 0, 139, 0.3);
}

.gang-tag.cosa-nostra {
    background-color: rgba(143, 45, 0, 0.2);
    color: #8f2d00;
    border-color: rgba(143, 45, 0, 0.5);
    text-shadow: 0 0 10px rgba(143, 45, 0, 0.3);
}

.gang-tag.crazy-clowns {
    background-color: rgba(255, 192, 203, 0.2);
    color: #FFC0CB;
    border-color: rgba(255, 192, 203, 0.5);
    text-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
}

.gang-tag.russian-mafia {
    background-color: rgba(34, 34, 34, 0.3);
    color: #ededed;
    border-color: rgba(1, 1, 1, 0.6);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.4);
}

/* Faction Tags */
.faction-tag.gov {
    background-color: rgba(138, 204, 255, 0.2);
    color: #8accff;
    border-color: rgba(138, 204, 255, 0.5);
    text-shadow: 0 0 10px rgba(138, 204, 255, 0.3);
}

.faction-tag.lspd {
    background-color: rgba(0, 123, 255, 0.2);
    color: #007BFF;
    border-color: rgba(0, 123, 255, 0.5);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.faction-tag.ems {
    background-color: rgba(255, 102, 138, 0.2);
    color: #ff668a;
    border-color: rgba(255, 102, 138, 0.5);
    text-shadow: 0 0 10px rgba(255, 102, 138, 0.3);
}

.faction-tag.fbi {
    background-color: rgba(103, 131, 207, 0.2);
    color: #6783cf;
    border-color: rgba(103, 131, 207, 0.5);
    text-shadow: 0 0 10px rgba(103, 131, 207, 0.3);
}

.faction-tag.hitman {
    background-color: rgba(33, 37, 41, 0.2);
    color: #212529;
    border-color: rgba(33, 37, 41, 0.5);
    text-shadow: 0 0 10px rgba(33, 37, 41, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 80px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 30px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* 5ofach Logo */
.sofach-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.sofach-logo img {
    height: 20px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.sofach-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* Navigation update */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .gang-container, .faction-container {
        flex-direction: column !important;
        padding: 20px;
    }
    
    .gang-image, .faction-image {
        flex: 0 0 300px;
        width: 100%;
    }
    
    .newlife-logo {
        height: 35px;
    }
    
    .why-choose-grid, .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card, .job-card {
        width: 100%;
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .snowflake {
        font-size: 1em;
        opacity: 0.5;
    }
    
    .job-modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .job-category-section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gang-title, .faction-title {
        font-size: 1.8rem;
    }
    
    .gang-image, .faction-image {
        flex: 0 0 250px;
        height: 200px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
    
    .job-category-title {
        font-size: 1.8rem;
    }
    
    .job-modal-title {
        font-size: 1.5rem;
    }
    
    .job-modal-description {
        font-size: 1rem;
    }
}