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

html {
    background-color: #f8fafc;
    overflow-x: hidden;
}

.glassmorphic-body {
    min-height: 100vh;
    background: 
        linear-gradient(to bottom, #f8fafc 0%, rgba(248, 250, 252, 0.8) 2%, rgba(248, 250, 252, 0.4) 4%, transparent 8%, transparent 92%, rgba(248, 250, 252, 0.4) 96%, rgba(248, 250, 252, 0.8) 98%, #f8fafc 100%),
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(236, 72, 153, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 45% 40%, rgba(34, 197, 94, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 70% 10%, rgba(251, 191, 36, 0.3) 0%, transparent 35%),
        radial-gradient(circle at 30% 80%, rgba(168, 85, 247, 0.25) 0%, transparent 40%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: visible;
}

.glassmorphic-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.glassmorphic-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glassmorphic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.glassmorphic-card:hover::before {
    transform: translateX(100%);
}

.glassmorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.name-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1rem;
    color: #888;
    margin-top: 16px;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.social-button {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-button.github {
    background: #333;
    color: white;
}

.social-button.github:hover {
    background: #222;
}

.social-button.linkedin {
    background: #0077b5;
    color: white;
}

.social-button.linkedin:hover {
    background: #005885;
}

.social-button.contact {
    background: #4f46e5;
    color: white;
}

.social-button.contact:hover {
    background: #3730a3;
}

.contact-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.contact-info.inline {
    position: static;
    margin-top: 0;
}

.email-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #4f46e5;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.email-link::before {
    display: none;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.email-link:hover::before {
    display: none;
}

.main-card {
    min-width: 400px;
}

.cards-row {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px 25px;
    text-align: left;
}

.info-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.job {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 55px;
}

.job:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-icon {
    width: 43px;
    height: 43px;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 2px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 4px;
    box-sizing: border-box;
}

.job h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.job p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.duration {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 16px;
}

.skill-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.skill-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 8px;
    box-sizing: border-box;
}

.skill-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.skill-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.app-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 16px;
}

.app-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 4px;
}

.app-link:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(2px);
    border-radius: 8px;
}

.app-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0;
    box-sizing: border-box;
}

