/* Skills/Career Section */
.skills-career-section {
    background: transparent;
}

/* Tech Stack Slider */
.tech-slider-section {
    padding: 20px 0 50px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5), transparent);
}

.tech-slider-section .section-title {
    margin-bottom: 50px;
}

.tech-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-slider {
    display: flex;
    gap: 60px;
    animation: slideLeft 30s linear infinite;
    width: max-content;
}

.tech-slider:hover {
    animation-play-state: paused;
}

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

.tech-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tech-slide:hover {
    opacity: 1;
    transform: scale(1.1);
}

.tech-slide img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tech-slide:hover img {
    filter: grayscale(0%);
}

.tech-slide span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tech-slide:hover span {
    color: #a855f7;
}

/* 반응형 슬라이더 */
@media (max-width: 768px) {
    .tech-slider {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .tech-slide img {
        width: 40px;
        height: 40px;
    }
    
    .tech-slide span {
        font-size: 0.8rem;
    }
}

.about-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    color: #a855f7;
}

.tab-btn.active {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-color: #a855f7;
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

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

.skill-category h4 {
    color: #a855f7;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.5), transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-date {
    color: #a855f7;
    font-weight: 600;
    min-width: 150px;
    padding-top: 2px;
}

.timeline-content h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
}

.timeline-company {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 14px;
}

.timeline-desc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-desc li {
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.timeline-desc li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #a855f7;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-date {
        min-width: auto;
    }
}

/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 500px;
}

/* 메인 프로필 카드 - 왼쪽 전체 (1행~2행) */
.bento-grid > .bento-large {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 40px;
}

/* 오른쪽 상단 영역 (Tech + Contact) */
.bento-right-top {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 20px;
}

/* Tech Stacks 카드 */
.bento-stack-top {
    flex: 1;
}

