/* CSS 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 부정클릭 방지 시스템 UI 스타일 */
.warning-popup {
    position: fixed;
    top: 20px;
    left: 20px;
    max-width: 480px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
    animation: slideInLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid;
    backdrop-filter: blur(20px);
    transform-origin: left center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.warning-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.warning-level-1 {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2), 0 0 0 1px rgba(255, 107, 53, 0.15);
}

.warning-level-2 {
    border-color: #ff5722;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.25), 0 0 0 1px rgba(255, 87, 34, 0.2);
}

.warning-level-3 {
    border-color: #d32f2f;
    background: linear-gradient(135deg, #ffebee, #ef9a9a);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.3), 0 0 0 1px rgba(211, 47, 47, 0.25);
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
    overflow: hidden;
}

.warning-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.warning-subtitle {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.warning-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff5722, #d32f2f);
    border-radius: 20px 20px 0 0;
}

.warning-icon {
    font-size: 36px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

.warning-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.warning-title {
    font-weight: 700;
    font-size: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover::before {
    width: 100%;
    height: 100%;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.warning-content {
    padding: 20px 24px 24px;
    background: rgba(255, 255, 255, 0.1);
}

.warning-content p {
    margin: 0 0 20px 0;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* 경고 메시지 섹션 */
.warning-message-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.warning-message-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-message-content {
    flex: 1;
}

.warning-message-content h4 {
    margin: 0 0 8px 0;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
}

.warning-message-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* 버튼 스타일 */
.action-buttons {
    display: flex;
    gap: 12px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.primary-btn, .info-btn, .secondary-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-height: 44px;
}

.primary-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.info-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.info-btn:hover {
    background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
    transform: translateY(-2px);
}

.secondary-btn {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #545b62 0%, #4e555b 100%);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.primary-btn:hover .btn-arrow,
.info-btn:hover .btn-arrow,
.secondary-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.warning-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.favorites-btn {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

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

.favorites-btn:hover::before {
    left: 100%;
}

.favorites-btn:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.favorites-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.favorites-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}

/* 진행률 바 스타일 */
.progress-container {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.progress-count {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.progress-bar {
    position: relative;
    height: 12px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: glow 3s ease-in-out infinite;
    opacity: 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    transition: all 0.3s ease;
}

.step-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.step-inactive .step-marker {
    background: #e9ecef;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-active .step-marker {
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

.step-current .step-marker {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    transform: scale(1.2);
    animation: currentStepPulse 2s infinite;
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    transition: color 0.3s ease;
}

.step-active .step-label {
    color: #ff6b35;
}

.step-current .step-label {
    color: #d32f2f;
    font-weight: 700;
}

/* 진행률 바 애니메이션 */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes currentStepPulse {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.3); }
}

/* 접속 정보 섹션 */
.access-info-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
}

.access-info-section h4 {
    margin: 0 0 18px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.access-info-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff5722);
    border-radius: 2px;
}

/* 접속 정보 헤더 */
.access-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.access-info-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.realtime-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

/* 푸터 스타일 */
.warning-footer {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 0 0 10px 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.footer-content .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-content .footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-content .footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.access-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    font-size: 13px;
    font-family: inherit;
}

.access-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    font-weight: 700;
    padding: 14px 10px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.access-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
    color: #6c757d;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.access-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.access-table tbody tr:hover {
    background-color: #e3f2fd;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.access-table tbody tr:last-child {
    border-bottom: none;
}

/* 애니메이션 */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

.warning-level-2 .warning-icon {
    animation: shake 0.6s infinite;
}

.warning-level-3 .warning-icon {
    animation: shake 0.4s infinite;
}

/* 차단된 IP 경고 팝업 */
.blocked-ip-warning {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 3px solid #d32f2f;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.3);
    z-index: 10001;
    font-family: inherit;
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.blocked-ip-warning .warning-header {
    background: rgba(211, 47, 47, 0.1);
    border-bottom-color: rgba(211, 47, 47, 0.2);
}

.blocked-ip-warning .warning-header h3 {
    color: #d32f2f;
    font-size: 18px;
    font-weight: 700;
}

.warning-actions .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.warning-actions .btn-danger {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.warning-actions .btn-danger:hover {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.warning-actions .btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.warning-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .warning-popup,
    .blocked-ip-warning {
        top: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        width: auto;
        border-radius: 16px;
    }
    
    .warning-header {
        padding: 18px 20px 14px;
    }
    
    .warning-content {
        padding: 18px 20px 20px;
    }
    
    .warning-title {
        font-size: 17px;
    }
    
    .warning-content p {
        font-size: 14px;
    }
    
    .favorites-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .warning-icon {
        font-size: 28px;
    }
    
    .access-table {
        font-size: 12px;
    }
    
    .access-table th,
    .access-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .access-info-section {
        padding: 16px;
        margin-top: 20px;
    }
}

/* 작은 모바일 화면 */
@media (max-width: 480px) {
    .warning-popup,
    .blocked-ip-warning {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 14px;
    }
    
    .warning-header {
        padding: 16px 18px 12px;
    }
    
    .warning-content {
        padding: 16px 18px 18px;
    }
    
    .warning-icon {
        font-size: 26px;
        margin-right: 12px;
    }
    
    .warning-title {
        font-size: 16px;
    }
    
    .favorites-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .access-table {
        font-size: 11px;
    }
    
    .access-table th,
    .access-table td {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    .access-info-section h4 {
        font-size: 15px;
    }
    
    .access-info-section {
        padding: 14px;
    }
}

/* 접근성 개선 */
.warning-popup:focus-within,
.blocked-ip-warning:focus-within {
    outline: 3px solid #2196f3;
    outline-offset: 2px;
}

.favorites-btn:focus,
.close-btn:focus,
.btn:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
    .warning-popup {
        background: #1a1a1a;
        color: #ffffff;
        border-color: #ff6b35;
    }
    
    .warning-content p {
        color: #e0e0e0;
    }
    
    .access-table {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    
    .access-table th {
        background: #404040;
        color: #ffffff;
    }
    
    .access-table td {
        color: #cccccc;
    }
    
    .access-table tbody tr:nth-child(even) {
        background-color: #333333;
    }
    
    .access-table tbody tr:hover {
        background-color: #404040;
    }
}

body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* 헤더 스타일 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo h1 {
    color: #ff9a9e;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    border: 2px solid #ff9a9e;
    border-radius: 50px;
    padding: 8px 16px;
    display: inline-block;
}

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ff9a9e;
}

.admin-link {
    background: #333;
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.admin-link:hover {
    background: #ff9a9e;
    border-color: #ff9a9e;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 154, 158, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 히어로 섹션 */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-content {
    max-width: 800px;
}

.hero-video {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

.company-name {
    color: #ff9a9e;
}

.hero-btn {
    font-size: 1.3rem;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.hero-btn:hover {
    background: linear-gradient(45deg, #fecfef, #fad0c4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 154, 158, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff9a9e;
    color: white;
}

.btn-primary:hover {
    background: #fecfef;
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
    cursor: pointer;
}

.hero-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-overlay:hover {
    background: rgba(255, 154, 158, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-video.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* 소셜 링크 섹션 */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.social-link span {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* 네이버 링크 스타일 */
.naver-link {
    background: linear-gradient(45deg, #03c75a, #00d464);
    border-color: rgba(3, 199, 90, 0.3);
}

.naver-link:hover {
    background: linear-gradient(45deg, #00d464, #02b84a);
    box-shadow: 0 8px 25px rgba(3, 199, 90, 0.4);
}

.naver-link .social-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* 카카오톡 링크 스타일 */
.kakao-link {
    background: linear-gradient(45deg, #FEE500, #FFD700);
    color: #2c1e0e;
    border-color: rgba(254, 229, 0, 0.3);
    font-weight: 700;
}

.kakao-link:hover {
    background: linear-gradient(45deg, #FFD700, #FEE500);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.4);
    color: #1a1008;
}

.kakao-link .social-icon {
    background: rgba(44, 30, 14, 0.3);
    color: #2c1e0e;
}

.kakao-link span {
    color: #2c1e0e;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* 차량 보기 섹션 */
.vehicle-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vehicle-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1000,16,1000,16V0Z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1000px); }
}

.vehicle-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.vehicle-preview {
    position: relative;
    z-index: 2;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vehicle-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #ffecd2);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #333;
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 154, 158, 0.6);
    animation-duration: 1s;
}

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

.btn-gradient:hover::before {
    left: 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-gradient i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.cta-description {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* 프로세스 섹션 - 밝고 투명한 디자인 */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(102,126,234,0.05)"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1000,16,1000,16V0Z"/></svg>') repeat-x;
    animation: wave 30s linear infinite;
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.process .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #64748b;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 200px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef, #ffecd2);
    border-radius: 15px 15px 0 0;
}

.step:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 1);
}

/* 화살표 스타일 */
.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ff9a9e;
    font-weight: bold;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.1);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 154, 158, 0.3);
    position: relative;
    flex-shrink: 0;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-number::after {
    opacity: 0.3;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.step p {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0;
}

/* 특징 섹션 - 부드러운 연동 디자인 */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(248, 250, 252, 1) 20%, 
        rgba(248, 250, 252, 1) 80%, 
        rgba(15, 23, 42, 0.05) 100%
    );
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 154, 158, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(254, 207, 239, 0.05) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.features .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #64748b;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 154, 158, 0.1) 0%, 
        rgba(254, 207, 239, 0.1) 50%, 
        rgba(255, 236, 210, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef, #ffecd2);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px 25px 0 0;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover::after {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(255, 154, 158, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #ffecd2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.3);
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #ffecd2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::before {
    opacity: 0.5;
    animation: icon-pulse 1.5s infinite;
}

@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* 금연 아이콘 특별 스타일 */
.feature-icon .fa-ban {
    font-size: 2.8rem;
    position: absolute;
    color: #e74c3c;
}

.feature-icon .fa-smoking {
    font-size: 1.8rem;
    color: white;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}



/* 문의 섹션 - 모던 디자인 */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 154, 158, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(254, 207, 239, 0.1) 0%, transparent 50%);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.contact .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* 푸터 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff9a9e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff9a9e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 구글 지도 섹션 */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-details h3 {
    color: #ff9a9e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-details p {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.map-details i {
    color: #ff9a9e;
    width: 20px;
    text-align: center;
}

.map-link {
    text-align: center;
    margin: 2rem 0;
}

.map-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    background: #ff9a9e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
}

.map-link .btn:hover {
    background: #fecfef;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.4);
}

.map-link i {
    font-size: 1.2rem;
}

.map-alternative {
    display: none;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #ff9a9e;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.map-placeholder p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* 지도가 로드되지 않을 때 대안 표시 */
.map-container:empty + .map-alternative,
.map-container iframe[src*="example"] + .map-alternative {
    display: block;
}

.map-instructions {
    margin: 2rem 0;
}

.instructions-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff9a9e;
}

.instructions-box h3 {
    color: #ff9a9e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-box ul {
    list-style: none;
    padding: 0;
}

.instructions-box li {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.1rem;
    padding-left: 1rem;
    position: relative;
}

.instructions-box li:before {
    content: "📍";
    position: absolute;
    left: 0;
    color: #ff9a9e;
}

.instructions-box strong {
    color: #2c3e50;
    font-weight: 600;
}



/* 지도 컨테이너에 상대 위치 설정 */
.map-container {
    position: relative;
}

/* 지도 오버레이 */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.location-pin {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.pin-icon {
    font-size: 2.5rem;
    color: #ff9a9e;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.pin-label {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    border: 2px solid #ff9a9e;
}

.pin-label span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%);
    }
    40% {
        transform: translate(-50%, -60%);
    }
    60% {
        transform: translate(-50%, -55%);
    }
}

/* 좌표 정보 박스 */
.map-coordinates-info {
    margin: 2rem 0;
}

.coordinates-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff9a9e;
    max-width: 400px;
    margin: 0 auto;
}

.coordinates-box h4 {
    color: #ff9a9e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coordinates-box p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.coordinates-box strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 위치 안내 박스 */
.map-location-note {
    margin: 2rem 0;
}

.note-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.note-box h4 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-box p {
    margin-bottom: 0.5rem;
    color: #856404;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.note-box strong {
    color: #856404;
    font-weight: 600;
}

/* 카카오톡 문의 아이콘 */
.kakao-inquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* 사고대차 페이지용 카카오톡 플로팅 버튼 */
.kakao-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.kakao-inquiry a,
.kakao-floating a {
    display: flex;
    align-items: center;
    background: #FEE500;
    color: #3c1e1e;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.kakao-inquiry a:hover,
.kakao-floating a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.kakao-inquiry i,
.kakao-floating i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.kakao-text {
    font-weight: 600;
}

/* 차량보기 페이지 스타일 */
.search-section {
    margin-top: 80px;
    padding: 50px 0;
    background: #f8f9fa;
}

.search-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.search-group input,
.search-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-button {
    width: 100%;
    padding: 15px;
    background: #ff9a9e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #fecfef;
}

/* 차량 목록 */
.vehicles-section {
    padding: 80px 0;
}

.vehicles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 350px));
    gap: 2rem;
    justify-content: center;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 350px;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.vehicle-type {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.vehicle-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.period {
    color: #7f8c8d;
    margin-left: 0.5rem;
}

.reserve-button {
    width: 100%;
    padding: 12px;
    background: #ff9a9e;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reserve-button:hover {
    background: #fecfef;
}

/* 카테고리 안내 */
.category-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    /* 모바일 메뉴 */
    .mobile-menu-toggle {
        display: block;
        font-size: 1.2rem;
        color: #333;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: #f5f5f5;
    }
    
    .nav {
        display: none;
    }
    
    /* 컨테이너 패딩 조정 */
    .container {
        padding: 0 15px;
    }
    
    /* 헤더 */
    .header .container {
        padding: 0.8rem 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 1.5px solid #ff9a9e;
        border-radius: 40px;
        padding: 6px 12px;
        display: inline-block;
    }
    
    /* 히어로 섹션 */
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-video {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-video video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* 소셜 링크 */
    .social-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    /* 차량 쇼케이스 */
    .vehicle-showcase h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .vehicle-categories {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 1rem;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .vehicle-categories::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 1rem 0.5rem;
        text-align: center;
    }
    
    .category-card p {
        display: none;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* 버튼 */
    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    /* 프로세스 단계 */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: start;
    }
    
    .step {
        width: auto;
        min-height: 140px;
        padding: 1rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    /* 시계방향 화살표 추가 */
    .step:nth-child(1)::after {
        content: '→';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    .step:nth-child(2)::after {
        content: '↓';
        position: absolute;
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
        font-size: 1.2rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    .step:nth-child(3)::after {
        content: '←';
        position: absolute;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    /* 서비스 특징 */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .feature {
        padding: 1rem 0.5rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature h3 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .feature p {
        display: none;
    }
    
    /* 연락처 정보 */
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        text-align: center;
        aspect-ratio: 1;
        min-height: 100px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        color: #ff9a9e;
        margin: 0;
    }
    
    .contact-item h3 {
        font-size: 0.8rem;
        margin: 0;
        color: white;
        line-height: 1.2;
    }
    
    .contact-item p {
        font-size: 0.7rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.1;
    }
    
    /* 모바일에서 연락처 섹션 부제목 숨기기 */
    .contact .section-subtitle {
        display: none;
    }
    
    /* 모바일에서 전화번호와 주소 숨기기 */
    .contact-item:nth-child(1) p,
    .contact-item:nth-child(2) {
        display: none;
    }
    
    /* 검색 폼 */
    .search-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* 차량 그리드 */
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .vehicle-card {
        padding: 0.8rem;
    }
    
    .vehicle-card .vehicle-info h3 {
        font-size: 0.9rem;
    }
    
    .vehicle-card .vehicle-specs {
        font-size: 0.6rem;
    }
    
    .vehicle-card .vehicle-specs span {
        padding: 0.15rem 0.3rem;
    }
    
    .vehicle-card .vehicle-price .price {
        font-size: 0.9rem;
    }
    
    .vehicle-card .vehicle-price .period {
        font-size: 0.7rem;
    }
    
    .vehicle-card .reserve-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* 모바일에서 차량 카드 전체 크기 축소 */
    .vehicle-card {
        width: 100%;
        max-width: 280px;
    }
    
    .vehicle-card .vehicle-image img {
        height: 120px;
        object-fit: cover;
    }
    
    /* 작은 화면에서 더 작은 크기로 조정 */
    @media (max-width: 600px) {
        .vehicle-card {
            max-width: 250px;
        }
        
        .vehicle-card .vehicle-image img {
            height: 100px;
        }
    }
    
    @media (max-width: 480px) {
        .vehicle-card {
            max-width: 220px;
        }
        
        .vehicle-card .vehicle-image img {
            height: 90px;
        }
    }
    
    @media (max-width: 400px) {
        .vehicle-card {
            max-width: 200px;
        }
        
        .vehicle-card .vehicle-image img {
            height: 80px;
        }
    }
    
    /* 푸터 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* 카카오톡 문의 */
    .kakao-text {
        font-size: 0.9rem;
    }
    
    .kakao-inquiry a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* 차량 슬라이드 */
    .vehicle-slide {
        min-width: 280px;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
    
    .vehicle-slide .vehicle-info h3 {
        font-size: 1.1rem;
    }
    
    .vehicle-slide .vehicle-specs {
        font-size: 0.8rem;
    }
    
    .vehicle-slide .vehicle-specs span {
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    /* 컨테이너 패딩 조정 */
    .container {
        padding: 0 10px;
    }
    
    /* 헤더 */
    .header .container {
        padding: 0.6rem 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 1px solid #ff9a9e;
        border-radius: 30px;
        padding: 4px 10px;
        display: inline-block;
    }
    
    /* 모바일 메뉴 토글 */
    .mobile-menu-toggle {
        font-size: 1rem;
        padding: 0.4rem;
    }
    
    /* 히어로 섹션 */
    .hero {
        padding: 80px 0 50px;
        min-height: 70vh;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-video {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-video video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* 소셜 링크 */
    .social-links {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
        align-items: center;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    /* 차량 쇼케이스 */
    .vehicle-showcase h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .vehicle-categories {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.8rem;
        padding: 0.4rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .vehicle-categories::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 0.8rem 0.4rem;
        text-align: center;
    }
    
    .category-card p {
        display: none;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* 버튼 */
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* 프로세스 단계 */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        align-items: start;
    }
    
    .step {
        width: auto;
        min-height: 120px;
        padding: 0.8rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    /* 시계방향 화살표 추가 */
    .step:nth-child(1)::after {
        content: '→';
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    .step:nth-child(2)::after {
        content: '↓';
        position: absolute;
        right: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(50%);
        font-size: 1rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    .step:nth-child(3)::after {
        content: '←';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #ff9a9e;
        z-index: 3;
    }
    
    /* 서비스 특징 */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .feature {
        padding: 0.8rem 0.3rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.4rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature h3 {
        font-size: 0.7rem;
        margin-bottom: 0;
    }
    
    .feature p {
        display: none;
    }
    
    /* 연락처 정보 */
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.8rem 0.4rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        backdrop-filter: blur(10px);
        text-align: center;
        aspect-ratio: 1;
        min-height: 80px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        color: #ff9a9e;
        margin: 0;
    }
    
    .contact-item h3 {
        font-size: 0.7rem;
        margin: 0;
        color: white;
        line-height: 1.1;
    }
    
    .contact-item p {
        font-size: 0.6rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.0;
    }
    
    /* 모바일에서 연락처 섹션 부제목 숨기기 */
    .contact .section-subtitle {
        display: none;
    }
    
    /* 모바일에서 전화번호와 주소 숨기기 */
    .contact-item:nth-child(1) p,
    .contact-item:nth-child(2) {
        display: none;
    }
    
    /* 검색 폼 */
    .search-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* 차량 그리드 */
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .vehicle-card {
        padding: 0.6rem;
    }
    
    .vehicle-card .vehicle-info h3 {
        font-size: 0.8rem;
    }
    
    .vehicle-card .vehicle-specs {
        font-size: 0.5rem;
    }
    
    .vehicle-card .vehicle-specs span {
        padding: 0.1rem 0.25rem;
    }
    
    .vehicle-card .vehicle-price .price {
        font-size: 0.8rem;
    }
    
    .vehicle-card .vehicle-price .period {
        font-size: 0.6rem;
    }
    
    .vehicle-card .reserve-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* 모바일에서 차량 카드 전체 크기 축소 */
    .vehicle-card {
        width: 100%;
        max-width: 220px;
    }
    
    .vehicle-card .vehicle-image img {
        height: 90px;
        object-fit: cover;
    }
    
    /* 더 작은 화면에서 추가 축소 */
    @media (max-width: 400px) {
        .vehicle-card {
            max-width: 200px;
        }
        
        .vehicle-card .vehicle-image img {
            height: 80px;
        }
    }
    
    @media (max-width: 360px) {
        .vehicle-card {
            max-width: 180px;
        }
        
        .vehicle-card .vehicle-image img {
            height: 70px;
        }
    }
    
    /* 푸터 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* 카카오톡 문의 */
    .kakao-text {
        font-size: 0.8rem;
    }
    
    .kakao-inquiry a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* 차량 슬라이드 */
    .vehicle-slide {
        min-width: 250px;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .vehicle-slide .vehicle-info h3 {
        font-size: 1rem;
    }
    
    .vehicle-slide .vehicle-specs {
        font-size: 0.7rem;
    }
    
    .vehicle-slide .vehicle-specs span {
        padding: 0.15rem 0.4rem;
    }
    
    /* 네비게이션 */
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-list a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* 프로세스 제목 */
    .process h2,
    .features h2,
    .contact h2,
    .vehicle-showcase h2 {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 지도 */
    .map-container iframe {
        height: 300px;
    }
    
    .map-details h3 {
        font-size: 1.2rem;
    }
    
    .map-details p {
        font-size: 0.9rem;
    }
    
    /* 차량 슬라이드 가격 */
    .vehicle-slide .vehicle-info h3 {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .vehicle-slide .vehicle-price .price {
        font-size: 1.1rem;
        white-space: nowrap;
    }
}

/* 연락처 링크 스타일 */
.phone-link {
    color: #ff9a9e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.kakao-link {
    color: #FEE500;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.kakao-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* 연락처 섹션 개선 */
.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 3rem;
    color: #ff9a9e;
    margin-bottom: 1rem;
}

/* 아이콘 링크 스타일 */
.icon-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.1);
}

.icon-link i {
    transition: color 0.3s ease;
}

.icon-link:hover i {
    color: #e74c3c;
}

/* 카카오톡 아이콘 특별 스타일 */
.kakao-icon-link i {
    color: #FEE500 !important;
    background: #3c1e1e;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
}

.kakao-icon-link:hover i {
    color: #FFD700 !important;
    background: #2c1414;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(254, 229, 0, 0.5);
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    font-size: 1.1rem;
    margin: 0;
}

/* Insurance Info Page Styles */
.insurance-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards;
}

.insurance-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.insurance-hero p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insurance-types {
    padding: 5rem 0;
    background: #f8fafc;
}

.insurance-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.insurance-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.insurance-icon i {
    font-size: 2rem;
    color: white;
}

.insurance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.insurance-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insurance-card ul {
    list-style: none;
    padding: 0;
}

.insurance-card ul li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.insurance-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.coverage-details {
    padding: 5rem 0;
    background: white;
}

.coverage-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.coverage-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-3px);
}

.coverage-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.coverage-header i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 1rem;
}

.coverage-header h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0;
}

.coverage-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.coverage-content ul {
    list-style: none;
    padding: 0;
}

.coverage-content ul li {
    padding: 0.3rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.2rem;
}

.coverage-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.insurance-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.insurance-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.insurance-process .step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.insurance-process .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.insurance-process .step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.insurance-process .step p {
    color: #64748b;
    font-size: 0.95rem;
}

.important-notes {
    padding: 5rem 0;
    background: #f8fafc;
}

.important-notes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.note-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
    transition: transform 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
}

.note-icon {
    margin-bottom: 1rem;
}

.note-icon i {
    font-size: 2rem;
    color: #ef4444;
}

.note-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.note-item p {
    color: #64748b;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Animation classes */
.insurance-card.animate,
.coverage-item.animate,
.step.animate,
.note-item.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 애니메이션 키프레임 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* 간단한 검색 섹션 */
.simple-search-section {
    margin-top: 80px;
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
}

.simple-search-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.search-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.quick-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #ff9a9e;
    background: white;
    color: #ff9a9e;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff9a9e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
}

/* 차량 배지 */
.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 154, 158, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.vehicle-image {
    position: relative;
}

/* 차량 스펙 */
.vehicle-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.vehicle-specs i {
    color: #ff9a9e;
    font-size: 0.8rem;
}

/* 할인 정보 */
.discount-info {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 154, 158, 0.3);
} 

/* Insurance Content Section */
.insurance-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 80px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.insurance-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.insurance-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insurance-section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.insurance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.insurance-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.insurance-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.insurance-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.insurance-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.coverage-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.coverage-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 16px 16px 0 0;
}

.coverage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.coverage-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.coverage-item p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #667eea;
    position: relative;
    z-index: 1;
}

.note {
    background: rgba(255, 243, 205, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 234, 167, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 1rem;
    color: #856404;
    position: relative;
    border-left: 4px solid #ffc107;
}

.qualification-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.qualification-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.qualification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.qualification-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    padding-left: 1rem;
}

.qualification-item ul {
    list-style: none;
    padding: 0;
}

.qualification-item ul li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.qualification-item ul li:last-child {
    border-bottom: none;
}

.qualification-item ul li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.other-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.notice-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.notice-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.notice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.notice-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.notice-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #4a5568;
}

/* Responsive adjustments for insurance content */
@media (max-width: 768px) {
    .insurance-content {
        padding: 2rem 0;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .insurance-content h2 {
        font-size: 2rem;
    }
    
    .insurance-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .insurance-section h3 {
        font-size: 1.5rem;
    }
    
    .coverage-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qualification-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .other-notices {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .insurance-content h2 {
        font-size: 1.8rem;
    }
    
    .insurance-section {
        padding: 1rem;
    }
    
    .insurance-section h3 {
        font-size: 1.3rem;
    }
    
    .coverage-item,
    .qualification-item,
    .notice-item {
        padding: 1rem;
    }
}

/* Refund and Fee Regulations Styles */
.refund-regulations {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.regulations-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.regulations-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.regulation-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.regulation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.regulation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.regulation-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.regulation-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.regulation-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regulation-item ul li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.regulation-item ul li::before {
    content: "✓";
    color: #667eea;
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-weight: bold;
}

.regulation-note {
    background: rgba(255, 243, 205, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 234, 167, 0.5);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    border-left: 4px solid #ffc107;
}

.regulation-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Responsive Design for Regulations */
@media (max-width: 768px) {
    .regulations-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regulation-item {
        padding: 2rem;
    }
    
    .regulations-content h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

/* 인기차량 섹션 스타일 */
.popular-vehicles {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.popular-vehicles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
    animation: wave 20s ease-in-out infinite;
}

.popular-vehicles h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.popular-vehicles .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.vehicle-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.carousel-track {
    display: flex;
    animation: carousel-scroll 20s linear infinite;
    width: calc(300px * 8); /* 4개 차량 * 2 (반복) */
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.vehicle-slide {
    width: 300px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vehicle-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.vehicle-slide .vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.vehicle-slide .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-slide:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-slide .vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.vehicle-slide .vehicle-info {
    padding: 1.5rem;
}

.vehicle-slide .vehicle-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.vehicle-slide .vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-slide .vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #4a5568;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.vehicle-slide .vehicle-specs i {
    color: #667eea;
    font-size: 0.7rem;
}

.vehicle-slide .vehicle-price {
    text-align: center;
    margin-top: 1rem;
}

.vehicle-slide .vehicle-price .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicle-slide .vehicle-price .period {
    font-size: 0.9rem;
    color: #718096;
    margin-left: 0.3rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .popular-vehicles h2 {
        font-size: 2.2rem;
    }
    
    .vehicle-slide {
        width: 280px;
        margin: 0 10px;
    }
    
    .carousel-track {
        width: calc(280px * 8);
    }
    
    .vehicle-slide .vehicle-info {
        padding: 1.2rem;
    }
    
    .vehicle-slide .vehicle-info h3 {
        font-size: 1.2rem;
    }
    
    .vehicle-slide .vehicle-specs {
        gap: 0.5rem;
    }
    
    .vehicle-slide .vehicle-specs span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .popular-vehicles h2 {
        font-size: 1.8rem;
    }
    
    .vehicle-slide {
        width: 250px;
        margin: 0 8px;
    }
    
    .carousel-track {
        width: calc(250px * 8);
    }
    
    .vehicle-slide .vehicle-image {
        height: 150px;
    }
    
    .vehicle-slide .vehicle-info h3 {
        font-size: 1.1rem;
    }
    
    .vehicle-slide .vehicle-price .price {
        font-size: 1.2rem;
    }
}

/* 관리자 버튼 스타일 */
.btn-admin {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.3);
    margin-left: 10px;
}

.btn-admin:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

/* 테스트데이터 관리 섹션 스타일 */
.test-data-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.test-data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.test-data-section .container {
    position: relative;
    z-index: 1;
}

.test-data-section h2 {
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.test-data-section .section-subtitle {
    text-align: center;
    margin-bottom: 48px;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.test-data-table-container {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.test-data-table-container h3 {
    margin-bottom: 24px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #007bff;
    border-color: #007bff;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.test-data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.test-data-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.test-data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #dee2e6;
    color: #495057;
}

.test-data-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.test-data-table tbody tr:hover {
    background: #e9ecef;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.test-data-table tbody tr:last-child {
    border-bottom: none;
}

.risk-high {
    color: #dc3545;
    font-weight: 600;
}

.risk-medium {
    color: #ffc107;
    font-weight: 600;
}

.risk-low {
    color: #28a745;
    font-weight: 600;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .test-data-section {
        padding: 60px 0;
    }
    
    .test-data-section h2 {
        font-size: 2rem;
    }
    
    .info-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .table-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .test-data-table th,
    .test-data-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .test-data-section h2 {
        font-size: 1.8rem;
    }
    
    .info-card,
    .test-data-table-container {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* 접속기록 탭 아이콘 및 배지 스타일 */
.access-log-icons {
    margin-right: 8px;
    font-size: 14px;
}

.access-log-icons.text-primary {
    color: #007bff !important;
}

.access-log-icons.text-info {
    color: #17a2b8 !important;
}

.access-log-icons.text-warning {
    color: #ffc107 !important;
}

.access-log-icons.text-success {
    color: #28a745 !important;
}

.access-log-icons.text-secondary {
    color: #6c757d !important;
}

/* 배지 스타일 */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 12px;
    margin-left: 4px;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

/* 접속기록 테이블 개선 */
.access-log-table td {
    vertical-align: middle;
    padding: 12px 8px;
}

.access-log-table .no-data {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-style: italic;
}

.access-log-table .error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    font-weight: 500;
}

/* 아이콘과 텍스트 간격 조정 */
.access-log-table td i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

/* 텍스트 색상 클래스 */
.text-muted {
    color: #6c757d !important;
    font-size: 12px;
}

.text-primary {
    color: #007bff !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-success {
    color: #28a745 !important;
}

.text-secondary {
    color: #6c757d !important;
}

/* 접속기록 탭 활성화 상태 */
.tab-content.active {
    display: block !important;
}

.tab-content {
    display: none;
}

/* 페이지네이션 스타일 */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.page-number {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #007bff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.page-number:hover {
    background: #e9ecef;
    border-color: #007bff;
}

.page-number.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* 테이블 반응형 처리 */
@media (max-width: 768px) {
    .access-log-table {
        font-size: 12px;
    }
    
    .access-log-table td {
        padding: 8px 4px;
    }
    
    .badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .access-log-icons {
        font-size: 12px;
        margin-right: 4px;
    }
    
    .access-log-icons.text-primary {
        color: #007bff;
    }
    
    .access-log-icons.text-info {
        color: #17a2b8;
    }
    
    .access-log-icons.text-warning {
        color: #ffc107;
    }
    
    .access-log-icons.text-success {
        color: #28a745;
    }
    
    .access-log-icons.text-secondary {
        color: #6c757d;
    }

.access-table th[colspan] {
    text-align: center;
    background: #e9ecef;
    font-weight: 600;
    color: #495057;
}

/* 페이지네이션 스타일 */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.pagination-info {
    color: #6c757d;
    font-size: 14px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 2px;
}

.page-number {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}

.page-number:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.page-number.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination-settings {
    display: flex;
    align-items: center;
}

.rows-per-page {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    color: #6c757d;
}

/* 테이블 컨테이너 스타일 */
.table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.access-table th,
.access-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.access-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    position: sticky;
    top: 0;
    z-index: 10;
}

.access-table tbody tr:hover {
    background: #f8f9fa;
}

.access-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.access-table tbody tr:nth-child(even):hover {
    background: #f1f3f4;
}

/* IP 주소 링크 스타일 */
.ip-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.ip-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.ip-link.disabled {
    color: #6c757d;
    cursor: default;
    text-decoration: none;
}

.ip-link.disabled:hover {
    color: #6c757d;
    text-decoration: none;
}

/* IP 정보/차단메모 빨간 글씨 스타일 */
.ip-info-red {
    color: #dc3545;
    font-weight: 500;
}

/* 중복접속 팝업 스타일 */
.duplicate-access-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.duplicate-access-popup.show {
    display: flex;
}

.duplicate-access-popup-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.duplicate-access-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.duplicate-access-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.duplicate-access-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.duplicate-access-popup-close:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.duplicate-access-popup-body {
    margin-bottom: 25px;
}

.duplicate-access-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.duplicate-access-info h4 {
    color: #007bff;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.duplicate-access-info p {
    margin: 8px 0;
    color: #495057;
    font-size: 14px;
}

.duplicate-access-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.duplicate-access-table th,
.duplicate-access-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.duplicate-access-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.duplicate-access-table td {
    color: #212529;
    font-size: 14px;
}

.duplicate-access-table tbody tr:hover {
    background-color: #f8f9fa;
}

.duplicate-access-popup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.duplicate-access-popup-footer .btn {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duplicate-access-popup-footer .btn-primary {
    background-color: #007bff;
    color: white;
}

.duplicate-access-popup-footer .btn-primary:hover {
    background-color: #0056b3;
}

.duplicate-access-popup-footer .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.duplicate-access-popup-footer .btn-secondary:hover {
    background-color: #545b62;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .access-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-dropdowns {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-select,
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .access-table {
        font-size: 12px;
    }
    
    .access-table th,
    .access-table td {
        padding: 8px 4px;
    }
}

/* ===== 차단관리 탭 스타일 ===== */

/* 차단관리 콘텐츠 스타일 */
.blocking-content {
    padding: 20px;
}

.blocking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.info-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section li strong {
    color: #495057;
    font-weight: 600;
}

/* 차단관리 액션 버튼 */
.blocking-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blocking-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blocking-actions .btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.blocking-actions .btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.blocking-actions .btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.blocking-actions .btn-info:hover {
    background: linear-gradient(135deg, #138496, #117a8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.blocking-actions .btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.blocking-actions .btn-warning:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* 차단관리 컨트롤 */
.blocking-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.account-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-selector select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.blocking-summary {
    background: #e3f2fd;
    padding: 8px 16px;
    border-radius: 20px;
    color: #1976d2;
    font-weight: 600;
    font-size: 14px;
}

.search-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-controls select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* 차단IP 테이블 스타일 */
#blockedIPsTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#blockedIPsTable th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#blockedIPsTable th:hover {
    background: #e9ecef;
}

#blockedIPsTable td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
    color: #6c757d;
    font-size: 13px;
}

#blockedIPsTable tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

#blockedIPsTable tbody tr:hover {
    background-color: #e3f2fd;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* IP 정보 스타일 */
.ip-info {
    text-align: left;
}

.ip-info strong {
    color: #495057;
    font-weight: 600;
}

.ip-info small {
    color: #6c757d;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* 잠금 토글 스타일 */
.lock-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.lock-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lock-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.lock-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.lock-toggle input:checked + .lock-slider {
    background-color: #28a745;
}

.lock-toggle input:checked + .lock-slider:before {
    transform: translateX(26px);
}

/* 상태 배지 스타일 */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-blocked {
    background: #f8d7da;
    color: #721c24;
}

.status-unblocked {
    background: #d4edda;
    color: #155724;
}

/* 액션 버튼 스타일 */
.action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sm:hover {
    transform: translateY(-1px);
}

/* 페이지네이션 스타일 */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px 0;
}

.page-number {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background: white;
    color: #495057;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.page-number:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.page-number.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* 모달 팝업 스타일 */
.modal-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-popup.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-popup.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* 폼 그룹 스타일 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* 자동해제 기록 테이블 스타일 */
.auto-unblock-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 15px;
}

.auto-unblock-history-table th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.auto-unblock-history-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
    color: #6c757d;
}

.auto-unblock-history-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.auto-unblock-history-table tbody tr:hover {
    background-color: #e3f2fd;
}

.no-data {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px 20px;
}

/* 알림 스타일 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
}

.notification-success {
    background: #28a745;
}

.notification-warning {
    background: #ffc107;
    color: #212529;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .blocking-info {
        grid-template-columns: 1fr;
    }
    
    .blocking-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-controls {
        justify-content: center;
    }
    
    .blocking-actions {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    #blockedIPsTable {
        font-size: 12px;
    }
    
    #blockedIPsTable th,
    #blockedIPsTable td {
        padding: 8px 4px;
    }
}

@media (max-width: 480px) {
    .blocking-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* 모바일에서 자동 확대 방지 */
    }
}

/* 관리자 대시보드 스타일 */
.dashboard-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 탭 네비게이션 */
.nav-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
    overflow-x: auto;
}

.nav-tab {
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-tab:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #0056b3;
}

.nav-tab.active {
    background: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* 탭 콘텐츠 - 강제 표시 */
.tab-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.tab-content.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* 접속기록 탭 강제 표시 */
#access-tab {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* 테이블 컨테이너 */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background: white;
}

/* 대시보드 테이블 */
.dashboard-table {
    width: 100%;
    min-width: 1700px;
    border-collapse: collapse;
    font-size: 13px;
}

.dashboard-table th {
    background: #f8f9fa;
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.dashboard-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    line-height: 1.4;
}

.dashboard-table tbody tr:hover {
    background: #f8f9fa;
}

.dashboard-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.dashboard-table tbody tr:nth-child(even):hover {
    background: #f1f3f4;
}

/* 중복 접속 횟수 정렬 가능한 헤더 */
.sortable-header {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.sortable-header:hover {
    background: #e9ecef;
}

.sortable-header::after {
    content: '↕';
    position: absolute;
    right: 8px;
    color: #6c757d;
    font-size: 12px;
    transition: all 0.2s ease;
}

.sortable-header.sort-asc::after {
    content: '↑';
    color: #28a745;
}

.sortable-header.sort-desc::after {
    content: '↓';
    color: #dc3545;
}

/* 중복 접속 횟수 링크 */
.duplicate-count-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.duplicate-count-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 광고여부/광고상품 클릭 가능한 링크 */
.ad-referrer-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ad-referrer-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 광고여부/광고상품 팝업 - 수정됨 */
.ad-referrer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
}

.ad-referrer-popup.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-referrer-popup-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ad-referrer-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.ad-referrer-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.ad-referrer-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ad-referrer-popup-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.ad-referrer-popup-body {
    margin-bottom: 20px;
}

.ad-referrer-info {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.ad-referrer-info h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.ad-referrer-info p {
    margin: 0;
    color: #6c757d;
    font-size: 13px;
    word-break: break-all;
}

.ad-referrer-popup-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.ad-referrer-popup-footer .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.ad-referrer-popup-footer .btn-primary {
    background: #007bff;
    color: white;
}

.ad-referrer-popup-footer .btn-primary:hover {
    background: #0056b3;
}

.ad-referrer-popup-footer .btn-secondary {
    background: #6c757d;
    color: white;
}

.ad-referrer-popup-footer .btn-secondary:hover {
    background: #545b62;
}

/* 컨테이너 너비 조정 */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 테이블 컨테이너 스크롤바 스타일링 */
.table-container::-webkit-scrollbar {
    height: 16px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 페이지네이션 컨트롤 */
.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 16px 0;
    border-top: 1px solid #e9ecef;
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.pagination-info select {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-buttons .btn {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    background: white;
    color: #495057;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination-buttons .btn:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
}

.pagination-buttons .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-buttons .btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.pagination-buttons .btn-secondary:hover:not(:disabled) {
    background: #545b62;
    border-color: #545b62;
}

/* 알림기록 탭 스타일 */
.notification-content {
    max-width: 100%;
    overflow-x: hidden;
}

.notification-table-container {
    max-width: 100%;
    overflow-x: auto;
}

/* 환불요청 탭 스타일 - 개선됨 */
.refund-content {
    max-width: 100%;
    overflow-x: hidden;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.refund-header h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.refund-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 24px;
}

.refund-steps {
    margin: 32px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-right: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.step-content h4 {
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.step-content p {
    color: #495057;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-size: 15px;
}

.step-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.step-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sub-steps {
    margin-top: 20px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.sub-steps h5 {
    color: #495057;
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
}

.sub-steps ol {
    margin: 0;
    padding-left: 20px;
}

.sub-steps li {
    margin: 8px 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.refund-actions {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.action-group h4 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.refund-notes {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    border-left: 4px solid #2196f3;
}

.refund-notes h4 {
    color: #1976d2;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.note-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e3f2fd;
    text-align: center;
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.note-item i {
    font-size: 24px;
    color: #2196f3;
    margin-bottom: 12px;
}

.note-item h5 {
    color: #1976d2;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.note-item p {
    color: #1565c0;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.refund-history-table {
    margin-top: 32px;
}

.refund-history-table h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.table-description {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
}

.refund-table-container {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.refund-table-container::-webkit-scrollbar {
    height: 12px;
}

.refund-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.refund-table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 6px;
}

.refund-table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 상태 배지 스타일 */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-high {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.status-medium {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffcc02;
}

.status-low {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* IP 정보 스타일 */
.ip-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ip-info strong {
    color: #2c3e50;
    font-size: 14px;
}

.ip-info small {
    color: #6c757d;
    font-size: 12px;
}

/* 환불 상세정보 팝업 스타일 */
.refund-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.refund-detail-popup {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.refund-detail-popup h4 {
    color: #2c3e50;
    margin: 0 0 24px 0;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.detail-content {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.detail-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-actions .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    min-width: 120px;
}

/* 날짜 범위 선택기 */
.date-range-picker {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.quick-date-options {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.quick-date-btn {
    padding: 8px 16px;
    border: 1px solid #ced4da;
    background: white;
    color: #495057;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.quick-date-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.quick-date-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.date-inputs {
    display: flex;
    gap: 16px;
    align-items: center;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-input-group label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.date-input-group input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

/* 검색 컨트롤 */
.search-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.search-count {
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.search-btn {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #0056b3;
}

/* 탭 헤더 */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.date-range-display {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.tab-actions {
    display: flex;
    gap: 12px;
}

.download-btn {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: #218838;
}