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

:root {
    --primary-color: #1d1d1f;
    --secondary-color: #86868b;
    --accent-color: #0066cc;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --bg-color: #f5f5f7;
    --white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.03);
    --header-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-1: rgba(255, 255, 255, 0.2);
    --glass-bg-2: rgba(255, 255, 255, 0.3);
    --glass-bg-3: rgba(255, 255, 255, 0.4);
    --glass-bg-4: rgba(255, 255, 255, 0.5);
    --glass-bg-5: rgba(255, 255, 255, 0.6);
    --glass-bg-6: rgba(255, 255, 255, 0.7);
    --glass-bg-7: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-strong: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    --glass-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.04);
    --card-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5f7 0%, #f0f0f2 100%);
    color: var(--text-color);
    line-height: 1.5;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.float-btn.download-btn {
    background: var(--gradient-1);
}

.float-btn.hire-btn {
    background: var(--gradient-2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(245, 87, 108, 0); }
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* CV Container - Multi-layer glass */
.cv-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg-3);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Glass Header - Enhanced */
.glass-header {
    background: var(--glass-bg-7);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid var(--glass-border-strong);
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

.glass-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Profile Image Styles */
.profile-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.profile-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #667eea;
    border-right-color: #764ba2;
    animation: spin 4s linear infinite;
}

.profile-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
    z-index: 1;
}

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

@keyframes glow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

.profile-image-wrapper:hover .profile-image {
    transform: scale(1.05) rotateY(10deg);
}

.name {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 15px;
    background: var(--glass-bg-2);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #86868b;
    max-width: 600px;
    background: var(--glass-bg-1);
    padding: 12px 16px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.header-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
}

.glass-contact {
    background: var(--glass-bg-4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 14px;
    padding: 10px 14px;
    border: 1px solid var(--glass-border-strong);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.glass-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-15deg);
    transition: transform 0.5s ease;
    opacity: 0;
}

.glass-contact:hover {
    background: var(--glass-bg-7);
    transform: translateX(5px) scale(1.02) translateZ(20px);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}

.glass-contact:hover::before {
    transform: skewX(-15deg) translateX(50%);
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.contact-item .icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #0066cc;
    filter: drop-shadow(0 2px 4px rgba(0,102,204,0.2));
}

.contact-item a,
.contact-item span {
    color: #1d1d1f;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0066cc;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.glass-card {
    background: var(--glass-bg-4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    padding: 40px 30px;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.8), 
        rgba(255,255,255,0.4), 
        rgba(255,255,255,0.8), 
        transparent
    );
}

.left-column {
    background: var(--glass-bg-3);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-right: 1px solid var(--glass-border);
}

