* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'HGGGothicssi';
    src: url('fonts/HGGGOTHICSSI-40G.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HGGGothicssi';
    src: url('fonts/HGGGOTHICSSI-80G.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #EFEFEF;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}


.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}


.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.category-info {
    opacity: 0.7;
}

.progress-bar {
    background-color: #e9ecef;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #DAE000;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.quiz-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    max-height: 100vh;
}

.quiz-content {
    flex: 1;
    padding: 0 12px;
    padding-bottom: 65px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.quiz-header-fixed {
    position: relative;
    background: white;
    border-radius: 12px 12px 0 0;
    padding: 8px 12px 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 10;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.question-header {
    margin-top: 2px;
    margin-bottom: 5px;
}

.question-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
}

.question-hint {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
}

.option-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    gap: 4px;
}

.option-item {
    background: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
    margin-bottom: 3px;
    min-height: 38px;
}

.option-item:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(218,224,0,0.5);
    transform: translateX(3px);
}

.option-item.selected {
    background: #DAE000;
    border-color: #DAE000;
    color: #1a1a1a;
}

.option-text {
    font-family: 'Pretendard', sans-serif;
    flex: 1;
    line-height: 1.3;
    font-size: 0.82rem;
    padding-right: 8px;
}

.option-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #666;
    margin-left: 20px;
    position: relative;
    flex-shrink: 0;
}

.option-item.selected .option-checkbox {
    border-color: #DAE000;
    background: #DAE000;
}

.option-item.selected .option-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: bold;
}

