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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    color: #F7F7F7;
    min-height: 100vh;
    overflow-x: hidden;
}

.section {
    min-height: calc(100vh + 75px);
    position: relative;
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Intro Section */
#intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.2);
    z-index: 1;
}

#intro .container {
    position: relative;
    z-index: 2;
}

/* Avatar */
.avatar-container {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
}

.avatar {
    width: 100%;
    height: 100%;
    border: 4px solid #FEBA17;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(254, 186, 23, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Typography */
@keyframes subtleGlow {
    0% {
        text-shadow: 0 0 12px rgba(247, 247, 247, 0.5);
    }

    50% {
        text-shadow: 0 0 18px rgba(247, 247, 247, 0.7);
    }

    100% {
        text-shadow: 0 0 12px rgba(247, 247, 247, 0.5);
    }
}

.heading {
    font-family: 'Caveat', cursive;
    font-size: 7.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F7F7F7;
    animation: subtleGlow 3s ease-in-out infinite;
}

.subtext {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    color: #E5E5E5;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(247, 247, 247, 35%);
    max-width: 85%;
    white-space: nowrap;
    text-align: center;
}

.cta-social-container {
    background-color: rgba(33, 37, 41, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    width: 90%;
    max-width: 800px;
}

.cta-line {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #F7F7F7;
    text-align: center;
    opacity: 0.75;
}

@media (max-width: 480px) {
    .cta-line {
        font-size: 1.3rem;
    }
}

/* CTA Button */
.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: buttonFloat 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.cta-button .my {
    color: white;
}

.cta-button .work {
    color: #FEBA17;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(254, 186, 23, 0.4);
    animation: wiggle 0.5s ease-in-out;
}

@keyframes buttonFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg) scale(1.05);
    }

    25% {
        transform: rotate(5deg) scale(1.05);
    }

    50% {
        transform: rotate(-5deg) scale(1.05);
    }

    75% {
        transform: rotate(3deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1.05);
    }
}

/* Social Icons */
.social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

@keyframes headlineFloat {
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

@keyframes headlineGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes sparkleHeartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.section-heading {
    animation: headlineFloat 6s ease-in-out infinite, headlineGlow 3s ease-in-out infinite;
    font-size: 5.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.section-heading .spark-icon {
    animation: sparkleHeartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

.creator-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.cta-line {
    opacity: 0.75;
}

.get-in-touch {
    margin-bottom: 0;
}

.get-in-touch .get {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.get-in-touch .touch {
    color: #FEBA17;
    text-shadow: 0 0 10px rgba(254, 186, 23, 0.5);
}

.work-together-text {
    font-weight: 300;
}

.section {
    padding: 30px 0;
    min-height: auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(33, 37, 41, 0.5);
    padding: 15px;
    border-radius: 10px;
    width: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: socialFloat 4s ease-in-out infinite;
}

.social-item:nth-child(1) .social-item-inner {
    animation-delay: 0s;
}

.social-item:nth-child(2) .social-item-inner {
    animation-delay: 0.5s;
}

.social-item:nth-child(3) .social-item-inner {
    animation-delay: 1s;
}

.social-item:nth-child(4) .social-item-inner {
    animation-delay: 1.5s;
}

.social-item:nth-child(5) .social-item-inner {
    animation-delay: 2s;
}

@keyframes socialGlow {
    0% {
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
    }
}

.social-item i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #F7F7F7;
    animation: socialGlow 3s ease-in-out infinite;
}

.social-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #F7F7F7;
    text-decoration: none;
}

.social-item:hover {
    box-shadow: 0 0 15px rgba(254, 186, 23, 0.7);
    text-decoration: none;
}

.social-item:hover .social-item-inner {
    animation: socialWiggle 0.5s ease-in-out;
}

.social-item:hover i,
.social-item:hover span {
    color: #FEBA17;
    text-shadow: 0 0 8px rgba(254, 186, 23, 0.6);
}

/* Custom Icons */
.custom-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

@keyframes socialFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes socialWiggle {
    0% {
        transform: rotate(0deg) translateY(-5px);
    }

    25% {
        transform: rotate(3deg) translateY(-5px);
    }

    50% {
        transform: rotate(-3deg) translateY(-5px);
    }

    75% {
        transform: rotate(2deg) translateY(-5px);
    }

    100% {
        transform: rotate(0deg) translateY(-5px);
    }
}

/* Section Divider */
.section-divider {
    width: 80%;
    height: 1px;
    background-color: rgba(247, 247, 247, 0.3);
    margin: 0 auto;
}

/* My Work Section */
#my-work {
    background-color: #1a1a2e;
    position: relative;
    overflow: hidden;
}

#my-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FFFFFF" opacity="0.02"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23FFFFFF" stroke-width="1" opacity="0.05"/></svg>');
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

#my-work .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

#feedbacks .section-heading {
    font-size: 5rem;
}

.section-heading .my {
    color: white;
    margin-right: 0.5rem;
}

.section-heading .work {
    color: #FEBA17;
}

