* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.weird-fixed {
    position: fixed;
}

.weird-size-full {
    width: 100%;
    height: 100%;
}

.weird-background {
    top: 0;
    left: 0;
    z-index: -50;
}

.weird-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1.1);
}

.weird-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 5px 16px;
    background-color: rgba(20, 30, 15, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.weird-logo {
    width: 60px;
    height: auto;
}

.weird-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 22px;
    font-weight: 600;
}

.weird-nav a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
}

.weird-nav a:hover {
    background-color: rgba(183, 234, 76, 0.15);
    transform: translateY(-2px);
}

.weird-nav a.weird-active {
    color: #B7EA4C;
    text-shadow: 0 0 10px rgba(183, 234, 76, 0.4);
    position: relative;
}

.weird-nav a.weird-active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #B7EA4C;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(183, 234, 76, 0.6);
}

.weird-button-container {
    display: flex;
    flex-direction: row;
}

.weird-cash-button {
    color: #fff;
    background-color: rgba(96, 152, 62, 0.7);
    border: 2px solid #B7EA4C;
    border-radius: 10px;
    padding: 10px 24px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(183, 234, 76, 0.4);
}

.weird-cash-button:hover {
    background-color: rgba(183, 234, 76, 0.5);
    box-shadow: 0 0 20px rgba(183, 234, 76, 0.6);
    transform: translateY(-2px);
}

/* 직업 정보 페이지 스타일 */
.weird-content {
    flex: 1;
    padding-top: 120px;
    padding-bottom: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weird-jobs-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.weird-jobs-title {
    font-size: 36px;
    font-weight: 700;
    color: #B7EA4C;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(183, 234, 76, 0.3);
}

.weird-jobs-subtitle {
    font-size: 18px;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.weird-job-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    width: 100%;
}

.weird-job-tab {
    background-color: rgba(20, 30, 15, 0.7);
    border: 2px solid rgba(183, 234, 76, 0.3);
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.weird-job-tab:hover {
    background-color: rgba(96, 152, 62, 0.3);
    transform: translateY(-3px);
}

.weird-job-tab.weird-active {
    background-color: rgba(96, 152, 62, 0.7);
    border-color: #B7EA4C;
    color: #fff;
    box-shadow: 0 0 15px rgba(183, 234, 76, 0.4);
}

.weird-job-sections {
    width: 100%;
}

.weird-job-section {
    display: none;
    width: 100%;
    background-color: rgba(20, 30, 15, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.weird-job-section.weird-active {
    display: block;
}

.weird-job-header {
    background: linear-gradient(135deg, rgba(60, 90, 40, 0.8), rgba(30, 45, 20, 0.9));
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(183, 234, 76, 0.3);
}

.weird-job-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(183, 234, 76, 0.2);
    border: 2px solid rgba(183, 234, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.weird-job-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.weird-job-title-container {
    flex: 1;
}

.weird-job-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #B7EA4C;
}

.weird-job-subtitle {
    font-size: 16px;
    color: #ddd;
}

.weird-job-difficulty {
    display: flex;
    align-items: center;
}

.weird-difficulty-label {
    font-size: 14px;
    margin-right: 10px;
    color: #aaa;
}

.weird-difficulty-stars {
    display: flex;
}

.weird-star {
    color: #B7EA4C;
    margin-right: 3px;
}

.weird-star.weird-empty {
    color: rgba(183, 234, 76, 0.3);
}

.weird-job-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
}

.weird-job-video {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(183, 234, 76, 0.3);
    aspect-ratio: 16/9;
}

.weird-job-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weird-job-description {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
}

.weird-job-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.weird-stat {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid #B7EA4C;
}

.weird-stat-title {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weird-stat-icon {
    color: #B7EA4C;
    font-size: 20px;
}

.weird-stat-value {
    color: #ddd;
    font-size: 15px;
}

.weird-job-skills {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weird-skill {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(183, 234, 76, 0.2);
}

.weird-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.weird-skill-name {
    font-weight: bold;
    font-size: 18px;
    color: #B7EA4C;
}

.weird-skill-type {
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 30px;
    background-color: rgba(183, 234, 76, 0.2);
    color: #B7EA4C;
}

.weird-skill-passive {
    background-color: rgba(100, 149, 237, 0.2);
    color: #87CEFA;
}

.weird-skill-ultimate {
    background-color: rgba(255, 69, 0, 0.2);
    color: #FFA07A;
}

.weird-skill-description {
    font-size: 15px;
    color: #ddd;
    line-height: 1.5;
}

.weird-job-tips {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid #B7EA4C;
}

.weird-tips-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    color: #B7EA4C;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weird-tips-icon {
    font-size: 22px;
}

.weird-tips-list {
    list-style-type: none;
}

.weird-tips-item {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.weird-tips-item:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #B7EA4C;
    font-size: 18px;
}

/* 푸터 스타일 */
.weird-footer {
    background-color: rgba(10, 20, 8, 0.9);
    padding: 40px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(183, 234, 76, 0.2);
    backdrop-filter: blur(10px);
}

.weird-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.weird-footer-section {
    flex: 1;
    min-width: 250px;
}

.weird-footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #B7EA4C;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.weird-footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #B7EA4C;
}

.weird-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weird-footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weird-footer-link:hover {
    color: #B7EA4C;
}

.weird-footer-icon {
    font-size: 16px;
}

.weird-footer-description {
    color: #aaa;
    line-height: 1.6;
}

.weird-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.weird-social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.weird-social-icon:hover {
    background-color: #B7EA4C;
    transform: translateY(-3px);
}

.weird-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

/* 모바일 메뉴 */
.weird-mobile-menu {
    display: none;
}

/* 모바일 및 반응형 스타일 */
@media (max-width: 768px) {
    .weird-header {
        display: none;
    }

    .weird-mobile-menu {
        display: flex;
        flex-direction: column;
        background-color: rgba(20, 30, 15, 0.9);
        padding: 12px;
        gap: 10px;
        margin-bottom: 32px;
        z-index: 20;
        backdrop-filter: blur(5px);
    }

    .weird-mobile-logo {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin: 16px 0;
    }

    .weird-mobile-nav-item {
        padding: 12px 16px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s;
        border: 1px solid transparent;
    }

    .weird-mobile-nav-item:active {
        background-color: rgba(183, 234, 76, 0.3);
    }

    .weird-mobile-nav-item.weird-active {
        color: #B7EA4C;
        border: 1px solid rgba(183, 234, 76, 0.5);
    }

    .weird-mobile-cash {
        margin-top: 16px;
        border: 2px solid #B7EA4C;
        padding: 12px;
        border-radius: 8px;
        background-color: rgba(96, 152, 62, 0.5);
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
    }

    .weird-content {
        padding: 120px 20px 50px;
    }

    .weird-job-tab {
        width: calc(50% - 10px);
        font-size: 16px;
        padding: 10px;
        text-align: center;
    }

    .weird-job-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .weird-job-icon {
        width: 70px;
        height: 70px;
    }

    .weird-job-difficulty {
        justify-content: center;
        margin-top: 10px;
    }

    .weird-job-content {
        padding: 20px;
    }

    .weird-job-stats {
        grid-template-columns: 1fr;
    }

    .weird-footer-content {
        flex-direction: column;
        gap: 30px;
    }
}