/* 生涯规划页面样式 */

.career-content {
    animation: fadeIn 0.6s ease;
}

/* 返回按钮 */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--btn-bg);
    border: 2px solid var(--btn-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.3s ease, 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 15px var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-glow);
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn:hover::before {
    width: 300px;
    height: 300px;
}

.back-btn:hover {
    background: var(--btn-bg-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 25px var(--shadow-accent);
    border-color: var(--border-hover);
}

/* 页面标题 */
.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px var(--shadow-color), 0 0 40px var(--shadow-accent);
    animation: fadeInDown 0.6s ease;
    letter-spacing: 1px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.career-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

.career-subtitle {
    text-align: center;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
    font-weight: 500;
    padding: 15px 30px;
    background: var(--card-bg);
    border: 1px solid var(--btn-border);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: block;
    box-shadow: 0 4px 15px var(--shadow-accent);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px var(--shadow-color);
}

/* 时间线容器 */
.timeline {
    position: relative;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* 时间线中央线条 */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--accent-primary),var(--accent-secondary),var(--accent-primary)
    );
    box-shadow: 0 0 20px var(--shadow-accent);
    animation: lineGlow 3s ease-in-out infinite;
    transform: translateX(-50%);
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--shadow-accent);
    }
    50% {
        box-shadow: 0 0 30px var(--shadow-accent);
    }
}

/* 时间线项目 */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease backwards;
    width: 100%;
    box-sizing: border-box;
}

.timeline-item:nth-child(1) { animation-delay: 0.3s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }

/* 时间线标记点 */
.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: 4px solid var(--glass-border);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px var(--shadow-accent), 0 0 40px var(--shadow-accent);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--shadow-accent), 0 0 40px var(--shadow-accent);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 30px var(--shadow-accent), 0 0 60px var(--shadow-accent);
        transform: translateX(-50%) scale(1.1);
    }
}

/* 时间线内容 */
.timeline-content {
    position: relative;
    width: calc(50% - 60px);
    min-width: 280px;
    max-width: 650px;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
    transform: none;
}

/* 滚动到视图时的展开动画 */
.timeline-content.visible {
    opacity: 1;
    transform: none;
}

/* 左右交替布局 */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 60px;
}

.timeline-content:hover {
    transform: none;
}

/* 时间线头部 */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.1));
    border: 2px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px var(--shadow-accent);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    overflow: hidden;
}

.timeline-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    transition: left 0.4s ease;
}

.timeline-header:hover::before {
    left: 100%;
}

/* 大卡片展开动画 */
.timeline-header.visible {
    opacity: 1;
    transform: scale(1);
}

/* 大卡片收回动画 */
.timeline-header:not(.visible) {
    opacity: 0;
    transform: scale(0.9);
}

/* 左侧大卡片从右侧滑入 */
.timeline-item:nth-child(odd) .timeline-header:not(.visible) {
    transform: translateX(50px) scale(0.85);
}

/* 右侧大卡片从左侧滑入 */
.timeline-item:nth-child(even) .timeline-header:not(.visible) {
    transform: translateX(-50px) scale(0.85);
}

.timeline-header:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px var(--shadow-accent);
    border-color: var(--border-hover);
}

.timeline-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    flex-wrap: wrap;
}

.timeline-period {
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: 1px solid var(--border-hover);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 15px var(--shadow-accent);
}

/* 目标卡片网格 */
.goals-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 目标卡片 */
.goal-card {
    padding: 20px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease, 
                opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-card:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.1));
    transform: translateX(0) translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px var(--shadow-accent);
    border-color: rgba(14, 165, 233, 0.4);
}

/* 小卡片展开动画 */
.goal-card.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* 小卡片收回动画 */
.goal-card:not(.visible) {
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
}

/* 左侧时间线的小卡片从左滑入 */
.timeline-item:nth-child(odd) .goal-card:not(.visible) {
    transform: translateX(-20px) scale(0.95);
}

/* 右侧时间线的小卡片从右滑入 */
.timeline-item:nth-child(even) .goal-card:not(.visible) {
    transform: translateX(20px) scale(0.95);
}

