.section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f805a7, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-header p {
    font-size: 1.2rem;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #10ffdf;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 4rem
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #242424;
    z-index: 0
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out
}

.hero-slide.active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(.4)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 2s ease-out
}

.hero h1,
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0bd0f3, #f805a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none
}

.hero p,
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: .9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8)
}

.hero-tagline {
    font-size: 1.3rem;
    color: #0bd0f3;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8)
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all .3s ease;
    margin: 0 10px;
    font-size: 1rem
}

.cta-button.primary {
    background: linear-gradient(45deg, #0bd0f3, #f805a7);
    color: #fff;
    box-shadow: 0 10px 20px #0bd0f34d
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    color: #000;
    box-shadow: 0 10px 20px #f805a766
}

.cta-button.secondary {
    background: #fff3;
    color: #fff;
    border: 2px solid white;
    box-shadow: 0 10px 30px #ffffff1a
}

.cta-button.secondary:hover {
    background: #0bd0f3;
    color: #000;
    transform: translateY(-3px)
}

.about {
    padding: 100px 0;
    background: #525252
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #dfdfdf;
    text-align: center
}

.profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px #0000001a
}

.profile-image img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s ease
}

.profile-image:hover img {
    transform: scale(1.05)
}

.skills {
    padding: 60px 0;
    background: #242424
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.skill-card {
    background: #ffffff1a;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #ffffff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 300px
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #0bd0f34d;
    background: #24222233
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all .3s ease
}

.skill-card:hover .skill-icon {
    transform: scale(1.2)
}

.skill-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all .3s ease;
    position: relative
}

.skills-grid .skill-card:first-child h3:before {
    content: "★ ";
    color: gold;
    font-size: 1.2em;
    position: relative;
    left: -4px;
    top: 0
}

.skill-card p {
    color: #fffc;
    line-height: 1.6;
    font-size: .95rem;
    transition: all .3s ease
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .4s ease;
    border-radius: 20px;
    z-index: 1
}

.skill-card:hover .hover-image {
    opacity: .3
}

.skill-content {
    position: relative;
    z-index: 2;
    transition: all .3s ease
}

.skill-card:hover .skill-content {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(77, 77, 77, .7)
}

.skill-card:hover .skill-content h3 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8)
}

.skill-card:hover .skill-content p {
    color: #fffffff2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .7)
}

.skill-card:nth-child(1) .hover-image {
    background-image: url(https://i.ibb.co/Rk9H3Kdv/IMG-2258.jpg)
}

.skill-card:nth-child(2) .hover-image {
    background-image: url(https://i.ibb.co/7YwfJqZ/gif-kinky-2.gif)
}

.skill-card:nth-child(3) .hover-image {
    background-image: url(https://i.ibb.co/jPnXTHSQ/IMG-8119.jpg)
}

.buster-skills .skill-card:nth-child(1) .hover-image {
    background-image: url(https://i.ibb.co/RG149hZW/IMG-6115.gif)
}

.buster-skills .skill-card:nth-child(2) .hover-image {
    background-image: url(https://i.ibb.co/whPfBBmX/IMG-7238-Original.gif)
}

.buster-skills .skill-card:nth-child(3) .hover-image {
    background-image: url(https://i.ibb.co/v4yLB0zT/IMG-4879.gif)
}

.sissy-skills .skill-card:nth-child(1) .hover-image {
    background-image: url(https://i.ibb.co/R4H2CH8Y/sissy7.jpg)
}

.sissy-skills .skill-card:nth-child(2) .hover-image {
    background-image: url(https://i.ibb.co/dgH4SyX/Sexy-Up.gif)
}

.sissy-skills .skill-card:nth-child(3) .hover-image {
    background-image: url(https://i.ibb.co/pBc7Ygkj/sissy9.jpg)
}

.portfolio {
    padding: 60px 0;
    background: #525252
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 5px #f805a74d;
    transition: transform .3s ease, box-shadow .3s ease
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #0bd0f34d
}

.image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden
}

.image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s ease
}

.portfolio-item:hover .image-container img {
    transform: scale(1.1)
}

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eeae6, #764ba2e6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease
}

.portfolio-item:hover .hover-text {
    opacity: 1
}

.hover-text h4 {
    font-size: 1.4rem;
    margin: 0 0 10px;
    font-weight: 700
}

.hover-text p {
    font-size: .9rem;
    margin: 0;
    line-height: 1.4;
    opacity: .9
}

.contact {
    padding: 100px 0;
    background: #242424;
    text-align: center
}

.contact-buttons {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem
}

.social-link {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f805a7, #0bd0f3);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all .3s ease
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px #f805a766
}

.gallery-section {
    padding: 60px 0;
    background: #1a1a1a
}

.gallery-grid {
    margin-top: 20px
}

.mosaic-grid {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 20px;
    column-gap: 20px
}

.gallery-item {
    position: relative;
    background: #181818;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px #0000002e;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    transition: all .3s
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px #0bd0f333
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    display: block;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.04)
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dissolve {
    animation: dissolveIn 2s ease-out
}

@keyframes dissolveIn {
    0% {
        opacity: 0;
        filter: blur(8px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.floating {
    animation: floating 1s ease-in-out infinite
}

@keyframes floating {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@media (max-width: 900px) {
    .mosaic-grid {
        -moz-column-count: 2;
        column-count: 2
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        -moz-column-count: 2;
        column-count: 2
    }

    .section-header h2 {
        font-size: 2rem
    }

    .hero {
        padding: 150px 1rem 3rem
    }

    .hero h1,
    .hero-content h1 {
        font-size: 2.2rem
    }

    .hero p,
    .hero-content p {
        font-size: 1rem
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 1px
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .skill-card {
        padding: 1.5rem
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .social-links {
        gap: 1rem
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }

    .cta-button {
        padding: 12px 30px;
        font-size: .9rem
    }
}

@media (max-width: 600px) {
    .mosaic-grid {
        -moz-column-count: 1;
        column-count: 1
    }
}
