* {
    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;
}

.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: auto;
    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-main-container {
    display: flex;
    width: 100%;
    height: 100vh;
    z-index: 20;
}

.weird-main-content {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.weird-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    justify-content: center;
    align-items: flex-start;
}

.weird-title-group {
    display: flex;
    flex-direction: column;
    font-size: 72px;
    font-weight: 500;
    gap: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    font-family: 'Black Han Sans', sans-serif;
    line-height: 1.1;
}

.weird-highlight {
    color: #B7EA4C;
}

.weird-cta-container {
    margin-top: 48px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.weird-start-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #60983E, #B7EA4C);
    border-radius: 15px;
    padding: 15px 32px;
    transition: all 0.3s;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #fff;
}

.weird-start-button:hover {
    transform: scale(1.05) translateY(-5px);
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(183, 234, 76, 0.5);
}

.weird-start-button-text {
    display: flex;
    flex-direction: row;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
}

.weird-start-button-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.weird-start-button-subtext {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.weird-version-text {
    font-size: 18px;
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.weird-navigation-arrow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0 40px 32px 0;
}

.weird-arrow-icon {
    width: 48px;
    height: 48px;
    opacity: 0.7;
    transform: rotate(90deg);
    transition: all 0.3s;
}

.weird-arrow-icon:hover {
    opacity: 1;
    transform: rotate(90deg) translateX(5px);
}

/* 모바일 메뉴 */
.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-title-group {
        font-size: 48px;
    }

    .weird-start-button-text {
        font-size: 20px;
    }

    .weird-start-button {
        width: 90%;
        max-width: 300px;
    }

    .weird-hero {
        align-items: center;
        text-align: center;
    }

    .weird-cta-container {
        align-items: center;
        margin-left: 0;
    }
}