body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('aqfadicon.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -2;
    animation: zoomIn 5s ease-out forwards;
}

.dark-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.bio-box {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.cursor-follower {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 100, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bio-box:hover .cursor-follower {
    opacity: 50;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-content {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.social-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-box {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-button:hover {
    transform: scale(1.1);
}

/* Social box hover effects */
.youtube-box:hover {
    background-color: rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.7);
}

.twitter-box:hover,
.threads-box:hover,
.tiktok-box:hover,
.github-box:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.tumblr-box:hover {
    background-color: rgba(0, 25, 53, 0.5);
    border-color: rgba(0, 25, 53, 0.7);
}

.reddit-box:hover {
    background-color: rgba(255, 69, 0, 0.5);
    border-color: rgba(255, 69, 0, 0.7);
}

.bluesky-box:hover {
    background-color: rgba(17, 133, 254, 0.5);
    border-color: rgba(17, 133, 254, 0.7);
}

.instagram-box {
    position: relative;
    overflow: hidden;
}

.facebook-box:hover {
    background-color: rgba(24, 119, 242, 0.5);
    border-color: rgba(24, 119, 242, 0.7);
}

.instagram-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.instagram-box:hover::before {
    opacity: 0.5;
}

.instagram-icon,
.social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

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

.social-group {
    display: flex;
    gap: 15px;
}

.social-group:not(.active) {
    display: none;
}

.nav-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
}

.projects-button {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.4s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-button:hover {
    background-color: rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.7);
    transform: scale(1.05);
}

.linktree-button {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.4s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linktree-button:hover {
    background-color: rgba(67, 230, 96, 0.5);
    border-color: rgba(67, 230, 96, 0.7);
    transform: scale(1.05);
}

.linktree-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.projects-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-expanded.active {
    display: flex;
    opacity: 1;
}

.projects-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-close-btn:hover {
    background-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

.project-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1000px;
    padding: 20px;
    margin-top: 30px;
    overflow-y: auto;
    max-height: 70vh;
}

.project-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
    z-index: 1;
}

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

.project-card.with-image {
    position: relative;
    overflow: hidden;
}

.project-card.with-image img {
    position: relative;
    width: 100%;
    height: 150px;
    object-fit: contain;
    z-index: 1;
}

.project-image-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.project-card.no-image {
    grid-column: span 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-card.no-image .project-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.project-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.project-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-link {
    display: inline-block;
    background-color: rgba(0, 255, 100, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 100, 0.5);
    text-align: center;
}

.project-link:hover {
    background-color: rgba(0, 255, 100, 0.4);
}

@media (max-width: 768px) {
    .bio-box {
        margin: 20px;
        width: calc(100% - 50px);
    }

    .social-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-button {
        display: none !important;
    }

    .social-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .social-group:not(.active) {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-box {
        width: auto;
        justify-content: center;
        padding: 15px;
    }

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

    .project-card {
        min-height: auto;
    }
}
.carrd-button {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.4s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carrd-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        #7366a7 0%,
        #6b68aa 26.8%,
        #546db1 69.1%,
        #3f71b7 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carrd-button:hover::before {
    opacity: 0.5;
}

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

.carrd-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
