body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -webkit-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 35, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 50%, #0077b6 100%);
    border-radius: 10px;
    border: 2px solid rgba(15, 15, 35, 0.8);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #33ddff 0%, #00d4ff 50%, #00b4d8 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #66e6ff 0%, #33ddff 50%, #00d4ff 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.7);
}

::-webkit-scrollbar-corner {
    background: rgba(15, 15, 35, 0.8);
}

/* Firefox Scrollbar Styling */
html {
    scrollbar-width: thin;
    scrollbar-color: #00d4ff rgba(15, 15, 35, 0.8);
}

/* Custom Text Selection Styling */
::selection {
    background: #00d4ff;
    color: #0f0f23;
    text-shadow: none;
}

::-moz-selection {
    background: #00d4ff;
    color: #0f0f23;
    text-shadow: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
        transform: scale(1);
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
        transform: scale(1.05);
    }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Element Animations */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-fade.visible {
    opacity: 1;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

#navbar {
    list-style: none;
    margin: 0;
    padding: 20px 40px;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.15) 0%,
            rgba(15, 15, 35, 0.8) 25%,
            rgba(0, 180, 216, 0.12) 50%,
            rgba(15, 15, 35, 0.85) 75%,
            rgba(0, 212, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100% - 40px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.mobile-menu-toggle svg {
    pointer-events: none;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 35, 0.98) 0%,
            rgba(26, 26, 46, 0.96) 25%,
            rgba(22, 33, 62, 0.98) 50%,
            rgba(15, 15, 35, 0.99) 75%,
            rgba(10, 10, 25, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(200%) brightness(0.9);
    -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    margin-top: 8px;
    padding: 20px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 300px;
}



.mobile-menu .nav-item {
    margin: 0;
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(4px);
}

#navbar.scrolled {
    top: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.2) 0%,
            rgba(15, 15, 35, 0.95) 25%,
            rgba(0, 180, 216, 0.18) 50%,
            rgba(15, 15, 35, 0.95) 75%,
            rgba(0, 212, 255, 0.15) 100%);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#navbar.navbar-hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}



#title {
    font-size: 28px;
    font-weight: 800;
    margin-right: auto;
    letter-spacing: -0.5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

#title .highlight {
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}



#title:hover .highlight {
    background: linear-gradient(135deg, #33ddff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-item {
    margin-left: 16px;
}

.nav-link {
    text-decoration: none;
    color: #a0aec0;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 80px;
    min-height: calc(100% - 80px);
    position: relative;
}

#content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#welcome {
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 40px 0;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#welcome:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
}

#welcome .main-highlight {
    background: linear-gradient(135deg, #00d4ff, #00b4d8, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#welcome .main-highlight::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    border-radius: 2px;
    opacity: 0.7;
}

#para {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.7;
    margin: 0 0 32px 0;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#para:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
    color: #0f0f23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    min-height: 56px;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #33ddff 0%, #00c4e8 100%);
}

.test-button {
    margin-bottom: 48px;
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.35);
}

.test-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 60px rgba(0, 212, 255, 0.5);
}

