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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #008500;
    color: #FFFFFF;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #00502896;
    padding: 15px 0;
}

a{
    cursor: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #50C878;
}

.nav-container {
    justify-content: center;
    position: relative;
}
.logo {
    position: absolute;
    left: 20px;
}

.logo img {
    margin: 55px 0px;
    max-height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 30px;
}

.nav-links li {
    margin: 0;
}

section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    scroll-margin-top: 70px;
}

section:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 3px;
    background: #50C878;
}

section:nth-of-type(odd) {
    background-color: #000000;
}

section:nth-of-type(even) {
    background-color: #0c152b;
}

section h1 {
    margin-bottom: 40px;
    font-size: 36px;
    color: #50C878;
}

section p {
    max-width: 750px;
    margin: 20px auto;
    font-size: 18px;
    color: #FFFFFF;
}

#about .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
}

#about .about-image {
    flex: 2;
}

#about .about-text {
    flex: 2;
    text-align: center;
}

#about .about-image img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #50C878;
    display: block;
    margin: 0 auto;
}

#about .resume img {
    width: 100px;
    height: 50px; 
}

@media (max-width: 768px) {
    #about .about-image img {
        width: 150px;
        height: 150px;
    }
}

footer {
    background-color: #013220;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 15px 25px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}



.contact-btn i {
    margin-right: 10px;
    font-size: 24px;
}

.contact-btn.telegram {
    background-color: #0088cc;
}

.contact-btn.telegram:hover {
    background-color: #006699;
}

.contact-btn.email {
    background-color: #D44638;
}

.contact-btn.email:hover {
    background-color: #B03024;
}

.contact-btn.Linkedin {
    background-color: #0c64c5;
}

.contact-btn.Linkedin:hover {
    background-color: #0a4c92;
}

#works {
    padding: 60px 20px;
    text-align: center;
}

#works h1 {
    margin-bottom: 40px;
    font-size: 36px;
    color: #50C878;
}

.work-item {
    display: flex;
    align-items: stretch;
    border-bottom: 2px dashed rgba(80, 200, 120, 0.3);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.work-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.work-item.reverse {
    flex-direction: row-reverse;
}

.work-text, .work-image {
    width: 50%;
    padding: 20px;
}

.work-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.work-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border: 5px solid #50C878;
}

.work-text h2 {
    margin-top: 0;
    font-size: 28px;
    color: #50C878;
}

.work-text p {
    font-size: 21px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.play-link {
    margin-top: 20px;
}

.play-link a {
    color: #50C878;
    text-decoration: underline;
}

.play-link a:visited,
.play-link a:hover,
.play-link a:active {
    color: #50C878;
}

.work-text a {
    color: #50C878;
    text-decoration: underline;
}

.work-text a:visited,
.work-text a:hover,
.work-text a:active {
    color: #50C878;
}

@media (max-width: 768px) {
    .work-item, .work-item.reverse {
        flex-direction: column;
        align-items: center;
    }

    .work-text, .work-image {
        width: 100%;
        padding: 10px 0;
    }

    .work-item, .work-item.reverse {
        margin-bottom: 40px;
    }

    .work-text {
        text-align: center;
    }

    .play-link {
        margin-top: 20px;
    }

    #about img {
        width: 150px;
        height: 150px;
    }
}

.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
}

.experience-table img {
    max-height: 150px;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #50C878;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 150px rgb(97, 192, 129);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(80, 200, 120, 1);
    }
    50% {
        box-shadow: 0 0 25px rgba(80, 200, 120, 1);
    }
    100% {
        box-shadow: 0 0 10px rgba(80, 200, 120, 1);
    }
}

.custom-cursor.hovered {
    box-shadow: 0 0 30px rgba(80, 200, 120, 0.9);
    transform: translate(-50%, -50%) scale(1.5);
}

.work-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.btn,
.work-links .btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    background: #50C878;
    color: #0b2211;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(80,200,120,0.13);
    border: none;
    transition: 
        background 0.18s cubic-bezier(.4,2,.3,1),
        color 0.14s,
        transform 0.13s;
}
.btn i,
.work-links .btn i {
    margin-right: 8px;
}

.btn:visited,
.work-links .btn:visited {
    background: #50C878;
    color: #0b2211;
}

.btn:hover,
.btn:focus,
.work-links .btn:hover,
.work-links .btn:focus {
    background: #22c55e;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 24px rgba(80,200,120,0.20);
}

.btn:active,
.work-links .btn:active {
    background: #2fa05a;
    color: #fff;
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(80,200,120,0.16);
}

@media (max-width: 768px) {
    .work-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn,
    .work-links .btn {
        width: 90%;
        text-align: center;
        font-size: 17px;
        padding: 13px 0;
    }
}