.app-link h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.app-header-card {
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.app-content-card {
    margin-bottom: 20px;
    text-align: left;
}

.app-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.app-footer {
    padding: 20px 0;
    text-align: center;
    background: none;
}

.back-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #4f46e5;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.back-button::before {
    display: none;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.back-button:hover::before {
    display: none;
}

.glassmorphic-card-static {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.glassmorphic-card-static::before {
    display: none;
}

.glassmorphic-card-static:hover {
    transform: none;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.glassmorphic-card-static:hover::before {
    display: none;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.app-title-section {
    flex: 1;
}

.app-title-section h1 {
    margin: 0 0 8px 0;
    font-size: 2rem;
}

.app-description {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 1rem;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px 0;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.app-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-button {
    background: #007aff;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.app-store-button:hover {
    background: #0056b3;
}

.github-button {
    background: #333;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.github-button:hover {
    background: #222;
}

.privacy-button {
    background: #6b7280;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.privacy-button:hover {
    background: #4b5563;
}

.app-content h2 {
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 28px 0 16px 0;
}

.app-content h1:first-child,
.app-content h2:first-of-type {
    margin-top: 0;
}

.app-content h3 {
    color: #444;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.app-content p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.app-content ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.app-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}


a {
    color: #4f46e5;
    text-decoration: none;
}

a:hover {
    color: #3730a3;
    text-decoration: underline;
}

.app-content a {
    color: #4f46e5;
    font-weight: 500;
}

.app-content a:hover {
    color: #3730a3;
}


@media (max-width: 768px) {
    .glassmorphic-body {
        padding: 40px 20px 120px 20px;
        overflow: visible;
    }
    
    .glassmorphic-container {
        gap: 20px;
        max-width: 100%;
        margin: 0;
        overflow: visible;
    }
    
    .glassmorphic-card {
        padding: 40px 30px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .main-card {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .cards-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-card {
        min-width: auto;
        max-width: none;
        padding: 25px 20px;
    }
    
    
    .app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .app-title-section {
        text-align: center;
    }
    
    .app-tags {
        justify-content: center;
    }
    
    .app-links {
        justify-content: center;
    }
    
    .name-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .glassmorphic-body {
        padding: 30px 10px 100px 10px;
        overflow: visible;
    }
    
    .glassmorphic-container {
        margin: 0;
        overflow: visible;
    }
    
    .glassmorphic-card {
        padding: 25px 15px;
        margin: 0 5px;
        max-width: calc(100% - 10px);
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .app-header-card {
        max-width: 100%;
    }
    
    .name-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .info-card h2 {
        font-size: 1.2rem;
    }
    
    .skills-list {
        gap: 6px;
    }
    
    .skill {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (prefers-color-scheme: dark) {
    html {
        background-color: #1e293b;
    }
    
    .glassmorphic-body {
        background: 
            linear-gradient(to bottom, #1e293b 0%, rgba(30, 41, 59, 0.8) 2%, rgba(30, 41, 59, 0.4) 4%, transparent 8%, transparent 92%, rgba(30, 41, 59, 0.4) 96%, rgba(30, 41, 59, 0.8) 98%, #1e293b 100%),
            radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.6) 0%, transparent 40%),
            radial-gradient(circle at 85% 85%, rgba(236, 72, 153, 0.5) 0%, transparent 40%),
            radial-gradient(circle at 45% 40%, rgba(34, 197, 94, 0.4) 0%, transparent 35%),
            radial-gradient(circle at 70% 10%, rgba(251, 191, 36, 0.45) 0%, transparent 35%),
            radial-gradient(circle at 30% 80%, rgba(168, 85, 247, 0.4) 0%, transparent 40%),
            linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    
    .glassmorphic-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    }
    
    .name-title {
        color: #f1f5f9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    h1 {
        color: #f1f5f9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .info-card h2 {
        color: #f1f5f9;
    }
    
    .job h3, .skill-item h3 {
        color: #e2e8f0;
    }
    
    .job p, .skill-item p {
        color: #cbd5e1;
    }
    
    .duration {
        color: #94a3b8;
    }
    
    .subtitle {
        color: #cbd5e1;
    }
    
    .description {
        color: #94a3b8;
    }
    
    .social-button.github {
        background: #4b5563;
        color: #f9fafb;
    }
    
    .social-button.github:hover {
        background: #374151;
    }
    
    .social-button.linkedin {
        background: #0066cc;
        color: #f9fafb;
    }
    
    .social-button.linkedin:hover {
        background: #004499;
    }
    
    .social-button.contact {
        background: #6366f1;
        color: #f9fafb;
    }
    
    .social-button.contact:hover {
        background: #4f46e5;
    }
    
    .email-link {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: #a5b4fc;
    }
    
    .email-link:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #818cf8;
    }
    
    .job {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .skill-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .app-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .app-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
    }
    
    .app-link h3 {
        color: #e2e8f0;
    }
    
    .app-description {
        color: #cbd5e1;
    }
    
    .tag {
        background: rgba(99, 102, 241, 0.2);
        color: #a5b4fc;
    }
    
    .app-store-button {
        background: #0066cc;
        color: #f9fafb;
    }
    
    .app-store-button:hover {
        background: #004499;
    }
    
    .github-button {
        background: #4b5563;
        color: #f9fafb;
    }
    
    .github-button:hover {
        background: #374151;
    }
    
    .privacy-button {
        background: #6b7280;
        color: #f9fafb;
    }
    
    .privacy-button:hover {
        background: #9ca3af;
    }
    
    .app-content h2 {
        color: #f1f5f9;
    }
    
    a {
        color: #a5b4fc;
    }
    
    a:hover {
        color: #818cf8;
    }
    
    .app-content a {
        color: #a5b4fc;
    }
    
    .app-content a:hover {
        color: #818cf8;
    }
    
    .back-button {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: #a5b4fc;
    }
    
    .back-button:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #818cf8;
    }
    
    .glassmorphic-card-static {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    }
    
    .glassmorphic-card-static:hover {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    }
    
    .app-content h3 {
        color: #e2e8f0;
    }
    
    .app-content p {
        color: #cbd5e1;
    }
    
    .app-content li {
        color: #cbd5e1;
    }
    
    p {
        color: #cbd5e1;
    }
}