/* 为每个小卡片添加延迟 */
.goal-card:nth-child(1) {
    transition-delay: 0.1s;
}

.goal-card:nth-child(2) {
    transition-delay: 0.2s;
}

.goal-card:nth-child(3) {
    transition-delay: 0.3s;
}

.goal-card:hover {
    background: var(--glass-bg-medium);
    transform: translateX(0) translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.goal-card-content {
    flex: 1;
}

.goal-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.goal-icon.backend {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
    color: #60a5fa;
}

.goal-icon.frontend {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.3));
    color: #f472b6;
}

.goal-icon.other {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
    color: #4ade80;
}

.goal-card h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    font-weight: 600;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.goal-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
}

.goal-card li {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    padding-left: 15px;
    position: relative;
    margin-bottom: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.goal-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
}

/* 技术栈总览 */
.tech-stack-section {
    margin-top: 80px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px var(--shadow-color);
    padding: 20px 30px;
    background: var(--glass-bg-light);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.section-title.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.section-title:not(.visible) {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-category {
    padding: 20px 25px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glass-bg-light), transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tech-category:hover::before {
    opacity: 1;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 技术卡片展开动画 */
.tech-category.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* 技术卡片收回动画 */
.tech-category:not(.visible) {
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
}

/* 为每个技术卡片添加延迟 */
.tech-category:nth-child(1) {
    transition-delay: 0s;
}

.tech-category:nth-child(2) {
    transition-delay: 0.05s;
}

.tech-category:nth-child(3) {
    transition-delay: 0.1s;
}

.tech-category:nth-child(4) {
    transition-delay: 0.15s;
}

/* 不同技术类别的颜色 */
.tech-category:nth-child(1) {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
    transition-delay: 0s;
}

.tech-category:nth-child(1):hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px var(--shadow-accent);
}

.tech-category:nth-child(2) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
    transition-delay: 0.05s;
}

.tech-category:nth-child(2):hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.tech-category:nth-child(3) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
    transition-delay: 0.1s;
}

.tech-category:nth-child(3):hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.tech-category:nth-child(4) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    border-color: rgba(245, 158, 11, 0.3);
    transition-delay: 0.15s;
}

.tech-category:nth-child(4):hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.tech-category:hover {
    transform: translateX(0) translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* 为每个类别的标题图标添加对应颜色 */
.tech-category:nth-child(1) h3 {
    color: #60a5fa;
}

.tech-category:nth-child(2) h3 {
    color: #f472b6;
}

.tech-category:nth-child(3) h3 {
    color: #4ade80;
}

.tech-category:nth-child(4) h3 {
    color: #fb923c;
}

.tech-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    min-width: 150px;
    flex-shrink: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    width: 100%;
}

