@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #014c76 0%, #00b1df 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 55vw;
    margin: 0 auto;
    padding: 1vh;
}

.header {
    text-align: center;
    margin-bottom: 5vh;
    color: white;
}

.header h1 {
    font-size: 2vw;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.header p {
    font-size: 0.9vw;
    opacity: 0.9;
    max-width: 35vw;
    margin: 0 auto;
    text-shadow: 0 0.3vh 0.8vh rgba(0,0,0,0.3);
    line-height: 1.6;
}

.headerTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vh;
}

.headerLogo {
    width: 3vw;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
}

.tagline {
    background: rgba(255, 255, 255, 0.3);
    padding: 1vh 1vw;
    border-radius: 1vw;
    margin: 2vh auto;
    max-width: 22vw;
    text-shadow: 0 0.3vh 0.8vh rgba(0,0,0,0.3);
    font-style: italic;
    font-size: 0.9vw;
    font-weight: 500;
}

.page {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.page.active {
    display: block;
}

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

.intro-page {
    text-align: center;
    background: white;
    padding: 3vh 2vw;
    border-radius: 1vw;
    box-shadow: 0 1vh 1vh rgba(0,0,0,0.1);
    margin: 1vh 0;
}

.intro-page h2 {
    font-size: 2vw;
    background: linear-gradient(100deg, #014c76, #00b1df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1vh;
}

.intro-page p {
    font-size: 0.9vw;
    line-height: 1.8;
    margin-bottom: 1vh;
    color: #555;
}

.vision-highlight {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    padding: 1vh;
    border-radius: 1.5vw;
    margin: 3vh 0;
    border-left: 0.3vw solid #014c76;
}

.vision-highlight h2 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
    color: #00b1df;
}

.vision-highlight h3 {
    margin: 0;
    font-size: 1.2vw;
    font-weight: 600; 
    color: #007e9e;
}

.vision-highlight p {
    margin: 1vh 0 0 0; 
    font-size: 0.8vw;
}

.cta-button {
    background: linear-gradient(135deg, #014c76 0%, #00b1df 100%);
    color: white;
    padding: 2vh 2vw;
    border: none;
    border-radius: 2vw;
    font-size: 1vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 1vw 1vh; 
}

.cta-button:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 1vh 2vw rgba(102, 126, 234, 0.4);
}

.explore-container {
    background: white;
    padding: 2vh 2vw;
    border-radius: 2vw;
    box-shadow: 0 2vh 2vh rgba(0,0,0,0.1);
    margin: 2vh 0;
}

.quiz-container {
    background: white;
    padding: 2vh 2vw;
    border-radius: 2vw;
    box-shadow: 0 2vh 2vh rgba(0,0,0,0.1);
    margin: 2vh 0;
}

.quiz-container h2{
    text-align: center;
    color: #4C51BF;
    margin-bottom: 30px;
}

.quiz-container p{
    text-align: center;
    margin-bottom: 30px;
    font-size: 1vw;
}

.quiz-page-footer {
    text-align: center;
    margin-top: 40px;
}

.bibiu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80vw, 1fr));
    gap: 1vw;
    margin: 2vh 0;
}

.section-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1vh 1vw;
}

.section-navbar h2 {
    margin: 0;
    color: #014c76;
    text-align: center;
    font-size: 1.3vw;
    flex: 0 1 auto;
}

.cta-button-back {
    position: absolute;
    left: 1vw;
    background: linear-gradient(135deg, #014c76 0%, #00b1df 100%);
    color: white;
    border: none;
    border-radius: 1vw;
    font-size: 0.7vw;
    padding: 1vh 0.5vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.1vw 0.1vh; 
}

.cta-button-back:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 1vh 2vw rgba(102, 126, 234, 0.4);
}

.section-header {
    text-align: center;
    color: #014c76;
    margin: 4vh 0 3vh 0;
}

.section-header h3 {
    font-size: 2vw;
    margin-bottom: 1vh;
}

