
@font-face {
    font-family: 'Azonix';
    src: url('../fonts/Azonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand Book';
    src: url('../fonts/Quicksand_Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


h1, .navbar-brand {
    font-family: 'Azonix', sans-serif !important;
}

h4 {
    font-family: 'Azonix', sans-serif !important;
    font-size: 1.25rem !important;
}

p {
    font-family: 'Quicksand Book', sans-serif !important;
}


.animated-background {
    background: linear-gradient(-45deg, #2c3e50, #34495e, #4a6741, #5d4e75, #2c3e50);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    min-height: 100vh;
    position: relative;
}

.animated-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: floatingParticles 40s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}


.container-fluid {
    position: relative;
    z-index: 2;
}


.navbar-toggler {
    padding: 0.15rem 0.5rem;
    font-size: 0.9rem;
}

.profile-picture-container {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
    padding: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 4px solid white;
}

.profile-picture-container:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .profile-picture-container {
        width: 110px;
        height: 110px;
        padding: 1px;
    }
    

    .profile-picture-container[data-tooltip]:hover::after {
        bottom: -40px;
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .profile-picture-container[data-tooltip]:hover::before {
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .profile-picture-container {
        width: 90px;
        height: 90px;
        padding: 1px;
    }
    
    .profile-picture-container[data-tooltip]:hover::after {
        bottom: -35px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .profile-picture-container[data-tooltip]:hover::before {
        bottom: -18px;
    }
}


.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


.navbar-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-glass .navbar-brand {
    color: white !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.navbar-glass .navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.navbar-glass .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-glass .nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transform: translateY(-2px);
}

.navbar-glass .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-glass .nav-link:hover::after {
    width: 80%;
}

.navbar-glass .dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar-glass .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.navbar-glass .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.navbar-glass .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-glass .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar.sticky-top {
    z-index: 1030;
}


html {
    scroll-behavior: smooth;
}


section[id] {
    scroll-margin-top: 70px;
}

h1[id] {
    scroll-margin-top: 70px;
}

@media (max-width: 768px) {
    .about-me-text {
        max-width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .profile-picture-container {
        margin-left: 0 !important;
    }
    
    .ms-md-4 {
        margin-top: 20px !important;
    }
}

.main-skills-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 10;
}


.adobe-suite-section {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.1);
}

.other-main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 10000;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

.suite-center[data-tooltip]:hover::after {
    color: #FF61F6;
    z-index: 10000 !important;
}

.skill-premiere[data-tooltip]:hover::after {
    color: #9999FF;
    z-index: 10000 !important;
}

.skill-illustrator[data-tooltip]:hover::after {
    color: #FF9A00;
    z-index: 10000 !important;
}

.skill-photoshop[data-tooltip]:hover::after {
    color: #31A8FF;
}

.skill-after[data-tooltip]:hover::after {
    color: #9999FF;
}

.skill-indesign[data-tooltip]:hover::after {
    color: #FF3366;
}

.skill-xd[data-tooltip]:hover::after {
    color: #FF61F6;
}

.other-main-logo[data-tooltip="Davinci"]:hover::after {
    color: #FF6B6B;
}

.other-main-logo[data-tooltip="Pixelorama"]:hover::after {
    color: #A8E6CF;
}

.other-main-logo[data-tooltip="Blender"]:hover::after {
    color: #FF8A65;
}

.profile-picture-container[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.profile-picture-container[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #833ab4;
    z-index: 9999;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
    pointer-events: none;
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.suite-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.suite-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.suite-logo:hover {
    transform: scale(1.1);
}

.skill-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.2);
}

.skill-premiere:hover {
    transform: translateX(-50%) scale(1.2);
}

.skill-after:hover {
    transform: translateX(-50%) scale(1.2);
}

.skill-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.skill-percentage {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-percentage {
    opacity: 1;
    visibility: visible;
}

.skill-percentage-top {
    margin-bottom: 8px;
}

.skill-percentage-bottom {
    margin-top: 8px;
}

.premiere-color {
    color: #9999FF;
}

.illustrator-color {
    color: #FF9A00;
}

.photoshop-color {
    color: #31A8FF;
}

.after-color {
    color: #9999FF;
}

.indesign-color {
    color: #FF3366;
}

.xd-color {
    color: #FF61F6;
}

.skills-bars-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.skill-bar-item {
    margin-bottom: 30px;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.skill-percent {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.skill-bar-background {
    width: 100%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skill-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-in-out;
    width: 0%;
    position: relative;
    overflow: hidden;
}

.skill-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.adobe-suite-bar {
    background: linear-gradient(90deg, #FF61F6, #9999FF);
}

.davinci-bar {
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
}

.pixelorama-bar {
    background: linear-gradient(90deg, #A8E6CF, #88D8C0);
}

.blender-bar {
    background: linear-gradient(90deg, #FF8A65, #FFAB40);
}

.pixel-art-image {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pixel-art-image:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


.pixel-art-gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.pixel-art-gallery-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.pixel-art-gallery-image:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


.gallery-control {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
}

.gallery-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.gallery-control-icon {
    line-height: 1;
}


@media (max-width: 1200px) {
    .gallery-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        max-width: 400px;
        margin: 0 15px;
    }
    
    .pixel-art-gallery-image {
        width: 100px;
        height: 100px;
    }
    
    .gallery-track {
        gap: 15px;
    }
    
    .gallery-control {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        max-width: 280px;
        margin: 0 10px;
    }
    
    .pixel-art-gallery-image {
        width: 80px;
        height: 80px;
    }
    
    .gallery-track {
        gap: 10px;
    }
    
    .gallery-control {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


.video-gallery-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.video-gallery-item {
    width: 200px;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background: rgba(0, 0, 0, 0.8);
}

.video-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .video-gallery-centered {
        gap: 15px;
    }
    
    .video-gallery-item {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .video-gallery-centered {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-gallery-item {
        width: 200px;
        height: 120px;
    }
}


.footer-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.footer-icon:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.section-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px !important;
    padding: 0;
    margin: 0 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden !important;
}


@media (min-width: 769px) {
    .section-container {
        margin: 0 150px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .section-container {
        border-radius: 20px !important;
        overflow: hidden;
        margin: 0 50px;
    }
    
    .section-header {
        border-radius: 20px 20px 0 0 !important;
        padding: 30px 25px;
    }
    
    .section-content {
        border-radius: 0 0 20px 20px !important;
        padding: 30px 25px;
    }
    

    .adobe-suite-section {
        width: 350px;
        height: 350px;
    }
    
    .main-logo {
        width: 80px;
        height: 80px;
    }
    
    .suite-logo {
        width: 80px;
        height: 80px;
    }
    
    .skill-logo {
        width: 45px;
        height: 45px;
    }
    

    .skill-premiere {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skill-illustrator {
        top: 60px;
        right: 35px;
    }
    
    .skill-photoshop {
        bottom: 60px;
        right: 35px;
    }
    
    .skill-after {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skill-indesign {
        bottom: 60px;
        left: 35px;
    }
    
    .skill-xd {
        top: 60px;
        left: 35px;
    }
    
    .skill-percentage {
        font-size: 16px;
        padding: 3px 7px;
    }
}

.section-header {
    background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius: 20px 20px 0 0 !important;
    padding: 30px 20px;
    margin: 0 !important;
}

.section-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px !important;
    padding: 30px 20px;
    margin: 0 !important;
}


@media (min-width: 769px) {
    .about-me-text-desktop {
        max-width: 600px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .profile-section-desktop {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    

    .profile-picture-container {
        margin-left: 0 !important;
    }
}

.btn-cv {
    background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-cv:active {
    transform: translateY(0);
}


.btn-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
}


.modal-content {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-xl {
    max-width: 90%;
}

.curriculum-embed {
    min-height: 700px;
}

@media (max-width: 768px) {
    .modal-xl {
        max-width: 98%;
        margin: 5px;
    }
    
    .curriculum-embed {
        height: 500px !important;
        min-height: 500px !important;
    }
    
    .modal-body {
        padding: 10px !important;
    }
    
    .modal-body > div {
        min-height: 500px !important;
    }
    
    .section-container {
        margin: 0 10px;
        border-radius: 15px !important;
        overflow: hidden;
    }
    
    .section-header {
        padding: 25px 15px;
        border-radius: 15px 15px 0 0 !important;
    }
    
    .section-content {
        padding: 25px 15px;
        border-radius: 0 0 15px 15px !important;
    }
    

    .main-skills-container {
        width: 100%;
        height: auto;
        padding-top: 20px;
    }
    
    .main-logos-row {
        flex-direction: column;
        gap: 30px;
        margin-top: -30px;
    }
    
    .adobe-suite-section {
        width: 320px;
        height: 320px;
    }
    
    .main-logo {
        width: 70px;
        height: 70px;
    }
    
    .suite-logo {
        width: 70px;
        height: 70px;
    }
    
    .skill-logo {
        width: 40px;
        height: 40px;
    }
    
    .skill-percentage {
        font-size: 15px;
        padding: 3px 6px;
    }
    
    .skill-percentage-top {
        margin-bottom: 6px;
    }
    
    .skill-percentage-bottom {
        margin-top: 6px;
    }

    .skill-illustrator {
        right: 40px;
    }
    
    .skill-photoshop {
        right: 40px;
    }
    
    .skill-indesign {
        left: 40px;
    }
    
    .skill-xd {
        left: 40px;
    }

    .skills-bars-container {
        padding: 0 15px;
    }
    
    .skill-name {
        font-size: 16px;
    }
    
    .skill-percent {
        font-size: 14px;
    }
    
    .skill-bar-background {
        height: 18px;
    }
}

@media (max-width: 480px) {
    .curriculum-embed {
        height: 400px !important;
        min-height: 400px !important;
    }
    
    .modal-body > div {
        min-height: 400px !important;
    }
    
    .main-logos-row {
        gap: 25px;
        margin-top: -40px;
    }
    
    .adobe-suite-section {
        width: 280px;
        height: 280px;
    }
    
    .main-logo {
        width: 60px;
        height: 60px;
    }
    
    .suite-logo {
        width: 60px;
        height: 60px;
    }
    
    .skill-logo {
        width: 35px;
        height: 35px;
    }
    
    .skill-percentage {
        font-size: 13px;
        padding: 2px 5px;
    }
    
    .skill-percentage-top {
        margin-bottom: 5px;
    }
    
    .skill-percentage-bottom {
        margin-top: 5px;
    }
    

    .skill-illustrator {
        top: 50px;
        right: 30px;
    }
    
    .skill-photoshop {
        bottom: 50px;
        right: 30px;
    }
    
    .skill-indesign {
        bottom: 50px;
        left: 30px;
    }
    
    .skill-xd {
        top: 50px;
        left: 30px;
    }
}

.skill-premiere {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.skill-illustrator {
    top: 70px;
    right: 50px;
}

.skill-photoshop {
    bottom: 70px;
    right: 50px;
}

.skill-after {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.skill-indesign {
    bottom: 70px;
    left: 50px;
}

.skill-xd {
    top: 70px;
    left: 50px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scroll-to-top::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.scroll-to-top:hover::before {
    border-bottom-color: white;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top::before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid rgba(255, 255, 255, 0.8);
    }
}