.right-column {
    background: var(--glass-bg-4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
}

.glass-item {
    background: var(--glass-bg-2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border-strong);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.glass-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(255,255,255,0.3) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-item:hover {
    background: var(--glass-bg-4);
    transform: translateX(5px) scale(1.01) translateZ(10px);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.glass-item:hover::before {
    opacity: 1;
}

/* Section Styles */
.section {
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--glass-bg-1);
    padding: 8px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

/* Education Styles - Extra glassy */
.education-item {
    margin-bottom: 20px;
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.edu-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    background: var(--glass-bg-1);
    padding: 2px 8px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.year {
    font-size: 0.85rem;
    color: #86868b;
    font-weight: 400;
    background: var(--glass-bg-1);
    padding: 2px 8px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.degree {
    font-weight: 500;
    color: #0066cc;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.location {
    font-size: 0.85rem;
    color: #86868b;
    margin-bottom: 5px;
}

.details {
    font-size: 0.9rem;
    color: #86868b;
    font-style: normal;
}

/* Skills Styles - Enhanced with icons */
.skill-category {
    margin-bottom: 20px;
    background: var(--glass-bg-1);
    padding: 12px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: var(--glass-bg-3);
    transform: scale(1.02);
    border-color: rgba(0,102,204,0.1);
}

.skill-category h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    background: var(--glass-bg-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1d1d1f;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.skill-tag i {
    font-size: 1.1rem;
}

/* Glass Lists - Ultra glassy */
.glass-list {
    background: var(--glass-bg-2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 20px 20px 20px 40px;
    border: 1px solid var(--glass-border-strong);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.glass-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.achievement-list,
.cert-list {
    list-style: none;
    padding-left: 0;
}

.achievement-list li,
.cert-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #1d1d1f;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievement-list li:hover,
.cert-list li:hover {
    transform: translateX(5px);
    color: #0066cc;
}

.achievement-list li::before,
.cert-list li::before {
    content: none;
}

/* Additional Info - Extra glassy */
.additional-info {
    background: var(--glass-bg-2);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-strong);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.additional-info p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #1d1d1f;
    padding: 4px 8px;
    background: var(--glass-bg-1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-info strong {
    color: #0066cc;
    font-weight: 500;
}

/* Experience Styles - Extra glassy */
.experience-item {
    margin-bottom: 30px;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    background: var(--glass-bg-1);
    padding: 8px 12px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.exp-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
}

.role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0066cc;
    background: var(--glass-bg-2);
    padding: 2px 10px;
    border-radius: 100px;
}

.exp-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #86868b;
    background: var(--glass-bg-1);
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.exp-meta i {
    margin-right: 4px;
    color: #0066cc;
}

.exp-list {
    list-style: none;
    padding-left: 0;
}

.exp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #1d1d1f;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.exp-list li:hover {
    transform: translateX(5px);
    color: #0066cc;
}

.exp-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Project Styles - Enhanced with link buttons */
.project-item {
    margin-bottom: 24px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--glass-bg-1);
    padding: 8px 12px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
}

.tech {
    font-size: 0.8rem;
    color: #0066cc;
    font-weight: 500;
    background: rgba(0, 102, 204, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
}

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

.project-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #1d1d1f;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.project-list li:hover {
    transform: translateX(5px);
    color: #0066cc;
}

.project-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.link-btn.live-demo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.link-btn.github {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Glass Footer - Extra glassy */
.glass-footer {
    background: var(--glass-bg-6);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid var(--glass-border-strong);
    color: #86868b;
    padding: 24px 40px;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.glass-footer p {
    opacity: 1;
    color: #86868b;
    position: relative;
    z-index: 1;
    background: var(--glass-bg-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Visitor Badge Top */
.visitor-badge-top {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 100;
    background: var(--glass-bg-4);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Spotify Section */
.spotify-details {
    margin-bottom: 20px;
}

.spotify-summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #0066cc;
}

.spotify-summary::-webkit-details-marker {
    display: none;
}

.spotify-summary:hover {
    background: var(--glass-bg-4);
}

.spotify-widget {
    padding: 15px;
    transition: all 0.3s ease;
}

.spotify-widget:hover {
    transform: translateY(-5px);
}

/* Quote Section */
.quote-card {
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
}

/* Footer Updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.coffee-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.coffee-button {
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.coffee-quote {
    font-size: 0.85rem;
    color: #86868b;
    font-style: italic;
    background: var(--glass-bg-2);
    padding: 4px 12px;
    border-radius: 20px;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.visitor-count {
    font-size: 0.9rem;
    color: #0066cc;
    background: var(--glass-bg-2);
    padding: 4px 12px;
    border-radius: 20px;
}

/* 3D Tilt Effect Base */
[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.coffee-button {
    animation: float 3s ease-in-out infinite;
}

.coffee-button:hover {
    animation: none;
}

/* Spotify details animation */
.spotify-details[open] .spotify-widget {
    animation: slideDown 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-grid {
        grid-template-columns: 1fr;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .name {
        font-size: 2.2rem;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .glass-header {
        padding: 25px;
    }

    .glass-card {
        padding: 25px 20px;
    }

    .name {
        font-size: 1.8rem;
    }

    .title {
        font-size: 1rem;
    }

    .exp-header,
    .project-header,
    .edu-header {
        flex-direction: column;
        gap: 5px;
    }

    .profile-container {
        justify-content: center;
    }

    .skill-icons {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }

    #particles-js,
    .floating-actions {
        display: none !important;
    }

    .cv-container,
    .glass-header,
    .glass-card,
    .glass-item,
    .glass-contact,
    .glass-list,
    .glass-footer {
        background: white;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: 1px solid #eee;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .glass-header::after,
    .glass-card::after,
    .glass-item::before,
    .glass-list::after,
    .glass-footer::before {
        display: none;
    }

    .tech {
        background: none;
        padding: 0;
    }

    .section-title {
        border-bottom-color: #0066cc;
    }

    .profile-ring,
    .profile-glow {
        display: none;
    }
}