.category-explanation {
    background: rgba(224, 242, 254, 0.3);
    padding: 2vh 1vw;
    border-radius: 1vw;
    margin-bottom: 3vh;
    border-left: 0.5vh solid #0277bd;
}

.category-explanation h4 {
    color: #0277bd;
    font-size: 1vw;
    margin-bottom: 1vh;
}

.category-explanation p {
    color: #555;
    margin: 0;
    font-size: 0.8vw;
    line-height: 1.6;
}

.bibiu-card {
    background: white;
    padding: 3vh 1vw;
    border-radius: 1vw;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1vh 1.3vh rgba(0,0,0,0.1);
    border: 0.3vh solid transparent;
    position: relative;
    overflow: hidden;
}

.bibiu-card.biro-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.5vh;
    background: linear-gradient(90deg, #4d1366, #7b1fa2);
    transition: left 0.3s ease;
}

.bibiu-card.unit-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.5vh;
    background: linear-gradient(90deg, #014972, #0277bd);
    transition: left 0.3s ease;
}

.bibiu-card.bidang-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.5vh;
    background: linear-gradient(90deg, #135016, #2e7d32);
    transition: left 0.3s ease;
}

.bibiu-card:hover::before {
    left: 0;
}

.bibiu-card.biro-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 2vh 3vh rgba(0,0,0,0.15);
    border-color: #7b1fa2;
}

.bibiu-card.unit-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 2vh 3vh rgba(0,0,0,0.15);
    border-color: #0277bd;
}

.bibiu-card.bidang-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 2vh 3vh rgba(0,0,0,0.15);
    border-color: #2e7d32;
}

.bibiu-card h3 {
    font-size: 1.2vw;
    color: #4C51BF;
    margin-bottom: 1vh;
}

.bibiu-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.8vw;
    margin-bottom: 1vh;
}

.proker-preview {
    background: #f8f9ff;
    padding: 2vh 1vw;
    border-radius: 1vw;
    font-size: 0.7vw;
    color: #4C51BF;
    font-weight: 500;
    margin-bottom: 1vh;
}

