* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

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

.page-content {
    padding: 4rem 2rem;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Jobs Section */
.jobs-header {
    margin-bottom: 3rem;
}

.jobs-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jobs-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    display: block;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.job-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Job Detail */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.job-detail-header {
    margin-bottom: 2rem;
}

.job-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.job-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.job-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.job-section p,
.job-section li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.job-section ul {
    list-style: none;
}

.job-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.job-section ol {
    list-style: decimal;
    padding-left: 2rem;
}

.job-section ol li {
    padding-left: 0;
}

.job-section ol li:before {
    content: none;
}

.job-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.job-section ul ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.job-section ul ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact p {
    color: rgba(255, 255, 255, 0.6);
}

.contact a {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
}