* {
    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-cash-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.weird-cash-title {
    font-size: 36px;
    font-weight: 700;
    color: #B7EA4C;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(183, 234, 76, 0.3);
}

.weird-cash-subtitle {
    font-size: 18px;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.weird-cash-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.weird-nickname-section {
    background-color: rgba(20, 30, 15, 0.7);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    border: 1px solid rgba(183, 234, 76, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.weird-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weird-section-icon {
    color: #B7EA4C;
    font-size: 28px;
}

.weird-nickname-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(183, 234, 76, 0.3);
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s;
}

.weird-nickname-input:focus {
    outline: none;
    border-color: #B7EA4C;
    box-shadow: 0 0 10px rgba(183, 234, 76, 0.5);
}

.weird-nickname-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.weird-cash-options-section {
    background-color: rgba(20, 30, 15, 0.7);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    border: 1px solid rgba(183, 234, 76, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.weird-cash-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.weird-cash-option {
    background: linear-gradient(135deg, rgba(40, 60, 30, 0.7), rgba(20, 30, 15, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(183, 234, 76, 0.2);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.weird-cash-option:hover {
    transform: translateY(-5px);
    border-color: #B7EA4C;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(183, 234, 76, 0.3);
}

.weird-cash-option.weird-selected {
    border-color: #B7EA4C;
    box-shadow: 0 0 20px rgba(183, 234, 76, 0.5);
    background: linear-gradient(135deg, rgba(60, 90, 40, 0.8), rgba(30, 45, 20, 0.9));
}

.weird-cash-option.weird-selected:before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #B7EA4C;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weird-cash-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weird-cash-icon > img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weird-cash-details {
    flex: 1;
}

.weird-cash-amount {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.weird-cash-price {
    font-size: 18px;
    color: #B7EA4C;
}

.weird-payment-button {
    background: linear-gradient(to right, #60983E, #B7EA4C);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
}

.weird-payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(183, 234, 76, 0.5);
}

.weird-payment-button:disabled {
    background: #444;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

/* 푸터 스타일 */
.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;
}

.wyrd-demo-container {
    text-align: center;
    margin-bottom: 30px;
}

.wyrd-demo-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wyrd-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Modal Overlay */
.wyrd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
}

.wyrd-modal-overlay.wyrd-active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

/* Modal Container */
.wyrd-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
}

.wyrd-modal-overlay.wyrd-active .wyrd-modal {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.wyrd-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wyrd-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

/* Modal Header */
.wyrd-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.wyrd-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.wyrd-modal-subtitle {
    font-size: 14px;
    color: #666;
}

/* Payment Options */
.wyrd-payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wyrd-payment-btn {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
    overflow: hidden;
}

.wyrd-payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.wyrd-payment-btn:hover {
    border-color: #4f46e5;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.wyrd-payment-btn:hover::before {
    left: 100%;
}

.wyrd-payment-btn:active {
    transform: translateY(0);
}

.wyrd-payment-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.wyrd-payment-text {
    flex: 1;
    text-align: left;
}

.wyrd-payment-arrow {
    font-size: 18px;
    color: #999;
    transition: transform 0.2s ease;
}

.wyrd-payment-btn:hover .wyrd-payment-arrow {
    transform: translateX(5px);
}
.wyrd-email-input-container {
    margin-bottom: 20px;
}

.wyrd-email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.wyrd-email-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.wyrd-email-input::placeholder {
    color: #999;
    font-size: 15px;
}

.wyrd-email-input:hover {
    border-color: #c1c7cd;
}
.wyrd-depositor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wyrd-depositor-modal-overlay.wyrd-active {
    opacity: 1;
    visibility: visible;
}

.wyrd-depositor-modal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.wyrd-depositor-modal-overlay.wyrd-active .wyrd-depositor-modal {
    transform: translateY(0);
}

.wyrd-depositor-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wyrd-depositor-close-btn:hover {
    color: #333;
}

.wyrd-depositor-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.wyrd-depositor-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.wyrd-depositor-modal-subtitle {
    font-size: 14px;
    color: #666;
}

.wyrd-depositor-input-container {
    margin-bottom: 20px;
}

.wyrd-depositor-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wyrd-depositor-input:focus {
    outline: none;
    border-color: #4285f4;
}

.wyrd-depositor-input::placeholder {
    color: #999;
}

.wyrd-depositor-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.wyrd-depositor-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wyrd-depositor-btn-cancel {
    background-color: #f5f5f5;
    color: #666;
}

.wyrd-depositor-btn-cancel:hover {
    background-color: #e0e0e0;
}

.wyrd-depositor-btn-confirm {
    background-color: #4285f4;
    color: white;
}

.wyrd-depositor-btn-confirm:hover {
    background-color: #3367d6;
}
/* Bank Transfer Button */
.wyrd-bank-transfer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.wyrd-bank-transfer:hover {
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.wyrd-bank-transfer .wyrd-payment-arrow {
    color: rgba(255,255,255,0.8);
}

/* Simple Pay Button */
.wyrd-simple-pay {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.wyrd-simple-pay:hover {
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
}

.wyrd-simple-pay .wyrd-payment-arrow {
    color: rgba(255,255,255,0.8);
}

/* Footer */
.wyrd-modal-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* 커스텀 입력 옵션 스타일 */
.weird-cash-option.weird-custom-input {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
}

.weird-custom-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.weird-custom-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weird-custom-amount-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    background: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.weird-custom-amount-input:focus {
    border-color: #4CAF50;
}

.weird-custom-amount-input::placeholder {
    color: #aaa;
}

.weird-custom-unit {
    font-size: 16px;
    color: #B7EA4C;
    white-space: nowrap;
}

.weird-custom-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    text-align: center;
}

/* 선택된 상태에서 입력창 스타일 */
.weird-cash-option.weird-custom-input.weird-selected .weird-custom-amount-input {
    border-color: #4CAF50;
    background-color: #f8fff8;
}
/* Responsive */
@media (max-width: 480px) {
    .wyrd-modal {
        padding: 30px 25px;
        margin: 20px;
    }

    .wyrd-modal-title {
        font-size: 20px;
    }

    .wyrd-payment-btn {
        padding: 18px;
        font-size: 15px;
    }
}

/* 모바일 및 반응형 스타일 */
@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;
    }
    .weird-content {
        padding: 120px 20px 50px;
    }

    .weird-cash-options {
        grid-template-columns: 1fr;
    }

    .weird-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .weird-cash-title {
        font-size: 28px;
    }

    .weird-cash-subtitle {
        font-size: 16px;
    }
}