@media (max-width: 768px) {
    #navbar {
        width: calc(100% - 40px);
        padding: 16px 24px;
        top: 10px;
        position: fixed;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
    }

    #navbar.navbar-hidden {
        transform: translateX(-50%) translateY(-120%);
        opacity: 0;
    }

    #title {
        font-size: 24px;
        margin-right: auto;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none;
    }

    .nav-item {
        margin-left: 4px;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    #welcome {
        font-size: 48px;
        letter-spacing: -1px;
    }

    #para {
        font-size: 18px;
        max-width: 90%;
    }

    #content {
        padding: 160px 20px 60px;
    }

    .button {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Project Details Section */
.project-details {
    margin: 60px 0;
    width: 100%;
    max-width: 1200px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.detail-card {
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(15, 15, 35, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.detail-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.detail-card:hover h3 {
    color: #33ddff;
}

.card-icon {
    margin-bottom: 16px;
    display: inline-block;
    color: #00d4ff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00d4ff;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
    user-select: text;
    -webkit-user-select: text;
    cursor: text;
}

.detail-card p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
    user-select: text;
    -webkit-user-select: text;
    cursor: text;
}

/* About Section */
.about-section {
    background: rgba(15, 15, 35, 0.4);
    border-radius: 24px;
    padding: 48px;
    margin: 60px 0;
    width: 100%;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-section:hover::before {
    opacity: 1;
}

.about-section:hover {
    transform: translateY(-8px);
    background: rgba(15, 15, 35, 0.6);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 32px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section h2:hover {
    color: #00d4ff;
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.3));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    color: #e2e8f0;
    line-height: 1.7;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.7;
}

.about-text p:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #00d4ff;
    margin: 32px 0 16px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text h3:hover {
    color: #33ddff;
    transform: translateY(-1px);
    filter: drop-shadow(0 3px 12px rgba(0, 212, 255, 0.4));
}

.feature-list,
.future-list {
    list-style: none;
    padding: 0;
}

.feature-list li,
.future-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-list li:hover,
.future-list li:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(6px);
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.2));
}

.feature-list li::before,
.future-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300d4ff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20,6 9,17 4,12"/></svg>') no-repeat center;
    background-size: contain;
    top: 2px;
}

.code-block {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-block pre {
    color: #a0aec0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin: 0;
    white-space: pre-wrap;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.tech-tag {
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    color: #0f0f23;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tech-tag:hover::before {
    left: 100%;
}

.tech-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #33ddff, #00d4ff);
}

.steps {
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateX(8px);
    background: rgba(0, 0, 0, 0.3);
    border-left-color: #33ddff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.1);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: #33ddff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.step-number {
    background: #00d4ff;
    color: #0f0f23;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.step-content strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.step-content code {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #a0aec0;
    display: block;
    margin: 8px 0;
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-size: 13px;
    line-height: 1.4;
}

.copyable-code {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 16px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(0, 212, 255, 0.2);
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
}

.copyable-code:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    transform: translateX(4px);
}

.copy-button {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    color: #00d4ff;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    user-select: none;
    -webkit-user-select: none;
}

.copy-button:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #33ddff;
    transform: translateY(-1px);
}

.copy-button.copied {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.copy-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    color: #0f0f23;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.creator-info {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.creator-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creator-info:hover::before {
    opacity: 1;
}

.creator-info:hover {
    transform: translateY(-4px);
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
}

.creator-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.creator-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #33ddff, #00d4ff);
    transition: width 0.3s ease;
}

.creator-link:hover::after {
    width: 100%;
}

.creator-link:hover {
    color: #33ddff;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .about-section {
        padding: 32px 24px;
        margin: 40px 0;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-card {
        padding: 24px 20px;
    }

    .tech-stack {
        justify-content: center;
    }

    .step {
        flex-direction: column;
        text-align: left;
        padding: 16px;
        margin: 16px 0;
    }

    .step:hover {
        transform: translateY(-4px);
    }

    .step-number {
        margin: 0 0 12px 0;
        align-self: flex-start;
    }

    .step-content {
        width: 100%;
    }

    .step-content code {
        font-size: 12px;
        padding: 12px;
        line-height: 1.3;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .copy-button {
        display: block;
        margin: 8px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    #navbar {
        width: calc(100% - 20px);
        padding: 12px 20px;
        flex-direction: column;
        gap: 12px;
    }

    #title {
        margin-right: 0;
        margin-bottom: 0;
    }

    .nav-item {
        margin: 0 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    #welcome {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    #para {
        font-size: 16px;
        line-height: 1.6;
    }

    #content {
        padding: 180px 15px 50px;
    }

    .button {
        font-size: 14px;
        padding: 14px 28px;
    }

    .about-section {
        padding: 24px 16px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .code-block {
        padding: 16px;
    }

    .code-block pre {
        font-size: 12px;
    }
}

@view-transition {
    navigation: auto;
}