.tech-tag {
    padding: 6px 14px;
    background: var(--glass-bg-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-tag:hover {
    background: var(--glass-bg-strong);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .career-content {
        width: 100%;
        padding: 30px 0;
    }
    
    .timeline-content {
        min-width: 380px;
    }
    
    .timeline-header {
        padding: 20px 22px;
    }
    
    .timeline-title {
        font-size: 24px;
    }
    
    .goal-card {
        padding: 16px 20px;
    }
    
    .back-btn {
        margin-left: 15px;
    }
    
    .page-title {
        padding: 0 15px;
    }
    
    .career-subtitle {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .tech-stack-section {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .career-content {
        width: 100%;
        padding: 20px 0;
        box-sizing: border-box;
    }
    
    .back-btn {
        padding: 8px 15px;
        font-size: 14px;
        margin-bottom: 20px;
        margin-left: 10px;
    }
    
    /* 移除移动端的动画偏移 */
    .goal-card {
        transform: none !important;
    }
    
    .goal-card.visible {
        transform: none !important;
    }
    
    .goal-card:not(.visible) {
        opacity: 0;
        transform: none !important;
    }
    
    .goal-card:hover {
        transform: translateY(-3px) !important;
    }
    
    .page-title {
        font-size: 30px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .career-subtitle {
        font-size: 15px;
        padding: 10px 15px;
        margin-bottom: 35px;
        margin-left: 10px;
        margin-right: 10px;
        line-height: 1.5;
        border-radius: 20px;
    }
    
    .timeline {
        padding: 20px 10px;
        box-sizing: border-box;
    }
    
    .timeline::before {
        left: 18px;
    }
    
    .timeline-marker {
        left: 18px;
        width: 16px;
        height: 16px;
        transform: translateX(0);
    }
    
    .timeline-item {
        margin-bottom: 45px;
        padding: 0;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    
    .timeline-content {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0 0 46px !important;
        box-sizing: border-box;
        display: block;
    }
    
    /* 统一所有时间线项左对齐 */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0 0 46px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content:not(.visible) {
        transform: none !important;
        opacity: 1;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:not(.visible) {
        transform: none !important;
        opacity: 1;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        text-align: left;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .timeline-title {
        font-size: 20px;
        width: 100%;
    }
    
    .timeline-period {
        font-size: 13px;
    }
    
    .goals-grid {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .goal-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        transform: none !important;
    }
    
    .goal-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .goal-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .goal-card li {
        font-size: 12.5px;
        line-height: 1.5;
    }
    
    .goal-card ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .tech-stack-section {
        margin-top: 60px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 26px;
        padding: 15px 20px;
        margin-bottom: 30px;
    }
    
    .tech-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .tech-category h3 {
        min-width: unset;
        font-size: 16px;
    }
    
    .tech-tags {
        gap: 6px;
    }
    
    .tech-tag {
        padding: 5px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .career-content {
        width: 100%;
        padding: 15px 0;
        box-sizing: border-box;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 12px;
        padding: 0 8px;
    }
    
    .career-subtitle {
        font-size: 13px;
        padding: 8px 12px;
        margin-bottom: 25px;
        margin-left: 8px;
        margin-right: 8px;
        line-height: 1.4;
    }
    
    .timeline {
        padding: 5px 8px;
        box-sizing: border-box;
    }
    
    .timeline::before {
        left: 13px;
        width: 2px;
    }
    
    .timeline-marker {
        left: 13px;
        top: 18px;
        width: 12px;
        height: 12px;
        border-width: 2px;
        transform: translateX(0);
    }
    
    .timeline-item {
        margin-bottom: 35px;
        padding: 0;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    
    .timeline-content {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0 0 36px !important;
        box-sizing: border-box;
        display: block;
    }
    
    /* 确保所有时间线项都左对齐 */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0 0 36px !important;
    }
    
    .timeline-header {
        padding: 8px;
        gap: 6px;
        border-radius: 10px;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .goals-grid {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .timeline-title {
        font-size: 16px;
        gap: 6px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .timeline-title .iconify {
        width: 22px !important;
        height: 22px !important;
    }
    
    .timeline-period {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .goal-card {
        padding: 8px;
        gap: 6px;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        transform: none !important;
    }
    
    .goal-icon {
        width: 36px;
        height: 36px;
    }
    
    .goal-icon .iconify {
        width: 20px !important;
        height: 20px !important;
    }
    
    .goal-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .goal-card li {
        font-size: 11.5px;
        line-height: 1.5;
        padding-left: 12px;
    }
    
    .tech-stack-section {
        margin-top: 40px;
        margin-bottom: 25px;
        padding: 0 8px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 10px 12px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .tech-category {
        padding: 8px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .tech-category h3 {
        font-size: 14px;
        gap: 6px;
    }
    
    .tech-category h3 .iconify {
        width: 20px !important;
        height: 20px !important;
    }
    
    .tech-tags {
        gap: 5px;
    }
    
    .tech-tag {
        padding: 4px 8px;
        font-size: 10.5px;
    }
}

@media (max-width: 360px) {
    .career-content {
        width: 100%;
        padding: 12px 2px;
        box-sizing: border-box;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .career-subtitle {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .timeline-title {
        font-size: 15px;
    }
    
    .goal-card h3 {
        font-size: 13px;
    }
    
    .goal-card li {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .tech-category h3 {
        font-size: 13px;
    }
    
    .tech-tag {
        padding: 3px 7px;
        font-size: 10px;
    }
}
