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

body {
    background-color: #000000;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    cursor: default;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.power-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-button:hover {
    transform: scale(1.05);
}

.power-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.power-button:hover .power-icon {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.power-button:hover .power-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
}

.power-button:hover .power-icon svg line,
.power-button:hover .power-icon svg circle {
    stroke: #00ff00;
}

.power-indicator {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-top: 15px;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.power-button:active {
    transform: scale(0.95);
}

.power-button:active .power-icon {
    background-color: rgba(0, 255, 0, 0.1);
}

/* Android Screen Styles */
.android-screen {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: scale(0.8);
}

.android-screen.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.android-logo {
    margin-bottom: 40px;
    animation: androidFloat 2s ease-in-out infinite;
}

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

.loading-container {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-line {
    width: 100%;
    height: 4px;
    background-color: #333333;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #a4c639, #7fb91a);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(164, 198, 57, 0.5);
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* Hide power button when Android screen is shown */
.power-button.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Lock Screen Styles */
.lock-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    color: white;
    text-align: center;
}

.lock-screen.show {
    opacity: 1;
    visibility: visible;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.status-bar {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.day {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-display {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-time {
    font-size: 120px;
    font-weight: 200;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    margin-top: -60px;
}

.user-profile {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile:hover {
    transform: scale(1.05);
}

.avatar-container {
    margin-bottom: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.user-info {
    text-align: center;
}

.user-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.unlock-text {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hide Android screen when lock screen is shown */
.android-screen.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Android Home Screen Styles */
.android-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    overflow: hidden;
}

.android-home.show {
    opacity: 1;
    visibility: visible;
}

.android-home.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

.home-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Android Status Bar */
.android-status-bar {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    height: 24px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wifi-icon, .battery-icon {
    font-size: 12px;
}

.battery-percentage {
    font-size: 12px;
    margin-left: 2px;
}

/* App Grid */
.app-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 40px;
    flex: 1;
    align-content: start;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-icon:hover {
    transform: scale(1.1);
}

.app-icon:active {
    transform: scale(0.95);
}

.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-text {
    font-size: 28px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.app-label {
    color: white;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Android Dock */
.android-dock {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    padding: 15px 20px 20px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 25px 25px 0 0;
    margin: 0 20px;
}

.dock-icon {
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dock-icon:hover {
    transform: scale(1.05);
}

.dock-icon:active {
    transform: scale(0.95);
}

.dock-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.dock-icon-text {
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.dock-icon-bg svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.dock-label {
    color: white;
    font-size: 10px;
    font-weight: 400;
    margin-top: 4px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Hide lock screen when home screen is shown */
.lock-screen.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

/* About Screen Styles */
.about-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.about-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.back-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.back-button:active {
    transform: scale(0.95);
}

.back-arrow {
    font-size: 20px;
    font-weight: bold;
}

.about-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.header-spacer {
    width: 40px;
}

.about-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
}

.profile-avatar {
    margin-bottom: 20px;
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.profile-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-title {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.about-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

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

.expertise-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.expertise-icon {
    font-size: 20px;
    margin-right: 10px;
}

.expertise-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

/* Projects Screen Styles */
.projects-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.projects-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.projects-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.projects-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-info {
    flex: 1;
}

.project-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 3px;
}

.project-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.project-icon {
    margin-left: 15px;
}

.project-emoji {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tech-tag.react {
    background: linear-gradient(45deg, #61dafb, #21232a);
}

.tech-tag.typescript {
    background: linear-gradient(45deg, #3178c6, #235a97);
}

.tech-tag.nodejs {
    background: linear-gradient(45deg, #68a063, #3c5f41);
}

.tech-tag.html {
    background: linear-gradient(45deg, #e34c26, #f06529);
}

.tech-tag.css {
    background: linear-gradient(45deg, #1572b6, #33a9dc);
}

.tech-tag.javascript {
    background: linear-gradient(45deg, #f7df1e, #e6c200);
    color: #000;
    text-shadow: none;
}

.project-description {
    margin-bottom: 20px;
}

.project-description ul {
    list-style: none;
    padding: 0;
}

.project-description li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.project-description li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.link-icon {
    font-size: 12px;
}

/* Experience Screen Styles */
.experience-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.experience-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.experience-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.experience-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-emoji {
    font-size: 24px;
}

.timeline-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    margin-top: 10px;
}

.experience-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.badge-text {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-header-content {
    margin-bottom: 25px;
}

.role-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.organization {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-weight: 500;
}

.duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.experience-story {
    margin-bottom: 25px;
}

.story-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.story-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.story-icon {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.story-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.story-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.experience-impact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-weight: 500;
}

.experience-footer {
    margin-top: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.journey-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.journey-text p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Skills Screen Styles */
.skills-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.skills-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.skills-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.skills-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.skills-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.skills-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.skills-intro h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skills-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.category-icon {
    font-size: 24px;
    margin-right: 12px;
}

.category-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.skill-name {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.skill-level {
    display: flex;
    align-items: center;
}

.level-indicator {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.level-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.level-advanced::after {
    width: 90%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.level-intermediate::after {
    width: 70%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.level-beginner::after {
    width: 40%;
    background: linear-gradient(90deg, #f87171, #ef4444);
}

/* Skill level hover animations */
.skill-item:hover .level-indicator::after {
    animation: skillPulse 0.6s ease-in-out;
}

@keyframes skillPulse {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-intro h2 {
        font-size: 24px;
    }
    
    .skills-intro p {
        font-size: 14px;
    }
}

/* Animation for sliding in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animation for sliding out to right */
@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 

/* Education Screen Styles */
.education-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.education-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.education-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.education-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.education-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.education-hero {
    margin-bottom: 25px;
}

.university-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.university-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.university-initial {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.university-info {
    flex: 1;
}

.university-name {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.degree-badge {
    flex-shrink: 0;
}

.badge-current {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3);
}

.degree-details {
    margin-bottom: 30px;
}

.degree-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.degree-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.degree-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.degree-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.degree-info {
    flex: 1;
}

.degree-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.degree-field {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.specialization {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spec-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.spec-value {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.timeline-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.timeline-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.date-item {
    text-align: center;
}

.date-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.date-value {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 20px;
}

.academic-highlights {
    margin-bottom: 30px;
}

.highlights-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.academic-stats {
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.learning-philosophy {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.philosophy-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .university-card {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-dates {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation for sliding in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animation for sliding out to right */
@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 

/* Contact Screen Styles */
.contact-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.contact-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.contact-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.contact-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.contact-card:active {
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-emoji {
    font-size: 24px;
}

.contact-info {
    flex: 1;
}

.contact-method {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-block;
}

.contact-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}

.contact-action {
    flex-shrink: 0;
}

.action-button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.contact-card:hover .action-button {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.action-text {
    font-size: 13px;
    font-weight: 500;
    color: white;
}

.action-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.2s ease;
}

.contact-card:hover .action-arrow {
    transform: translateX(3px);
}

/* Specific contact card styles */
.email-card:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
}

.linkedin-card:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
}

.github-card:hover {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.2), rgba(136, 136, 136, 0.1));
}

.contact-footer {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.availability-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.availability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.availability-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.availability-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.availability-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-action {
        order: 2;
    }
    
    .availability-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Animation for sliding in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animation for sliding out to right */
@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 

/* Education Screen Styles */
.education-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.education-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.education-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.education-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.education-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.education-hero {
    margin-bottom: 25px;
}

.university-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.university-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.university-initial {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.university-info {
    flex: 1;
}

.university-name {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.degree-badge {
    flex-shrink: 0;
}

.badge-current {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3);
}

.degree-details {
    margin-bottom: 30px;
}

.degree-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.degree-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.degree-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.degree-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.degree-info {
    flex: 1;
}

.degree-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.degree-field {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.specialization {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spec-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.spec-value {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.timeline-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.timeline-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.date-item {
    text-align: center;
}

.date-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.date-value {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 20px;
}

.academic-highlights {
    margin-bottom: 30px;
}

.highlights-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.academic-stats {
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.learning-philosophy {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.philosophy-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .university-card {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-dates {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation for sliding in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animation for sliding out to right */
@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 

/* Contact Screen Styles */
.contact-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(100%);
    z-index: 200;
}

.contact-screen.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    min-height: 60px;
}

.contact-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.contact-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.contact-card:active {
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-emoji {
    font-size: 24px;
}

.contact-info {
    flex: 1;
}

.contact-method {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-block;
}

.contact-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}

.contact-action {
    flex-shrink: 0;
}

.action-button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.contact-card:hover .action-button {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.action-text {
    font-size: 13px;
    font-weight: 500;
    color: white;
}

.action-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.2s ease;
}

.contact-card:hover .action-arrow {
    transform: translateX(3px);
}

/* Specific contact card styles */
.email-card:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
}

.linkedin-card:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
}

.github-card:hover {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.2), rgba(136, 136, 136, 0.1));
}

.contact-footer {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.availability-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.availability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.availability-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.availability-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.availability-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-action {
        order: 2;
    }
    
    .availability-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Animation for sliding in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animation for sliding out to right */
@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 
