body {
    margin: 0;
    padding: 0;
    cursor: none;
    background: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: relative;
}

header {
    width: 100%;
    height: 100vh;
    position: relative;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
    z-index: 999;
}

.cursor.click {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1.5px solid white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    transition: transform 0.2s ease;
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(2);
}

.cursor,
.cursor-ring {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.visible,
.cursor-ring.visible {
    opacity: 1;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.no-select {
    user-select: none;
}

.projects-section {
    padding: 50px 20px;
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.projects-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.projects-section.hidden {
    opacity: 0;
    transform: translateY(-50px);
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-item {
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

.project-item p {
    color: #ccc;
}

.loading {
    display: none;
    color: #bbb;
    font-size: 16px;
    margin-top: 20px;
}

.loading.show {
    display: block;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: scroll-down-animation 1.5s infinite;
    opacity: 0.8;
}

.scroll-down span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-down-animation {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(15px) rotate(45deg);
        opacity: 0;
    }
}

.scroll-down {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.social-footer {
    background-color: #121212;
    padding: 20px;
    text-align: center;
    margin-top: 0px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links li {
    margin: 0;
}

.social-links a {
    color: #888;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.social-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}