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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #ffffff;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

.navbar {
    width: 100%;
    position: static;
    background: transparent;
    padding: 1rem 2rem 0 2rem;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
    margin-top: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
}

.nav-logo:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-avatar {
    width: 42px;
    height: 42px;
    background-image: url("images/profile.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.nav-avatar::before {
    content: ''; 
    position: absolute;
    top: -5px; 
    left: -5px; 
    right: -5px; 
    bottom: -5px; 
    border: 1px solid #5e5f61;
    border-radius: 50%;
    pointer-events: none; 
}

.nav-logo:hover .nav-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.nav-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.nav-link:hover::before {
    width: calc(100% - 2rem);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/background2.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.content {
    text-align: left;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    left: 13%;
    min-height: calc(100vh - 80px);
    padding: 0px 20px 50px; /* ZWIĘKSZONY PADDING GÓRNY */
    position: relative;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.profile-pic-and-name {
    display: flex;
    align-items: center;
    gap: 20px;
}

.name-and-title {
    display: flex;
    flex-direction: column;
}

.profile-pic {
    width: 150px;
    height: 150px;
    background-image: url("images/profile.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px;
    position: relative;
}

.profile-pic::before {
    content: ''; 
    position: absolute;
    top: -8px; 
    left: -8px; 
    right: -8px; 
    bottom: -8px; 
    border: 1px solid #5e5f61;
    border-radius: 50%;
    pointer-events: none; 
}

.name-and-title h1 {
    font-size: 48px;
    color: #ffffff;
    margin: 10px 0;
    display: flex;
    align-items: flex-end;
}

.nickname {
    font-size: 18px;
    color: #bbbbbb;
    font-weight: normal;
    margin-left: 10px;
    margin-bottom: 5px;
}

.name-and-title p {
    font-size: 18px;
    color: #cccccc;
    font-weight: normal;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon.github {
    background-image: url("images/github-icon.png");
}

.icon.youtube {
    background-image: url("images/youtube-icon.png");
}

.icon.discord {
    background-image: url("images/discord-icon.png");
}

.icon:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
    transition: transform 0.2s, filter 0.2s;
}

.animate-slide {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-rotate {
    opacity: 0;
    transform: rotate(-360deg) scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

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

.footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    filter: invert(100%);
    opacity: 0.8;
}

.footer-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-icon:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.footer-text {
    margin: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text strong {
    color: #ffffff;
    font-weight: 500;
}

.footer-text:last-child {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.creators-section {
    padding: 4rem 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.creators-header {
    text-align: center;
    margin-bottom: 4rem;
}

.creators-container {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: slideLeft 40s linear infinite;
    padding: 20px 0;
}

.creator-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.creators-container:hover {
    animation-play-state: paused;
}

.creator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info {
    display: flex;
    flex-direction: column;
}

.creator-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.creator-subs {
    color: #888888;
    font-size: 14px;
}

.designs-section {
    padding: 6rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.portfolio-client {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.portfolio-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-name {
        font-size: 0.95rem;
    }
    
    .content {
        left: 5%;
        padding: 30px 15px;
        gap: 15px;
    }
    
    .profile-pic-and-name {
        gap: 15px;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
        margin: 15px;
    }
    
    .name-and-title h1 {
        font-size: 36px;
    }
    
    .nickname {
        font-size: 16px;
    }
    
    .name-and-title p {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
        margin-top: 15px;
    }
    
    .icon {
        width: 35px;
        height: 35px;
    }
    
    .designs-section {
        padding: 4rem 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .creators-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .creator-card {
        min-width: 260px;
        padding: 15px;
    }

    .creator-avatar {
        width: 50px;
        height: 50px;
    }

    .creator-name {
        font-size: 16px;
    }

    .creator-subs {
        font-size: 13px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-icons {
        gap: 20px;
    }
    
    .footer-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .content {
        left: 0;
        padding: 20px 10px;
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    
    .profile-pic-and-name {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
        margin: 10px;
    }
    
    .name-and-title h1 {
        font-size: 28px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .nickname {
        font-size: 14px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .name-and-title p {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 12px;
        margin-top: 12px;
        justify-content: center;
    }
    
    .icon {
        width: 30px;
        height: 30px;
    }
    
    .designs-section {
        padding: 3rem 1rem;
    }
    
    .portfolio-grid {
        gap: 1.25rem;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .creators-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    .creators-container {
        gap: 10px;
        padding: 10px 0;
    }
    
    .creator-card {
        min-width: 200px;
        padding: 12px;
        gap: 10px;
    }
}

::-webkit-scrollbar {
    display: none;
}

* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}