/* Contact 카드 */
.bento-cta {
    flex: 0 0 160px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 프로젝트 카드 - 오른쪽 하단 */
.bento-project-wide {
    grid-column: 2;
    grid-row: 2;
}

.bento-card {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

/* 카드 크기 변형 */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

/* 프로필 카드 (ML01 배경 이미지) */
.bento-profile-card {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.bento-profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.profile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bento-profile-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.bento-profile-info {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.bento-profile-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bento-role-highlight {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(168, 85, 247, 0.5);
}

.bento-intro-text {
    margin-top: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    overflow-y: auto;
    width: calc(100% + 10px);
    margin-left: -5px;
    max-width: none;
}

.bento-intro-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 14px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    word-break: keep-all;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.bento-intro-text p:last-child {
    margin-bottom: 0;
}

/* 이모지 스타일 */
.bento-emoji {
    font-size: 3rem;
    animation: float3d 3s ease-in-out infinite;
    display: inline-block;
}

.bento-emoji-large {
    font-size: 5rem;
    animation: float3d 4s ease-in-out infinite;
    display: inline-block;
}

/* 기술 아이콘 그리드 */
.tech-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tech-icon {
    font-size: 2.5rem;
    text-align: center;
    animation: float3d 3s ease-in-out infinite;
    display: inline-block;
}

.tech-icon:nth-child(2) { animation-delay: 0.5s; }
.tech-icon:nth-child(3) { animation-delay: 1s; }
.tech-icon:nth-child(4) { animation-delay: 1.5s; }

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-wide-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-wide-3 {
    grid-column: span 3;
    grid-row: span 1;
}

/* 프로젝트 카드 (배경 이미지 스타일) */
.bento-project-card {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.bento-project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bento-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.bento-project-info {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 20px 25px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.bento-project-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 프로젝트 텍스트 박스 (메인 프로필과 동일 스타일) */
.bento-project-text-box {
    margin-top: 8px;
    padding: 15px 18px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-project-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 400;
    word-break: keep-all;
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bento-github {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 프로필 카드 스타일 */
.bento-profile {
    width: 100%;
    height: 100%;
    position: relative;
}

.bento-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.bento-profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    border-radius: 0 0 24px 24px;
}

.bento-profile-overlay h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.bento-profile-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* 라벨 스타일 */
.bento-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bento-title-sm {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 코드 스타일 */
.bento-code {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 15px;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    overflow: hidden;
}

.bento-code pre {
    margin: 0;
    white-space: pre-wrap;
}

.code-comment { color: #6b7280; }
.code-keyword { color: #c084fc; }
.code-class { color: #fbbf24; }
.code-func { color: #60a5fa; }
.code-string { color: #34d399; }

/* 3D 이미지 스타일 */
.bento-tech-visual {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.bento-3d-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: float3d 3s ease-in-out infinite;
}

.bento-3d-small {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: float3d 3s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.bento-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.bento-tech-tags span {
    padding: 6px 14px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a855f7;
}

/* 하이라이트 텍스트 */
.bento-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a855f7;
    display: block;
    margin-bottom: 10px;
}

.bento-icon-3d {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

/* 창의력 카드 (프로필 카드와 동일한 스타일) */
.bento-creativity-card {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.bento-creativity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.creativity-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bento-creativity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 20%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.bento-creativity-info {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 25px 30px;
    width: 100%;
}

.bento-creativity-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bento-creativity-highlight {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(168, 85, 247, 0.5);
}

/* 프로젝트 카드 */
.bento-project-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.bento-project-img {
    width: 150px;
    height: auto;
    animation: float3d 4s ease-in-out infinite;
}

.bento-project-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-project-tags span {
    padding: 8px 12px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
}

/* CTA 버튼 */
.bento-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* 넓은 CTA 카드 */
.bento-cta-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.bento-cta-text h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}

.bento-cta-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: white;
    margin: 0;
}

.bento-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

/* 타임라인 미니 */
.bento-timeline-mini {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-mini-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 12px;
}

.timeline-mini-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.timeline-mini-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* GitHub 카드 */
.github-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.github-icon {
    width: 40px;
    height: 40px;
    fill: #a855f7;
}

.github-content h4 {
    font-size: 1.1rem;
}

.github-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.github-link {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    color: #a855f7;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.github-link:hover {
    background: rgba(168, 85, 247, 0.4);
}

/* 반응형 */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-column: 1;
        grid-row: auto;
        min-height: 400px;
    }
    
    .bento-right-top {
        grid-column: 1;
        grid-row: auto;
        flex-direction: column;
    }
    
    .bento-cta {
        flex: 0 0 auto;
    }
    
    .bento-project-wide {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .bento-right-top {
        flex-direction: column;
    }
    
    .bento-cta {
        flex: 0 0 auto;
        min-height: 180px;
    }
}

/* ===== Simple About Me Section ===== */
.about-simple {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.about-profile-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.3);
    min-height: 450px;
}

.about-profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-profile-bg .profile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.about-profile-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

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

.about-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.about-role-highlight {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(168, 85, 247, 0.5);
}

.about-text {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    word-break: keep-all;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-profile-content {
        padding: 25px;
    }
    
    .about-role {
        font-size: 1rem;
    }
    
    .about-role-highlight {
        font-size: 1.3rem;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* ===== Portfolio Links ===== */
.portfolio-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(124, 58, 237, 0.5));
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.portfolio-link-btn.github {
    background: linear-gradient(135deg, rgba(36, 41, 46, 0.8), rgba(36, 41, 46, 0.6));
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-link-btn.github:hover {
    background: linear-gradient(135deg, rgba(36, 41, 46, 1), rgba(36, 41, 46, 0.8));
    border-color: rgba(255, 255, 255, 0.5);
}

.portfolio-link-btn span {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .portfolio-links {
        flex-direction: column;
    }
    
    .portfolio-link-btn {
        justify-content: center;
        width: 100%;
    }
}
