/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    padding: 40px 20px;
    color: white;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.1px;
    user-select: none;
    -webkit-user-select: none;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #6b7280;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

nav a:hover,
nav a:active {
    color: #ffffff;
}

/* Hero Section */
.hero {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Profile Card - Apple Glass Effect */
.profile-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Reflection Effect */
.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgb(134, 122, 92) 0%, transparent 100%);
    pointer-events: none;
    filter: blur(40px);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
#image  img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgb(251, 191, 36) 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.greeting {
    font-size: 14px;
    color: #d1d5db;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.social-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: -8px;
}

.social-links a:hover,
.social-links a:active {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.profile-content {
    position: relative;
    z-index: 1;
}

.profile-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.profile-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 420px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Illustration Card - Apple Glass Effect */
.illustration-card {
    width: 300px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 380px;
}

/* Reflection Effect for Illustration Card */
.illustration-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

.illustration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;

}

.illustration-placeholder {
    font-size: 140px;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.25));
}

/* ========================================
   SKILLS SCROLLING SECTION
   ======================================== */

.skills-section {
    margin-top: 60px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.skills-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.skills-marquee::before,
.skills-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.skills-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.skills-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.skills-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.skill-item:hover {
    opacity: 1;
}

.skill-item span {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Pause animation on hover */
.skills-marquee:hover .skills-track {
    animation-play-state: paused;
}

/* ========================================
   WEBSITE SHOWCASE SECTION
   ======================================== */

.showcase-section {
    margin-top: 40px;
    padding: 40px 0;
}

.showcase-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Website Card - Apple Glass Effect */
.website-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Reflection Effect for Website Card */
.website-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.website-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

.website-preview {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

/* Reflection Effect for Website Preview */
.website-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.website-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.website-card:hover .website-preview img {
    transform: scale(1.05);
}

.website-info {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.website-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.website-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.website-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.047);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 12px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -0.1px;
    position: relative;
    overflow: hidden;
}

/* Reflection Effect for Tags */
.tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    border-radius: 12px 12px 0 0;
}

.website-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.website-link:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

/* ========================================
   SHORT-FORM VIDEO SECTION
   ======================================== */

.video-section {
    margin-top: 40px;
    padding: 40px 0;
}

.video-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
}

/* Video Card - Apple Glass Effect */
.video-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    max-width: 300px;
}

/* Reflection Effect for Video Card */
.video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Video Container - 9:16 Aspect Ratio */
.video-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

/* Reflection Effect for Video Container */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
    border-radius: 16px 16px 0 0;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    transition: transform 0.4s ease;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .video-card:hover .video-container iframe,
    .video-card:hover .video-container video {
        transform: scale(1.02);
    }
}

.video-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.video-info p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
    letter-spacing: -0.2px;
}

/* ========================================
   GRAPHIC DESIGN WORK SECTION
   ======================================== */

.design-section {
    margin-top: 40px;
    padding: 40px 0;
}

.design-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Design Card - Apple Glass Effect */
.design-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Reflection Effect for Design Card */
.design-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Design Preview - 16:9 Aspect Ratio */
.design-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

/* Reflection Effect for Design Preview */
.design-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.design-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.design-card:hover .design-preview img {
    transform: scale(1.05);
}

.design-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.design-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.design-info p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
    letter-spacing: -0.2px;
}

/* Responsive Design for Graphic Design Section */
@media (max-width: 1024px) {
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .design-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .design-section {
        margin-top: 40px;
    }

    .design-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 30px;
    }

    .profile-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    .container {
        padding: 20px;
    }

    header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .logo {
        font-size: 18px;
    }

    nav {
        gap: 24px;
        width: 100%;
        justify-content: flex-start;
    }

    nav a {
        font-size: 16px;
    }

    .hero {
        flex-direction: column;
        gap: 20px;
    }

    .illustration-card {
        width: 100%;
        min-height: 320px;
    }

    .profile-card {
        padding: 32px;
    }

    .profile-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .profile-content p {
        font-size: 14px;
    }

    .profile-header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .social-links {
        gap: 20px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-section {
        margin-top: 40px;
    }

    .showcase-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .video-section {
        margin-top: 40px;
    }

    .video-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .video-container {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px 12px;
    }

    .container {
        padding: 16px;
    }

    .logo {
        font-size: 16px;
    }

    .profile-card {
        padding: 24px;
    }

    .profile-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .profile-content p {
        font-size: 13px;
    }

    nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 14px;
    }

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

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

    .video-card {
        max-width: 100%;
    }

    .social-links {
        gap: 16px;
    }

    #image img {
        width: 40px;
        height: 40px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .greeting {
        font-size: 13px;
    }

    .skill-item span {
        font-size: 20px;
    }

    .showcase-title,
    .video-title,
    .design-title {
        font-size: 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    margin-top: 40px;
    padding: 40px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Footer Cards - Apple Glass Effect */
.footer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reflection Effect for Footer Cards */
.footer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

/* Learning Card Styling */
.learning-card {
    background: linear-gradient(135deg, rgba(120, 100, 80, 0.15) 0%, rgba(80, 60, 50, 0.15) 100%),
                rgba(255, 255, 255, 0.05);
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 116, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.footer-heading {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -1.2px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

/* Contact Card Styling */
.contact-card {
    background: linear-gradient(135deg, #ff8a5b 0%, #f4754e 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
}

.contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.contact-links {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-link {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: -0.2px;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-heading {
        font-size: 36px;
    }

    .contact-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        margin-top: 40px;
        padding: 40px 0 40px 0;
    }

    .footer-card {
        padding: 32px;
    }

    .footer-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 15px;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .contact-link {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .footer-card {
        padding: 28px;
    }

    .footer-heading {
        font-size: 28px;
    }

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

    .contact-links {
        gap: 16px;
    }
}

/* Mobile-specific improvements for better touch interaction */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .website-card:hover,
    .video-card:hover,
    .design-card:hover {
        transform: none;
    }

    .website-card:active,
    .video-card:active,
    .design-card:active {
        transform: scale(0.98);
    }

    .skill-item {
        opacity: 0.7;
    }

    .skills-marquee:hover .skills-track {
        animation-play-state: running;
    }
}

/* Better backdrop-filter support for older browsers */
@supports not (backdrop-filter: blur(40px)) {
    .profile-card,
    .website-card,
    .video-card,
    .design-card,
    .footer-card {
        background: rgba(20, 20, 20, 0.95);
    }
}

/* Improve scrolling performance on mobile */
@media (max-width: 768px) {
    * {
        -webkit-overflow-scrolling: touch;
    }
}