.personality-match.biro-style {
    background: linear-gradient(135deg, #4d1366, #7b1fa2);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.personality-match.unit-style {
    background: linear-gradient(135deg, #014972, #0277bd);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.personality-match.bidang-style {
    background: linear-gradient(135deg, #135016, #2e7d32);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.unit-badge { background: #e0f2fe; color: #0277bd; }
.biro-badge { background: #f3e5f5; color: #7b1fa2; }
.bidang-badge { background: #e8f5e8; color: #2e7d32; }

.question {
    margin-bottom: 30px;
    display: none;
}

.question.active {
    display: block;
}

.question h3 {
    font-size: 1.4rem;
    color: #4C51BF;
    margin-bottom: 20px;
    text-align: center;
}

.answer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.answer-option {
    padding: 25px 20px;
    background: #f8f9ff;
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.answer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #014c76, #00b1df);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.answer-option span {
    position: relative;
    z-index: 2;
    display: block;
    font-weight: 600;
}

.answer-option:hover::before, .answer-option.selected::before {
    opacity: 1;
}

.answer-option:hover span, .answer-option.selected span {
    color: white;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #014c76 0%, #00b1df 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.result-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 40px 0;
    text-align: center;
}

.result-container h2 {
    font-size: 2.5rem;
    color: #4C51BF;
    margin-bottom: 20px;
}

.result-container .bibiu-name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #014c76, #00b1df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.back-button {
    background: #6b7280;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin: 20px 10px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.link-section {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.link-section a {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-section a:hover {
    background: #059669;
    transform: translateY(-2px);
}

.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 4vh 2vw;
    border-radius: 1vw;
    max-width: 40vw;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1vh;
    right: 1vw;
    font-size: 2vw;
    cursor: pointer;
    color: #666;
}

.modal-title {
    margin-bottom: 2vh;
    font-size: 1.5vw;
}

.modal-description {
    font-size: 1vw;
    margin-bottom: 2vh;
    color: #666;
    font-style: italic;
}

.overview-section {
    padding: 2vh 1vw;
    border-radius: 1vw;
    margin-bottom: 2vh;
    border-left: 0.5vh solid;
}

.section-title {
    color: #667eea;
    margin-bottom: 1vh;
    font-size: 1vw;
}

.section-content {
    line-height: 1.6;
    color: #555;
    font-size: 0.8vw;
}

.division-list {
    margin-bottom: 2vh;
    padding-left: 1.8vw;
    font-size: 0.8vw;
}

.division-item {
    margin-bottom: 0.5vh;
    color: #666;
}

.programs-list {
    margin-bottom: 2vh;
    padding-left: 1.8vw;
    font-size: 0.8vw;
}

.program-item {
    margin-bottom: 0.8vh;
    color: #666;
    line-height: 1.5;
}

.info-section {
    padding: 2vh 1vw;
    border-radius: 1vw;
    margin-bottom: 2vh;
}

.why-join {
    background: #f0f9ff;
}

.career-prep {
    background: #ecfdf5;
}

.info-title {
    margin-bottom: 1vh;
    font-size: 1vw;
    color: #0369a1;
}

.career-title {
    color: #059669;
}

.info-content {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.8vw;
}

.career-content {
    font-weight: 600;
}

.results-container {
    margin: 2vh 0;
}

.result-card {
    padding: 2.5vh 2vw;
    border-radius: 1.5vw;
    margin: 2vh 0;
    border: 0.3vh solid;
}

.first-place {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border-color: #f59e0b;
}

.second-place {
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
    border-color: #9ca3af;
}

.third-place {
    background: linear-gradient(135deg, #fef2e2, #f59e0b);
    border-color: #d97706;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5vh;
}

.result-rank-info {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.medal {
    font-size: 2.5vw;
}

.rank-details {
    display: flex;
    flex-direction: column;
}

.match-label {
    font-weight: 700;
    color: #1f2937;
    font-size: 1vw;
}

.match-percentage {
    font-weight: 600;
    color: #059669;
    font-size: 1.3vw;
}

.result-content {
    margin-bottom: 1.5vh;
}

.bibiu-name {
    font-size: 1.4vw;
    color: #1f2937;
    margin-bottom: 0.8vh;
}

.bibiu-description {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.5vh;
    font-size: 0.9vw;
}

.responsibilities-tags {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
    margin-bottom: 1.5vh;
}

.responsibility-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    padding: 0.4vh 0.8vw;
    border-radius: 1vw;
    font-size: 0.8vw;
    font-weight: 500;
}

.personality-info {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.2vh 1vw;
    border-radius: 0.8vw;
    margin-bottom: 1.5vh;
}

.personality-label {
    color: #1f2937;
    font-size: 0.9vw;
}

.personality-text {
    color: #4b5563;
    font-size: 0.9vw;
}

.result-actions {
    display: flex;
    gap: 1vw;
    justify-content: center;
}

.detail-button {
    background: #3b82f6;
    color: white;
    padding: 1vh 2vw;
    border: none;
    border-radius: 2vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9vw;
}

.detail-button:hover {
    background: #2563eb;
    transform: translateY(-0.2vh);
}

.explanation-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2vh 2vw;
    border-radius: 1.5vw;
    margin: 2.5vh 0;
    border-left: 0.5vw solid #0284c7;
}

.explanation-title {
    color: #0284c7;
    margin-bottom: 1vh;
    display: flex;
    align-items: center;
    gap: 0.8vw;
    font-size: 1vw;
}

.explanation-text {
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9vw;
}

.tip-section {
    text-align: center;
    margin-top: 3vh;
}

.tip-box {
    background: #fef3c7;
    padding: 1.5vh 2vw;
    border-radius: 1vw;
    margin-bottom: 2vh;
}

.tip-text {
    color: #92400e;
    font-weight: 600;
    margin: 0;
    font-size: 0.9vw;
}

.result-title {
    font-size: 2.5vw;
    margin-bottom: 1.5vh;
    color: #1f2937;
    text-align: center;
}

.result-subtitle {
    font-size: 1.2vw;
    margin-bottom: 1vh;
    color: #4b5563;
    text-align: center;
}

.result-category {
    margin-bottom: 2vh;
}

.result-description {
    font-size: 1.1vw;
    line-height: 1.6;
    margin-bottom: 3vh;
    color: #374151;
    text-align: center;
}

.result-details {
    background: #f8f9ff;
    padding: 2.5vh 2vw;
    border-radius: 1.5vw;
    margin: 2.5vh 0;
    text-align: left;
}

.result-actions {
    margin-top: 3vh;
    display: flex;
    gap: 1.5vw;
    justify-content: center;
    flex-wrap: wrap;
}

.retry-button {
    background: #ef4444;
}

.retry-button:hover {
    background: #dc2626;
}

.home-button {
    background: #4C51BF;
}

.home-button:hover {
    background: #3730a3;
}

/* =================== RESPONSIVE DESIGN =================== */

/* Large Desktop (1200px+) */
/* =================== RESPONSIVE DESIGN =================== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 50vw;
    }
    
    .bibiu-grid {
        grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
        gap: 1.5vw;
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .container {
        max-width: 85vw;
        padding: 2vh 2vw;
    }
    
    .header h1 {
        font-size: 4vw;
    }
    
    .header p {
        font-size: 2vw;
        max-width: 70vw;
    }
    
    .headerLogo {
        width: 6vw;
    }
    
    .tagline {
        font-size: 2vw;
        max-width: 50vw;
        padding: 2vh 3vw;
    }
    
    .intro-page h2 {
        font-size: 4vw;
    }
    
    .intro-page p {
        font-size: 2.2vw;
    }
    
    .vision-highlight h2 {
        font-size: 3.5vw;
    }
    
    .vision-highlight h3 {
        font-size: 2.8vw;
    }
    
    .vision-highlight p {
        font-size: 2vw;
    }
    
    .cta-button {
        font-size: 2.2vw;
        padding: 2.5vh 4vw;
    }
    
    .bibiu-grid {
        grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
        gap: 2vw;
    }
    
    .section-navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2vh 2vw;
        gap: 2vw;
    }
    
    .section-navbar h2 {
        font-size: 3vw;
        order: 0;
        flex: 1;
        text-align: center;
    }
    
    .cta-button-back {
        position: static;
        font-size: 1.8vw;
        padding: 1.5vh 2.5vw;
        border-radius: 1.5vw;
        order: 0;
        flex-shrink: 0;
    }
    
    .section-header h3 {
        font-size: 4vw;
    }
    
    .category-explanation h4 {
        font-size: 2.5vw;
    }
    
    .category-explanation p {
        font-size: 2vw;
    }
    
    .bibiu-card h3 {
        font-size: 2.5vw;
    }
    
    .bibiu-card p {
        font-size: 2vw;
    }
    
    .proker-preview {
        font-size: 1.8vw;
    }
    
    .quiz-container p {
        font-size: 2.2vw;
    }
    
    .question h3 {
        font-size: 3.5vw;
    }
    
    .answer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .answer-option {
        padding: 20px 15px;
    }
    
    /* Modal Styles for Tablet */
    .modal-content {
        max-width: 90vw;
        padding: 3vh 3vw;
        border-radius: 2vw;
        max-height: 85vh;
    }
    
    .close-modal {
        font-size: 3.5vw;
        top: 1.5vh;
        right: 2.5vw;
    }
    
    .modal-title {
        font-size: 3.5vw;
        margin-bottom: 2vh;
    }
    
    .modal-description {
        font-size: 2.5vw;
        margin-bottom: 2vh;
    }
    
    .overview-section {
        padding: 2.5vh 2.5vw;
        border-radius: 1.5vw;
        border-left: 1vw solid;
    }
    
    .section-title {
        font-size: 2.8vw;
        margin-bottom: 1.5vh;
    }
    
    .section-content {
        font-size: 2.2vw;
    }
    
    .division-list,
    .programs-list {
        font-size: 2.2vw;
        padding-left: 5vw;
        margin-bottom: 2.5vh;
    }
    
    .info-section {
        padding: 2.5vh 2.5vw;
        border-radius: 1.5vw;
        margin-bottom: 2.5vh;
    }
    
    .info-title {
        font-size: 2.8vw;
        margin-bottom: 1.5vh;
    }
    
    .info-content {
        font-size: 2.2vw;
    }
    
    .medal {
        font-size: 5vw;
    }
    
    .match-label {
        font-size: 2.2vw;
    }
    
    .match-percentage {
        font-size: 2.8vw;
    }
    
    .bibiu-name {
        font-size: 3vw;
    }
    
    .bibiu-description {
        font-size: 2.2vw;
    }
    
    .responsibility-tag {
        font-size: 2vw;
        padding: 1vh 2vw;
    }
    
    .personality-label,
    .personality-text {
        font-size: 2.2vw;
    }
    
    .detail-button {
        font-size: 2.2vw;
        padding: 1.5vh 3vw;
    }
    
    .explanation-title {
        font-size: 2.5vw;
    }
    
    .explanation-text {
        font-size: 2.2vw;
    }
    
    .tip-text {
        font-size: 2.2vw;
    }
    
    .result-title {
        font-size: 5vw;
    }
    
    .result-subtitle {
        font-size: 2.8vw;
    }
    
    .result-description {
        font-size: 2.5vw;
    }
    
    .result-container h2 {
        font-size: 4.5vw;
    }
    
    .result-container .bibiu-name {
        font-size: 5.5vw;
    }
    
    .back-button {
        padding: 1.5vh 3vw;
        font-size: 2.2vw;
        margin: 1.5vh 1vw;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .container {
        max-width: 95vw;
        padding: 2vh 3vw;
    }
    
    .header h1 {
        font-size: 6vw;
    }
    
    .header p {
        font-size: 3.5vw;
        max-width: 90vw;
    }
    
    .headerLogo {
        width: 8vw;
    }
    
    .tagline {
        font-size: 3.2vw;
        max-width: 80vw;
        padding: 2vh 4vw;
    }
    
    .intro-page {
        padding: 4vh 4vw;
        border-radius: 2vw;
    }
    
    .intro-page h2 {
        font-size: 6vw;
        margin-bottom: 2vh;
    }
    
    .intro-page p {
        font-size: 3.5vw;
        margin-bottom: 2vh;
    }
    
    .vision-highlight {
        padding: 2vh 3vw;
        border-radius: 2vw;
        border-left: 1vw solid #014c76;
    }
    
    .vision-highlight h2 {
        font-size: 5.5vw;
    }
    
    .vision-highlight h3 {
        font-size: 4.5vw;
    }
    
    .vision-highlight p {
        font-size: 3.2vw;
    }
    
    .cta-button {
        font-size: 3.5vw;
        padding: 3vh 6vw;
        border-radius: 3vw;
        margin: 2vh 1vw;
        display: block;
        text-align: center;
    }
    
    .explore-container,
    .quiz-container {
        padding: 3vh 4vw;
        border-radius: 3vw;
    }
    
    .bibiu-grid {
        grid-template-columns: 1fr;
        gap: 3vw;
    }
    
    .section-navbar {
        flex-direction: column;
        gap: 0;
        padding: 3vh 4vw 2vh 4vw;
        align-items: flex-start;
        position: relative;
    }
    
    .section-navbar h2 {
        font-size: 5vw;
        order: 2;
        text-align: center;
        margin: 0;
        width: 100%;
        align-self: center;
        margin-top: 1vh;
    }
    
    .cta-button-back {
        position: static;
        font-size: 2.8vw;
        padding: 1.5vh 3vw;
        border-radius: 1.5vw;
        order: 1;
        align-self: flex-start;
        margin-bottom: 2vh;
        white-space: nowrap;
    }
    
    .section-header h3 {
        font-size: 6vw;
    }
    
    .category-explanation {
        padding: 3vh 4vw;
        border-radius: 2vw;
        border-left: 1.5vw solid #0277bd;
    }
    
    .category-explanation h4 {
        font-size: 4vw;
    }
    
    .category-explanation p {
        font-size: 3.2vw;
    }
    
    .bibiu-card {
        padding: 4vh 4vw;
        border-radius: 2vw;
        border: 0.5vw solid transparent;
    }
    
    .bibiu-card::before {
        height: 1vw;
    }
    
    .bibiu-card:hover {
        transform: translateY(-4px);
    }
    
    .bibiu-card h3 {
        font-size: 4.5vw;
        margin-bottom: 2vh;
    }
    
    .bibiu-card p {
        font-size: 3.2vw;
        margin-bottom: 2vh;
    }
    
    .proker-preview {
        font-size: 3vw;
        padding: 2vh 3vw;
        border-radius: 2vw;
    }
    
    .personality-match.biro-style,
    .personality-match.unit-style,
    .personality-match.bidang-style {
        padding: 1.5vh 3vw;
        border-radius: 4vw;
        font-size: 3vw;
    }
    
    .category-badge {
        padding: 1vh 2.5vw;
        border-radius: 3vw;
        font-size: 3vw;
        margin-bottom: 2vh;
    }
    
    .quiz-container h2 {
        font-size: 5vw;
        margin-bottom: 3vh;
    }
    
    .quiz-container p {
        font-size: 3.5vw;
        margin-bottom: 3vh;
    }
    
    .question h3 {
        font-size: 4.5vw;
        margin-bottom: 3vh;
    }
    
    .answer-grid {
        grid-template-columns: 1fr;
        gap: 2vh;
    }
    
    .answer-option {
        padding: 3vh 4vw;
        border-radius: 2vw;
        border: 0.5vw solid #e2e8f0;
    }
    
    .answer-option span {
        font-size: 3.2vw;
    }
    
    .progress-bar {
        height: 1.5vh;
        margin-bottom: 4vh;
    }
    
    /* Modal Styles for Mobile */
    .modal-content {
        max-width: 95vw;
        padding: 4vh 5vw;
        border-radius: 3vw;
        max-height: 90vh;
    }
    
    .close-modal {
        font-size: 6vw;
        top: 2vh;
        right: 4vw;
    }
    
    .modal-title {
        font-size: 5vw;
        margin-bottom: 3vh;
    }
    
    .modal-description {
        font-size: 3.5vw;
        margin-bottom: 3vh;
    }
    
    .overview-section {
        padding: 3vh 4vw;
        border-radius: 2vw;
        border-left: 1.5vw solid;
    }
    
    .section-title {
        font-size: 4vw;
        margin-bottom: 2vh;
    }
    
    .section-content {
        font-size: 3.2vw;
    }
    
    .division-list,
    .programs-list {
        font-size: 3.2vw;
        padding-left: 6vw;
        margin-bottom: 3vh;
    }
    
    .division-item {
        margin-bottom: 1vh;
    }
    
    .program-item {
        margin-bottom: 1.5vh;
    }
    
    .info-section {
        padding: 3vh 4vw;
        border-radius: 2vw;
        margin-bottom: 3vh;
    }
    
    .info-title {
        font-size: 4vw;
        margin-bottom: 2vh;
    }
    
    .info-content {
        font-size: 3.2vw;
    }
    
    .result-card {
        padding: 4vh 5vw;
        border-radius: 3vw;
        border: 0.8vw solid;
        margin: 3vh 0;
    }
    
    .result-rank-info {
        gap: 3vw;
    }
    
    .medal {
        font-size: 8vw;
    }
    
    .match-label {
        font-size: 3.5vw;
    }
    
    .match-percentage {
        font-size: 4.5vw;
    }
    
    .bibiu-name {
        font-size: 4.8vw;
    }
    
    .bibiu-description {
        font-size: 3.5vw;
    }
    
    .responsibilities-tags {
        gap: 2vw;
    }
    
    .responsibility-tag {
        font-size: 3vw;
        padding: 1vh 3vw;
        border-radius: 2vw;
    }
    
    .personality-info {
        padding: 2vh 3vw;
        border-radius: 2vw;
    }
    
    .personality-label,
    .personality-text {
        font-size: 3.5vw;
    }
    
    .result-actions {
        gap: 3vw;
    }
    
    .detail-button {
        font-size: 3.5vw;
        padding: 2vh 5vw;
        border-radius: 4vw;
    }
    
    .explanation-section {
        padding: 3vh 4vw;
        border-radius: 3vw;
        border-left: 1.5vw solid #0284c7;
    }
    
    .explanation-title {
        font-size: 4vw;
        gap: 2vw;
    }
    
    .explanation-text {
        font-size: 3.5vw;
    }
    
    .tip-section {
        margin-top: 4vh;
    }
    
    .tip-box {
        padding: 3vh 4vw;
        border-radius: 2vw;
    }
    
    .tip-text {
        font-size: 3.5vw;
    }
    
    .result-title {
        font-size: 7vw;
        margin-bottom: 2vh;
    }
    
    .result-subtitle {
        font-size: 4vw;
        margin-bottom: 2vh;
    }
    
    .result-category {
        margin-bottom: 3vh;
    }
    
    .result-description {
        font-size: 3.8vw;
        margin-bottom: 4vh;
    }
    
    .result-details {
        padding: 4vh 4vw;
        border-radius: 3vw;
        margin: 4vh 0;
    }
    
    .result-container {
        padding: 4vh 4vw;
        border-radius: 3vw;
        margin: 3vh 0;
    }
    
    .result-container h2 {
        font-size: 6vw;
        margin-bottom: 3vh;
    }
    
    .result-container .bibiu-name {
        font-size: 7vw;
        margin: 3vh 0;
    }
    
    .result-actions {
        margin-top: 4vh;
        flex-direction: column;
        align-items: center;
        gap: 2vh;
    }
    
    .back-button {
        padding: 2.5vh 6vw;
        font-size: 3.5vw;
        border-radius: 4vw;
        margin: 1vh 0;
        width: 80%;
    }
    
    .link-section {
        padding: 4vh 4vw;
        border-radius: 3vw;
        margin-top: 4vh;
    }
    
    .link-section a {
        padding: 2.5vh 5vw;
        border-radius: 4vw;
        margin: 2vh 1vw;
        font-size: 3.5vw;
        display: block;
        text-align: center;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .container {
        max-width: 98vw;
        padding: 1vh 2vw;
    }
    
    .header h1 {
        font-size: 7vw;
    }
    
    .header p {
        font-size: 4vw;
        max-width: 95vw;
    }
    
    .headerLogo {
        width: 10vw;
    }
    
    .tagline {
        font-size: 3.8vw;
        max-width: 90vw;
        padding: 2vh 4vw;
    }
    
    .intro-page {
        padding: 3vh 3vw;
    }
    
    .intro-page h2 {
        font-size: 7vw;
    }
    
    .intro-page p {
        font-size: 4vw;
    }
    
    .vision-highlight h2 {
        font-size: 6.5vw;
    }
    
    .vision-highlight h3 {
        font-size: 5.5vw;
    }
    
    .vision-highlight p {
        font-size: 3.8vw;
    }
    
    .cta-button {
        font-size: 4vw;
        padding: 3vh 7vw;
    }
    
    .section-navbar {
       flex-direction: row;
        gap: 15vw;
        padding: 4vh 5vw 2vh 5vw;
        align-items: center;
        position: relative;
        justify-content: space-between;
    }
    
    .section-navbar h2 {
        font-size: 4vw;
        order: 2;
        text-align: left;
        margin: 0;
        width: 60%;
        align-self: center;
    }
    
    .cta-button-back {
        font-size: 3vw;
        padding: 1.8vh 3.5vw;
        border-radius: 2vw;
        /* order: 1; */
        align-self: flex-start;
        /* margin-bottom: 2vh; */
        white-space: nowrap;
        position: relative;
    }
    
    .section-header h3 {
        font-size: 7vw;
    }
    
    .category-explanation h4 {
        font-size: 4.5vw;
    }
    
    .category-explanation p {
        font-size: 3.8vw;
    }
    
    .bibiu-card h3 {
        font-size: 5vw;
    }
    
    .bibiu-card p {
        font-size: 3.8vw;
    }
    
    .proker-preview {
        font-size: 3.5vw;
    }
    
    .quiz-container h2 {
        font-size: 6vw;
    }
    
    .quiz-container p {
        font-size: 4vw;
    }
    
    .question h3 {
        font-size: 5.5vw;
    }
    
    .answer-option span {
        font-size: 3.8vw;
    }
    
    /* Modal Styles for Small Mobile */
    .modal-content {
        max-width: 98vw;
        padding: 3vh 4vw;
        border-radius: 3vw;
        max-height: 92vh;
    }
    
    .close-modal {
        font-size: 6vw;
        top: 1vh;
        right: 3vw;
    }
    
    .modal-title {
        font-size: 5.5vw;
        margin-bottom: 2.5vh;
    }
    
    .modal-description {
        font-size: 4vw;
        margin-bottom: 2.5vh;
    }
    
    .overview-section {
        padding: 3vh 3vw;
        border-radius: 2vw;
        border-left: 1.5vw solid;
        margin-bottom: 2.5vh;
    }
    
    .section-title {
        font-size: 4.5vw;
        margin-bottom: 2vh;
    }
    
    .section-content {
        font-size: 3.8vw;
        line-height: 1.5;
    }
    
    .division-list,
    .programs-list {
        font-size: 3.8vw;
        padding-left: 7vw;
        margin-bottom: 2.5vh;
    }
    
    .division-item,
    .program-item {
        margin-bottom: 1vh;
        line-height: 1.4;
    }
    
    .info-section {
        padding: 3vh 3vw;
        border-radius: 2vw;
        margin-bottom: 2.5vh;
    }
    
    .info-title {
        font-size: 4.5vw;
        margin-bottom: 2vh;
    }
    
    .info-content {
        font-size: 3.8vw;
        line-height: 1.5;
    }
    
    .medal {
        font-size: 10vw;
    }
    
    .match-label {
        font-size: 4vw;
    }
    
    .match-percentage {
        font-size: 5vw;
    }
    
    .bibiu-name {
        font-size: 5.5vw;
    }
    
    .bibiu-description {
        font-size: 4vw;
    }
    
    .responsibility-tag {
        font-size: 3.5vw;
    }
    
    .personality-label,
    .personality-text {
        font-size: 4vw;
    }
    
    .detail-button {
        font-size: 4vw;
        padding: 2.5vh 6vw;
    }
    
    .explanation-title {
        font-size: 4.5vw;
    }
    
    .explanation-text {
        font-size: 4vw;
    }
    
    .tip-text {
        font-size: 4vw;
    }
    
    .result-title {
        font-size: 8vw;
    }
    
    .result-subtitle {
        font-size: 4.5vw;
    }
    
    .result-description {
        font-size: 4.2vw;
    }
    
    .result-container h2 {
        font-size: 7vw;
    }
    
    .result-container .bibiu-name {
        font-size: 8vw;
    }
    
    .back-button {
        font-size: 4vw;
        padding: 3vh 7vw;
        width: 90%;
    }
    
    .link-section a {
        font-size: 4vw;
        padding: 3vh 6vw;
    }
}