.navigation {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    gap: 10px;
    background: white;
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .navigation {
        bottom: 10px;
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .quiz-content {
        padding-bottom: 100px;
    }
    
    .quiz-header-fixed {
        padding: 15px 20px 12px;
    }
    
    .option-item {
        padding: 12px 15px;
        margin-bottom: 8px;
    }
    
    .option-text {
        font-size: 0.95rem;
    }
    
    .question-text {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .option-list {
        margin-bottom: 10px;
    }
}

.nav-btn {
    font-family: 'Pretendard', sans-serif;
    flex: 1;
    padding: 12px;
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.nav-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #1a1a1a;
}

.nav-btn.primary {
    background-color: #DAE000;
    color: #1a1a1a;
    border-color: #DAE000;
    font-weight: 700;
}

.nav-btn.primary:hover:not(:disabled) {
    background-color: #DAE000;
    border-color: #DAE000;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.start-screen, .result-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 10px 0;
}

.start-content {
    max-width: 500px;
    margin: 0 auto;
}

.start-title {
    font-family: 'HGGGothicssi', 'Pretendard', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.start-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
    font-weight: 500;
}

.start-description {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.start-btn, .cta-btn {
    width: 100%;
    padding: 18px;
    background: #DAE000;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(218, 224, 0, 0.2);
}

.start-btn:hover, .cta-btn:hover {
    background-color: #c5cc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 224, 0, 0.3);
}

.bootcamp-cta {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 20px 30px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse 2s infinite;
    margin: 0 auto;
    max-width: 300px;
}

.bootcamp-cta:hover {
    background: #000 !important;
}

.bootcamp-cta::after {
    content: '→';
    font-size: 1.2rem;
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(218, 224, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(218, 224, 0, 0.4);
    }
    100% {
        box-shadow: 0 4px 12px rgba(218, 224, 0, 0.2);
    }
}

.competency-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.competency-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #DAE000;
}

.competency-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.competency-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.result-header {
    margin-bottom: 30px;
}

.result-date {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.result-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.total-score {
    font-size: 2rem;
    font-weight: 600;
}

.score-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.score-card {
    background: #EFEFEF;
    border-radius: 10px;
    padding: 15px 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    box-shadow: none;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.score-card h3 {
    font-size: 0.75rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    word-break: keep-all;
    line-height: 1.2;
}

.score-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.score-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: background-color 0.3s ease;
}

.score-card.lowest-score {
    border-color: #ff4444;
    border-width: 2px;
}

.score-card.lowest-score .score-value {
    color: #ff4444;
    font-weight: 800;
}

.result-details {
    text-align: left;
    margin: 30px 0;
}

.detail-section {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.detail-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.detail-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.strength-item {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

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

.interpretation-section {
    margin-top: 40px;
    text-align: center;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
}

.interpretation-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.interpretation-description {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.interpretation-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.interpretation-btn {
    width: 100%;
    padding: 16px;
    background: white;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.interpretation-btn:hover {
    background: #f8f9fa;
    border-color: #DAE000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 224, 0, 0.2);
}

.bootcamp-section {
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(135deg, #DAE000 0%, #c5cc00 100%);
    color: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(218, 224, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bootcamp-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.bootcamp-description {
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.cta-section {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.cta-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-description {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.share-section {
    margin-top: 30px;
    text-align: center;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
}

.share-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-btn {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.share-btn:hover {
    background: #333;
    border-color: #DAE000;
}

.mate-character-intro {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.mate-character-result {
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bootcamp-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.share-link-section {
    margin-top: 30px;
    text-align: center;
    padding: 20px 0;
}

.personality-feedback {
    margin: 20px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.category-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

.overview-message {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.feedback-message {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 15px;
}

.feedback-message.strong-message {
    color: #008000;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.feedback-message.weak-message {
    color: #c41e3a;
    font-weight: 500;
}

.email-notice {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.5;
}

.result-info-section {
    padding: 20px;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.result-info-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.share-link-btn {
    padding: 16px 30px;
    background: #DAE000;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.share-link-btn:hover {
    background: #c5cc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 224, 0, 0.3);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'HGGGothicssi', 'Pretendard', sans-serif;
}

.modal-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Pretendard', sans-serif;
    transition: all 0.2s ease;
    background: white;
    color: #1a1a1a;
}

.info-input:focus {
    outline: none;
    border-color: #DAE000;
    box-shadow: 0 0 0 3px rgba(218, 224, 0, 0.1);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-cancel-btn {
    flex: 1;
    padding: 15px;
    background: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.modal-cancel-btn:hover {
    background: #e0e0e0;
}

.modal-submit-btn {
    flex: 2;
    padding: 15px;
    background: #DAE000;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.modal-submit-btn:hover {
    background: #c5cc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 224, 0, 0.3);
}

.competency-highlight {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.competency-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
}

.competency-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.competency-card-start {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 18px 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.competency-card-start:hover {
    border-color: #DAE000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 224, 0, 0.2);
}

.competency-icon {
    display: none;
}

.competency-card-start h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.competency-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DAE000;
    margin: 5px 0;
}

.competency-desc {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

.competency-subdesc {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.scroll-indicator {
    display: none;
    justify-content: center;
    gap: 6px;
    margin: 15px 0 10px;
}

.scroll-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s;
}

.scroll-indicator .dot.active {
    background: #DAE000;
    width: 20px;
    border-radius: 4px;
}

.candidate-dropdown-section {
    margin-top: 15px;
}

.start-dropdown {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Pretendard', sans-serif;
    background: white;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.start-dropdown:focus {
    outline: none;
    border-color: #DAE000;
    box-shadow: 0 0 0 3px rgba(218, 224, 0, 0.1);
}

.start-dropdown:hover {
    border-color: #DAE000;
}

.privacy-section-compact {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.privacy-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label-compact {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
}

.checkbox-label-compact input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
    min-width: 16px;
    height: 16px;
}

.privacy-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.privacy-text a {
    color: #1a73e8;
    text-decoration: underline;
}

.privacy-notice {
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    padding-left: 24px;
    line-height: 1.4;
}

.privacy-section {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.privacy-item.required .checkbox-label span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ff4444;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.privacy-all {
    padding: 15px 0 5px;
    border-top: 2px solid #333;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #333;
}

.privacy-detail-btn {
    padding: 5px 12px;
    background: transparent;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.privacy-detail-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.privacy-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-content {
    padding: 20px 0;
    max-height: 400px;
    overflow-y: auto;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 20px 0;
}

.privacy-content pre {
    font-family: 'Pretendard', -apple-system, sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.modal-close-btn {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #333;
}

.user-info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-form-inline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.start-input {
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Pretendard', sans-serif;
    transition: all 0.2s ease;
    background: white;
    color: #1a1a1a;
}

.start-input:focus {
    outline: none;
    border-color: #DAE000;
    box-shadow: 0 0 0 3px rgba(218, 224, 0, 0.1);
}

.competency-intro-small {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
}

.competency-mini {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competency-mini strong {
    color: #1a1a1a;
    font-weight: 600;
}

.competency-mini span {
    color: #666;
    font-size: 0.8rem;
}

.mate-character-intro {
    width: 80px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.copyright-section {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.copyright-text {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.6;
}

.bootcamp-logo {
    width: 120px;
    height: auto;
    margin: 10px auto;
    display: block;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .competency-highlight {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .competency-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .competency-cards {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
        cursor: grab;
        user-select: none;
    }
    
    .competency-cards:active {
        cursor: grabbing;
    }
    
    .competency-cards::-webkit-scrollbar {
        height: 4px;
    }
    
    .competency-cards::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .competency-cards::-webkit-scrollbar-thumb {
        background: #DAE000;
        border-radius: 10px;
    }
    
    .competency-card-start {
        padding: 12px;
        min-width: 85%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .competency-icon {
        display: none;
    }
    
    .competency-count {
        font-size: 1rem;
    }
    
    .competency-subdesc {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        display: flex;
    }
    
    .candidate-dropdown-section {
        margin-top: 10px;
    }
    
    .start-dropdown {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .score-cards {
        flex-direction: row;
        gap: 5px;
    }
    
    .score-card {
        padding: 12px 8px;
    }
    
    .score-card h3 {
        font-size: 0.85rem;
    }
    
    .score-value {
        font-size: 1.1rem;
    }
    .container {
        padding: 10px;
    }
    
    .score-cards {
        flex-direction: column;
    }
    
    .start-screen {
        padding: 15px;
    }
    
    .start-title {
        font-size: 1.5rem;
    }
}