/* Color Variables - Matching Your Logo */
:root {
    --y3ti-red: #E63946;
    --y3ti-blue: #1E40AF;
    --y3ti-black: #0F172A;
    --y3ti-white: #FFFFFF;
    --y3ti-gray: #111827;
    --y3ti-light-gray: #6B7280;
    --y3ti-accent: #10B981;
    --y3ti-dark-blue: #1a365d;
    --y3ti-discord: #5865F2;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--y3ti-black);
    color: var(--y3ti-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    z-index: -2;
}

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

/* Navigation Styles */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--y3ti-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--y3ti-light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--y3ti-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--y3ti-blue);
}

/* Join Header */
.join-header {
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--y3ti-red), var(--y3ti-blue));
    position: relative;
    overflow: hidden;
}

.join-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--y3ti-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Why Join Section */
.why-join {
    padding: 5rem 0;
    background-color: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--y3ti-white);
}

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

.benefit-card {
    background: var(--y3ti-gray);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--y3ti-accent);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--y3ti-accent);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--y3ti-white);
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Requirements Section */
.requirements {
    padding: 5rem 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.requirements-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--y3ti-blue);
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.skills-wanted h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--y3ti-blue);
    margin-bottom: 2rem;
}

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

.skill-item {
    background: linear-gradient(135deg, var(--y3ti-red), var(--y3ti-blue));
    color: var(--y3ti-white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.05);
}

.skills-note {
    font-size: 0.95rem;
    color: var(--y3ti-accent);
    font-style: italic;
    text-align: center;
}

/* Discord Section */
.discord-section {
    padding: 5rem 0;
    background-color: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discord-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--y3ti-white);
    margin-bottom: 1.5rem;
}

.discord-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.discord-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 1.5rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--y3ti-discord);
    color: var(--y3ti-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    font-size: 1.3rem;
}

.discord-preview {
    display: flex;
    justify-content: center;
}

.discord-mockup {
    background: #36393f;
    border-radius: 8px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.discord-header {
    background: #2f3136;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #202225;
}

.discord-logo {
    font-size: 1.5rem;
}

.discord-header span {
    font-weight: 600;
    color: #ffffff;
}

.discord-channels {
    padding: 1rem;
    border-bottom: 1px solid #202225;
}

.channel-item {
    color: #8e9297;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.channel-item:hover {
    color: #dcddde;
}

.discord-message {
    padding: 1rem;
}

.message {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #dcddde;
}

.message strong {
    color: #ffffff;
}

/* Application Process */
.application-process {
    padding: 5rem 0;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, var(--y3ti-red), var(--y3ti-blue));
    color: var(--y3ti-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--y3ti-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    padding: 5rem 0;
    background-color: rgba(15, 23, 42, 0.8);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--y3ti-white);
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 1.5rem;
    background: var(--y3ti-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--y3ti-blue);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--y3ti-white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}



/* Footer */
.footer {
    background-color: var(--y3ti-black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--y3ti-light-gray);
    font-size: 0.9rem;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--y3ti-white);
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--y3ti-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

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

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

    .requirements-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .discord-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
