/* ============================================
   SCREENS CSS - Matching Original Game Style
   ============================================ */

/* Base Screen Styles */
.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    z-index: 10;
    overflow: hidden;
}

.screen.active {
    display: flex;
}

/* Screen Header */
.screen-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    position: relative;
}

.screen-title {
    flex: 1;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Back Button */
.btn-back {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: absolute;
    left: 30px;
    z-index: 10;
}

.btn-back:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-back span {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

/* Screen Content */
.screen-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    overflow-y: auto;
}

.screen-content.centered {
    flex-direction: column;
    text-align: center;
}

/* ============================================
   SCREEN 1: INTRODUCTION
   ============================================ */

.game-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.intro-description {
    max-width: 700px;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Primary Button */
.btn-primary {
    padding: 18px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: inherit;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-primary.btn-large {
    padding: 22px 80px;
    font-size: 1.5rem;
}

/* Gold Button */
.btn-gold {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    border: none;
    border-radius: 25px;
    color: #1a237e;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-gold:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Accept Button */
.btn-accept {
    padding: 18px 80px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: inherit;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ============================================
   SCREEN 2: SIMULATION SELECTION
   ============================================ */

.card-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.simulation-card {
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.simulation-card.available {
    cursor: pointer;
}

.simulation-card.available:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.simulation-card.disabled {
    opacity: 0.5;
    filter: grayscale(50%);
}

.sim-card-content {
    flex: 1;
    margin-bottom: 30px;
}

.sim-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.simulation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.simulation-card p {
    font-size: 1rem;
    color: #37474f;
    line-height: 1.6;
}

/* ============================================
   SCREEN 3: INTRODUCE YOURSELF
   ============================================ */

.intro-form {
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-width: 450px;
}

.intro-form.with-avatar {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    min-width: 700px;
}

.avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-display {
    width: 180px;
    height: 200px;
    background: linear-gradient(180deg, #64B5F6 0%, #42A5F5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.avatar-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 5rem;
}

.avatar-label {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a237e;
}

.form-fields {
    flex: 1;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus {
    border-color: #3949ab;
}

.gender-toggle {
    display: flex;
    gap: 15px;
}

.gender-btn {
    flex: 1;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    background: #e0e0e0;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    color: #616161;
    cursor: pointer;
    transition: all 0.3s;
}

.gender-btn.active {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
    border-color: #1E88E5;
    color: white;
}

/* Skin Tone Selector */
.skin-tone-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.skin-swatch {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.skin-swatch:hover {
    transform: scale(1.1);
}

.skin-swatch.selected {
    border-color: #1E88E5;
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.5);
}

/* Hair Color Selector */
.hair-color-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hair-swatch {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hair-swatch:hover {
    transform: scale(1.1);
}

.hair-swatch.selected {
    border-color: #1E88E5;
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.5);
}

/* Outfit Selector */
.outfit-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.outfit-btn {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: #e0e0e0;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    color: #616161;
    cursor: pointer;
    transition: all 0.3s;
}

.outfit-btn:hover {
    background: #d0d0d0;
}

.outfit-btn.selected {
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
    border-color: #43A047;
    color: white;
}

.hidden {
    display: none !important;
}

/* ============================================
   SCREEN 4: GRADUATION
   ============================================ */

.graduation-content {
    max-width: 700px;
}

.graduation-icon {
    font-size: 6rem;
    margin-bottom: 30px;
}

.graduation-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.graduation-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ============================================
   SCREEN 5: TRADE SELECTION
   ============================================ */

.trade-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trade-card {
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trade-card.available {
    cursor: pointer;
}

.trade-card.available:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.trade-card.disabled {
    opacity: 0.5;
    filter: grayscale(50%);
    cursor: not-allowed;
}

.trade-avatar {
    width: 180px;
    height: 200px;
    margin: 0 auto 20px;
    background: linear-gradient(180deg, #64B5F6 0%, #42A5F5 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-avatar::after {
    font-size: 5rem;
}

.trade-avatar.medical::after { content: '🩺'; }
.trade-avatar.technology::after { content: '💻'; }
.trade-avatar.construction::after { content: '👷'; }
.trade-avatar.education::after { content: '📚'; }

.trade-card .btn-gold {
    margin-bottom: 20px;
}

.trade-card p {
    font-size: 0.95rem;
    color: #37474f;
    line-height: 1.5;
}

/* ============================================
   SCREEN 6: EDUCATION PATH
   ============================================ */

.path-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.path-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.path-header {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: 1px;
}

.path-icon {
    font-size: 5rem;
    padding: 30px 0;
}

.path-card p {
    padding: 0 25px 30px;
    font-size: 0.95rem;
    color: #37474f;
    line-height: 1.6;
}

/* ============================================
   SCREEN 7: DEGREE SELECTION
   ============================================ */

.degree-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.degree-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.degree-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.degree-header {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: 1px;
}

.degree-years {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    padding: 30px 0 20px;
}

.degree-card p {
    padding: 0 25px 30px;
    font-size: 0.95rem;
    color: #37474f;
    line-height: 1.6;
}

/* ============================================
   SCREEN 8: JOB SELECTION
   ============================================ */

#screen-jobs .screen-content {
    overflow-y: auto;
    padding-bottom: 40px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    width: 280px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.job-card-header {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
}

.job-card p {
    padding: 20px;
    font-size: 0.9rem;
    color: #37474f;
    line-height: 1.5;
    min-height: 120px;
}


/* Job Modal */
#job-modal .modal-content.job-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 1400px !important;
    width: 98% !important;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.job-detail-left {
    flex: 1;
    display: flex;
    gap: 20px;
    min-width: 300px;
}

.job-avatar {
    width: 150px;
    height: 180px;
    background: linear-gradient(180deg, #64B5F6 0%, #42A5F5 100%);
    border-radius: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.job-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.job-info p {
    font-size: 0.95rem;
    color: #37474f;
    line-height: 1.5;
    margin-bottom: 15px;
}

.job-schooling {
    font-size: 0.9rem;
    color: #616161;
    font-style: italic;
}

.job-detail-right {
    min-width: 280px;
}

.salary-table {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    border-radius: 15px;
    padding: 20px;
}

.salary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.salary-row:last-child {
    border-bottom: none;
}

.salary-row span:first-child {
    font-weight: 500;
}

.salary-row span:last-child {
    font-weight: 700;
}

/* ============================================
   SCREEN 9: PRIORITIES
   ============================================ */

.priority-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.priority-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.priority-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.priority-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.priority-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.priority-card p {
    font-size: 0.9rem;
    color: #37474f;
    line-height: 1.5;
}

/* ============================================
   SCREEN 10: GOALS
   ============================================ */

.goals-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    width: 100%;
}

.goal-card {
    background: white;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    text-align: left;
}

.goal-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.goal-content {
    flex: 1;
}

.goal-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.goal-content p {
    font-size: 0.9rem;
    color: #616161;
    margin-bottom: 5px;
}

.goal-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #43A047;
}

/* ============================================
   SCREEN 11: EXPENSES
   ============================================ */

.expenses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(180deg, #1a237e 0%, #283593 100%);
}

.btn-start-sim {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.btn-start-sim:hover {
    transform: scale(1.05);
}

.expenses-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.savings-display {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
}

.expenses-content {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
    background: linear-gradient(180deg, #283593 0%, #3949ab 100%);
}

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

.expense-category {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.category-header {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
}

.expense-options {
    padding: 15px;
    max-height: 250px;
    overflow-y: auto;
}

.expense-option {
    display: flex;
    align-items: flex-start;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 5px;
}

.expense-option:hover:not(.disabled) {
    background: #f5f5f5;
}

.expense-option.selected {
    background: #e8f5e9;
}

.expense-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.expense-option.disabled::after {
    content: "Can't afford";
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.7rem;
    color: #E53935;
    font-weight: 600;
    background: #ffebee;
    padding: 2px 8px;
    border-radius: 10px;
}

.expense-option input {
    margin-right: 12px;
    margin-top: 5px;
    transform: scale(1.2);
}

.option-content {
    flex: 1;
}

.option-name {
    display: block;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 3px;
}

.option-cost {
    display: block;
    font-size: 0.85rem;
    color: #616161;
}

.cost-green {
    color: #43A047;
    font-weight: 600;
}

.cost-red {
    color: #E53935;
    font-weight: 600;
}

.category-total {
    padding: 15px 20px;
    background: #f5f5f5;
    font-weight: 600;
    color: #1a237e;
    border-top: 1px solid #e0e0e0;
}

.total-cost {
    color: #E53935;
}

.expenses-footer {
    background: linear-gradient(180deg, #1a237e 0%, #0d1442 100%);
    padding: 20px 30px;
}

.expenses-summary {
    text-align: center;
}

.summary-row {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-row span:first-child {
    color: white;
    margin-right: 15px;
}

.summary-amount {
    color: #E53935;
}

.summary-amount.red {
    color: #E53935;
}

/* ============================================
   MODAL STYLES
   ============================================ */

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

.modal.active {
    display: flex;
}

.modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

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

/* ============================================
   LOCATION CHOICE MODAL
   ============================================ */

.location-choice-modal-content {
    background: linear-gradient(180deg, #1a237e 0%, #283593 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.2);
}

.location-choice-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.location-choice-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.location-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.location-btn-house {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.location-btn-house:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
}

.location-btn-grocery {
    background: linear-gradient(135deg, #9E9E9E 0%, #757575 100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
}

.location-btn-grocery.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.location-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.coming-soon-tag {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9800;
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.location-cancel {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.8);
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.location-cancel:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* ============================================
   TUTORIAL MODAL
   ============================================ */

.tutorial-modal-content {
    background: linear-gradient(180deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    max-width: 900px;
    width: 95%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.2);
}

.tutorial-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tutorial-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.tutorial-section {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tutorial-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tutorial-section h3 {
    color: #64B5F6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tutorial-section p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.tutorial-section strong {
    color: #FFD54F;
}

.tutorial-start-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
}

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

@media (max-width: 1200px) {
    .trade-cards,
    .path-cards,
    .degree-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .screen-title {
        font-size: 1.5rem;
    }

    .game-title-large {
        font-size: 2.5rem;
    }

    .simulation-card,
    .trade-card,
    .path-card,
    .degree-card,
    .priority-card {
        width: 100%;
        max-width: 350px;
    }

    .card-row,
    .trade-cards,
    .path-cards,
    .degree-cards,
    .priority-cards {
        flex-direction: column;
        align-items: center;
    }

    .intro-form {
        min-width: auto;
        width: 90%;
        padding: 30px;
    }

    .job-modal-content {
        flex-direction: column;
    }

    .job-detail-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
