/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a3d 50%, #0f5132 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4ade80, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.logo.small {
    width: 40px;
    height: 40px;
}

.logo-inner {
    width: 32px;
    height: 32px;
    background: #dcfce7;
    border-radius: 4px;
}

.logo.small .logo-inner {
    width: 24px;
    height: 24px;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #bbf7d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    position: relative;
    margin-bottom: 2rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(45deg, #4ade80, #a7f3d0, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.title-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: rgba(34, 197, 94, 0.2);
    transform: translate(8px, 8px);
    z-index: -1;
}

.hero-description {
    font-size: 1.25rem;
    color: #bbf7d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.server-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.info-card {
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.info-label {
    color: #bbf7d0;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.info-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Social Section */
.social {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discord {
    background: linear-gradient(135deg, #5865f2, #7c3aed);
}

.tiktok {
    background: linear-gradient(135deg, #ec4899, #dc2626);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    font-size: 3rem;
}

.social-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-info p {
    opacity: 0.8;
    font-size: 0.875rem;
}

.social-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.social-action {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.social-card:hover .arrow {
    transform: translateX(4px);
}

/* Recruitment Section */
.recruitment {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.recruitment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.125rem;
    color: #bbf7d0;
    max-width: 600px;
    margin: 0 auto;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    background: rgba(34, 197, 94, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-open {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.job-date {
    color: #86efac;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.job-description {
    color: #bbf7d0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 1.5rem;
}

.requirements-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #86efac;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    color: #bbf7d0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.requirement-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #16a34a, #059669);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-info p {
    color: #86efac;
    font-size: 0.875rem;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: #bbf7d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-love {
    color: #4ade80;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .server-info {
        flex-direction: column;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-text {
        text-align: right;
    }
}