.section-heading:hover .my {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.section-heading:hover .work {
    text-shadow: 0 0 25px rgba(254, 186, 23, 0.8);
}

/* Video Grid */
.video-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: 1100px;
}

.video-wrapper {
    position: relative;
    width: 100% !important;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    /* Ultra-Premium Neon Purple Effect */
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(162, 126, 255, 0.3);
    border: 2px solid rgba(162, 126, 255, 0.8);
    background: #000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.video-wrapper:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: #d987ef;
    box-shadow: 0 20px 50px rgba(162, 126, 255, 0.4);
}

.video-wrapper iframe,
.video-wrapper wistia-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 23px;
    /* Match parent to prevent outer 'rounding gaps' */
}

.video-wrapper:nth-child(2) {
    animation-delay: 1s;
}

.video-wrapper:nth-child(3) {
    animation-delay: 2s;
}

@keyframes videoFloat {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Button Container */
.button-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.load-more,
.full-portfolio {
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    animation: none;
}

/* Mastery Toolbox Section (Flexing Skills) */
.toolbox-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);

    /* Reveal Animation Initial State */
    opacity: 0;
    transform: translateY(30px);
}

/* Reveal Trigger Classes */
.toolbox-grid.reveal-active .tool-card {
    animation: cardReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Staggered Delays (1-10) */
.toolbox-grid.reveal-active .tool-card:nth-child(1) {
    animation-delay: 0.1s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(2) {
    animation-delay: 0.2s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(3) {
    animation-delay: 0.3s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(4) {
    animation-delay: 0.4s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(5) {
    animation-delay: 0.5s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(6) {
    animation-delay: 0.6s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(7) {
    animation-delay: 0.7s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(8) {
    animation-delay: 0.8s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(9) {
    animation-delay: 0.9s;
}

.toolbox-grid.reveal-active .tool-card:nth-child(10) {
    animation-delay: 1.0s;
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tool-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tool-icon img {
    width: 100%;
    height: 100%;
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tool-icon span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.tool-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-align: center;
}

/* Category Neon Glows */
.tool-card.video {
    border-color: rgba(188, 19, 254, 0.2);
}

.tool-card.design {
    border-color: rgba(0, 243, 255, 0.2);
}

.tool-card.audio {
    border-color: rgba(1, 235, 174, 0.2);
}

.tool-card.ai {
    border-color: rgba(255, 0, 255, 0.2);
}

/* Hover Effects */
.tool-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.07);
    z-index: 10;
}

.tool-card.video:hover {
    border-color: #bc13fe;
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.4), inset 0 0 10px rgba(188, 19, 254, 0.1);
}

.tool-card.design:hover {
    border-color: #00f3ff;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4), inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.tool-card.audio:hover {
    border-color: #01eba6;
    box-shadow: 0 0 25px rgba(1, 235, 174, 0.4), inset 0 0 10px rgba(1, 235, 174, 0.1);
}

.tool-card.ai:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4), inset 0 0 10px rgba(255, 0, 255, 0.1);
}

.tool-card:hover .tool-icon {
    transform: scale(1.15);
    text-shadow: 0 0 15px currentColor;
}

.tool-card.video:hover .tool-icon {
    color: #bc13fe;
}

.tool-card.design:hover .tool-icon {
    color: #00f3ff;
}

.tool-card.audio:hover .tool-icon {
    color: #01eba6;
}

.tool-card.ai:hover .tool-icon {
    color: #ff00ff;
}

.tool-card:hover .tool-icon img {
    transform: scale(1.1);
}

.tool-card.video:hover .tool-icon img {
    filter: drop-shadow(0 0 8px #bc13fe);
}

.tool-card.design:hover .tool-icon img {
    filter: drop-shadow(0 0 8px #00f3ff);
}

.tool-card.audio:hover .tool-icon img {
    filter: drop-shadow(0 0 8px #01eba6);
}

.tool-card.ai:hover .tool-icon img {
    filter: drop-shadow(0 0 8px #ff00ff);
}

.tool-card:hover .tool-label {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .toolbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.load-more:hover,
.full-portfolio:hover {
    box-shadow: 0 0 20px rgba(254, 186, 23, 0.4);
}

.full-portfolio .work {
    color: #FEBA17;
}

/* Creators Slider System (Infinite Marquee) */
.creators-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 60px 0;
    position: relative;
    /* Fade effects on edges */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.creators-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollMarquee 30s linear infinite;
}

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

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* Half cards + half gap */
    }
}

.creator-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(254, 186, 23, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(254, 186, 23, 0.1);
    padding: 30px 20px;
    background-color: rgba(33, 37, 41, 0.6);
    border-radius: 20px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .creator-card {
        flex: 0 0 250px;
    }

    .creators-track {
        animation-duration: 20s;
    }
}

.creator-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #FEBA17;
    box-shadow: 0 10px 30px rgba(254, 186, 23, 0.3);
}

.creator-card:nth-child(2) {
    animation-delay: 0.5s;
}

.creator-card:nth-child(3) {
    animation-delay: 1s;
}

.creator-card:nth-child(4) {
    animation-delay: 1.5s;
}

.creator-card:nth-child(5) {
    animation-delay: 2s;
}

.creator-card:nth-child(6) {
    animation-delay: 2.5s;
}

.creator-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.creator-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FEBA17;
    margin-bottom: 5px;
}

.creator-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #f7f7f7;
    opacity: 0.8;
}

@keyframes creatorFloat {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Feedback Section */
.feedback-controls {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.feedback-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.feedback-container.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feedback-container.slider {
    display: flex;
    justify-content: center;
}

.feedback-container.slider .feedback-card {
    display: none;
}

.feedback-container.slider .feedback-card.active {
    display: block;
}

.feedback-card {
    padding: 15px;
    background-color: rgba(33, 37, 41, 0.5);
    box-shadow: 0 0 100px rgb(255 234 143 / 20%);
    border-radius: 15px;
    animation: feedbackFloat 6s ease-in-out infinite;
}

.feedback-card:nth-child(2) {
    animation-delay: 1s;
}

.feedback-card:nth-child(3) {
    animation-delay: 2s;
}

.feedback-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.feedback-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.slider-arrow {
    background-color: rgba(33, 37, 41, 0.7);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    color: #feba17;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    transform: scale(1.1);
    background-color: rgba(254, 186, 23, 0.3);
    color: #FEBA17;
}

@keyframes feedbackFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Let's Work Together Section */
.work-together-bg {
    background-color: #212529;
    padding: 30px 0;
    width: 100%;
    margin-bottom: 0;
}

.work-together-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.work-together-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #F7F7F7;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: headingFloat 4s ease-in-out infinite;
}

.work-together-heading .lets-work {
    color: #F7F7F7;
    text-shadow: 0 0 15px rgba(247, 247, 247, 0.6);
}

.work-together-heading .together {
    color: #FEBA17;
    text-shadow: 0 0 15px rgba(254, 186, 23, 0.6);
    position: relative;
}

.spark-icon {
    color: #FEBA17;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(10deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(5px) rotate(-10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.work-together-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    color: #E5E5E5;
    margin-bottom: 30px;
    max-width: 600px;
}

.spark-icon {
    position: relative;
    left: -10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.get-in-touch {
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.get-in-touch:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(254, 186, 23, 0.4);
}

/* Footer Styles */
footer {
    background-color: #111111;
    padding: 25px 0;
    margin-top: 0;
}

.copyright {
    font-size: 1.1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copyright {
    font-family: 'Schoolbell', cursive;
    font-size: 1rem;
    color: #F7F7F7;
    text-align: center;
}

.maazvfx {
    color: #FEBA17;
    font-weight: bold;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-icon {
    color: #F7F7F7;
    font-size: 1.9rem;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    color: #FEBA17;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .heading {
        font-size: 6rem;
    }

    .subtext {
        font-size: 1.6rem;
        white-space: normal;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .social-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 5rem;
    }

    .subtext {
        font-size: 1.4rem;
    }

    .social-container {
        gap: 12px;
    }

    .social-item {
        width: calc(33.33% - 12px);
        min-width: 85px;
        padding: 12px 8px;
    }

    .cta-social-container {
        width: 95%;
        padding: 20px 15px;
    }

    .section-heading {
        font-size: 3.5rem;
    }

    .feedback-container.grid {
        grid-template-columns: 1fr;
    }

    .work-together-heading {
        font-size: 2.8rem;
    }

    .cta-line {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 3.8rem;
    }

    .subtext {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .section-heading {
        font-size: 4rem;
    }

    .container {
        width: 95%;
        padding: 15px 10px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .avatar-container {
        width: 140px;
        height: 140px;
    }

    .social-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }

    .social-item:last-child {
        display: none;
        /* Hide email on mobile */
    }

    .social-item {
        width: 100%;
        min-width: auto;
        padding: 8px;
    }

    .social-item i {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .social-item span {
        font-size: 0.75rem;
        color: #F7F7F7;
        text-decoration: none;
    }

    .creators-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .creator-card {
        padding: 5px;
    }

    .creator-logo {
        width: 70px;
        height: 70px;
    }

    .creator-name {
        font-size: 1.1rem;
    }

    .creator-info {
        font-size: 0.75rem;
    }

    #creators .section-heading {
        font-size: 2.5rem;
    }

    #feedbacks .section-heading {
        font-size: 2rem;
    }

    .work-together-heading {
        font-size: 3rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .work-together-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .slider-controls {
        gap: 15px;
    }

    .slider-arrow {
        width: 64px;
        height: 64px;
    }

    .cta-line {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

.layout-select {
    padding: 8px 15px;
    background-color: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.90;
    color: #F7F7F7;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    box-shadow: 0 0 10px rgba(254, 186, 23, 0.2);
}

/* Secret Link */
.secret-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    color: #F7F7F7;
    text-decoration: none;
    opacity: 0.1;
    transition: opacity 0.5s ease;
    margin-top: 10px;
    display: inline-block;
}

.secret-link:hover {
    opacity: 0.5;
}