*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: auto;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInTranslateX {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 216, 77, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 216, 77, 0.6), 0 0 30px rgba(255, 216, 77, 0.2);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 216, 77, 0.2);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background {
    position: absolute;
    inset: 0;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    filter: brightness(1) contrast(1.2) saturate(1.1);
    pointer-events: none;
    z-index: -2;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    min-height: 100vh;
    height: 100%;
    width: 100vw;
    pointer-events: none;
    z-index: -1;
}

.b-line {
    position: absolute;
    height: 20em;
    width: 0.5em;
    pointer-events: none;
}


.b-left {
    position: absolute;
    height: 20em;
    top: -0.1em;
    width: 20em;
    pointer-events: none;
}

.diamond {
    position: relative;
    width: 30px;
    top: 10em;
    left: 10em;
    height: 30px;
    background: linear-gradient(135deg, #fff7b0, #d4b100);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.b-right {
    position: absolute;
    height: 12em;
    width: 12em;
    right: -1em;
    top: -1em;
    pointer-events: none;
}

.avatar {
    position: absolute;
    left: 50%;
    top: 2em;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    animation: fadeInTranslateX 1s ease-out forwards;
    animation-delay: 0.2s;
}

.avatar img {
    height: 15em;
    width: 15em;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-left {
    position: absolute;
    left: 20%;
    top: 12em;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 216, 77, 0.1);
    padding: 0.6em 1.6em;
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 77, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(255, 216, 77, 0.1);
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.badge-right {
    position: absolute;
    right: 20%;
    top: 7em;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 216, 77, 0.1);
    padding: 0.6em 1.6em;
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 77, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(255, 216, 77, 0.1);
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
    animation-delay: -2s;
    /* Offset animation for organic feel */
}

.badge-text {
    color: rgb(255, 255, 255);
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.avatar .name {
    font-size: 3em;
    font: bolder;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Arial', sans-serif;
    margin-top: 6em;
    margin-bottom: 0;
    pointer-events: none;
}

.top-line {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.2);
    top: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 135%;
    max-width: 500px;
    height: 5px;
    background: linear-gradient(to right,
            rgba(255, 216, 77, 0) 0%,
            rgba(255, 216, 77, 1) 20%,
            #ffffff 50%,
            rgba(255, 216, 77, 1) 80%,
            rgba(255, 216, 77, 0) 100%);
    pointer-events: none;
    z-index: 5;
}

.top-line::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at top,
            rgba(255, 216, 77, 0.4) 0%,
            rgba(255, 216, 77, 0.1) 40%,
            transparent 70%);
    pointer-events: none;
}

.av-line1 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    left: 17%;
    top: 22em;
    transform: translateX(-50%);
    pointer-events: none;
}

.av-line2 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    right: 17%;
    top: 22em;
    transform: translateX(50%);
    pointer-events: none;
}

.bold-text {
    font-weight: 700;
    color: #ffffff;
}

.text {
    position: absolute;
    top: 27em;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1100px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    pointer-events: none;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-size: 1em;
    opacity: 0;
    animation: fadeInTranslateX 1s ease-out forwards;
    animation-delay: 0.4s;
}

.text p {
    margin: 0;
    margin-bottom: 0.1em;
}

.text p:last-child {
    margin-bottom: 0;
}

/* Status Badges */
.status-badge {
    position: absolute;
    bottom: 3.5em;
    /* Positioned at the bottom */
    display: flex;
    align-items: center;
    gap: 0.8em;
    pointer-events: none;
}

.status-badge.left {
    left: 4em;
    cursor: pointer;
    /* Adjusted for better framing */
}

.status-badge.right {
    right: 4em;
    animation-delay: -2s;
    cursor: pointer;

}

.status-badge.right a {
    text-decoration: none;
}

.status-label {
    color: #FFD84D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    position: relative;
    white-space: nowrap;
    padding-left: 3em;
}

.status-value {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    position: relative;
    opacity: 0.95;
    white-space: nowrap;
}


.fire {
    height: 10em;
    width: 15em;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    /* Enable hover */
    transition: filter 0.3s ease;
}

.fire:hover {
    animation: fireFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 216, 77, 0.6));
}

@keyframes fireFloat {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -55%);
    }
}

.discord {
    height: 10em;
    width: 15em;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    /* Enable hover */
    transition: filter 0.3s ease;
}


/* Media Queries for Responsiveness */

/* Tablet Screens (mid-range widths) */
@media screen and (max-width: 1024px) {
    .container {
        inset: 0;
        z-index: -10;
    }

    .b-left,
    .b-right {
        display: block;
        height: 30%;
        width: 20%;
    }

    .badge-container {
        position: absolute;
        top: 8em;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15em;
        z-index: 10;
        width: 90%;
        justify-content: center;
        pointer-events: none;
    }

    .badge-left,
    .badge-right {
        position: relative;
        left: auto;
        right: auto;
        top: 0;
        animation: float 4s ease-in-out infinite;
        padding: 0.5em 1em;
        pointer-events: auto;
    }

    .avatar {
        top: 2em;
        position: absolute;
    }

    .avatar img {
        height: 12em;
        width: 12em;
    }

    .avatar .name {
        font-size: 2.8em;
        margin-top: 6.5em;
    }

    .text {
        width: 90%;
        top: 26em;
        font-size: 1em;
        position: absolute;
        line-height: 1.5;
        padding: 0 1em;
        padding-bottom: 8em;
    }

    .status-container {
        position: static;
    }

    .status-badge {
        bottom: 0.12em;
        width: auto;
    }

    .status-badge.left {
        left: 2em;
        top: 35em;
    }

    .status-badge.right {
        right: 2em;
        top: 35em;
    }

    .status-label {
        font-size: 1.25em;
        padding-left: 3.5em;
    }

    .status-value {
        font-size: 1.25em;
        padding-left: 1.5em;
    }

    .fire,
    .discord {
        height: 7em;
        width: 10em;
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translate(-50%, -50%);
    }

    .status-underline {
        display: block;
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .badge-container {
        top: 6em;
        gap: 2em;
        width: 95%;
        justify-content: space-between;
        padding: 0 1em;
    }

    .badge-right {
        bottom: auto;
    }

    .badge-text {
        font-size: 0.75em;
    }

    .avatar img {
        height: 8em;
        width: 8em;
    }

    .av-line1,
    .av-line2 {
        display: none;
    }

    .avatar .name {
        font-size: 1.6em;
        margin-top: 8em;
    }

    .text {
        width: 90%;
        top: 25em;
        font-size: 0.8em;
        line-height: 1.6;
        position: absolute;
        padding: 0 0.5em;
    }

    .status-badge {
        bottom: 1.2em;
        width: auto;
        max-width: 48%;
    }

    .status-badge.left {
        left: 0.8em;
        right: auto;
    }

    .status-badge.right {
        right: 0.8em;
        left: auto;
    }

    .status-label {
        font-size: 0.85em;
        padding-left: 2.5em;
    }

    .status-value {
        font-size: 0.85em;
        padding-left: 0.5em;
    }

    .fire,
    .discord {
        height: 4em;
        width: 5.5em;
    }

    .status-underline {
        height: 2px;
    }

    .b-left,
    .b-right,
    .logo-line1,
    .logo-line2 {
        display: none;
    }
}

/* Small Phone Screens */
@media screen and (max-width: 480px) {
    .badge-container {
        top: 5em;
        gap: 1em;
    }

    .badge-text {
        font-size: 0.65em;
    }

    .avatar img {
        height: 7em;
        width: 7em;
    }

    .avatar .name {
        font-size: 1.3em;
        margin-top: 10em;
    }

    .text {
        top: 25em;
        font-size: 0.75em;
        width: 92%;
    }

    .status-badge.left {
        left: 0.3em;
    }

    .status-badge.right {
        right: 0.3em;
    }

    .status-label {
        font-size: 0.7em;
        padding-left: 2.2em;
    }

    .status-value {
        font-size: 0.7em;
    }

    .fire,
    .discord {
        height: 3em;
        width: 4.5em;
    }
}

.portfolio {
    background-color: #080808;
    padding: 8em 2em;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 216, 77, 0.1);
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 80%;
    max-width: 1200px;
    margin-bottom: 5em;
}

.header-line {
    flex: 5;
    height: 3px;
    background: #423f3f;
    opacity: 0.5;
}

.section-title {
    font-size: 3em;
    font-weight: 750;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #FFD84D 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    transform: translateY(-0.4em);
    /* Shifted upward as requested */
    pointer-events: none;
    text-shadow: 0 0 20px rgba(255, 216, 77, 0.2);
}

.logo-line1 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    left: 37%;
    top: 13em;
    transform: translateX(-50%);
    pointer-events: none;
}

.logo-line2 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    left: 64%;
    top: 13em;
    transform: translateX(-50%);
    pointer-events: none;
}

.diamond-marker {
    width: 22px;
    height: 22px;
    background-color: #FFD84D;
    transform: rotate(45deg);
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Gallery Wrapper with Gradient Border */
.gallery-wrapper {
    position: relative;
    width: 90%;
    max-width: 1400px;
    padding: 4em;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(5px);
    border: 5px solid;
    border-image: linear-gradient(to right, #824c2a, #8b4513, #cd7f32, #7f1f8a, #afa39c) 1;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 2em);
}

/* Gallery Container */
.gallery-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3em;
    width: 100%;
    overflow-x: auto;
    padding: 1em;
    scroll-behavior: smooth;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-btn.right {
    right: 1.5em;
}

.nav-btn.left {
    left: 1.5em;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 10px #FFD84D);
}

.arrow-icon {
    display: block;
    width: 25px;
    height: 25px;
    border-top: 5px solid #FFD84D;
    border-right: 5px solid #FFD84D;
    transform: rotate(45deg);
}

.arrow-icon.prev {
    transform: rotate(-135deg);
}

.portfolio-card-wrapper {
    position: relative;
    width: 500px;
    /* Cinematic width */
    height: 300px;
    /* Adjusted height to be shorter */
    flex-shrink: 0;
    /* Critical: Prevent cards from shrinking/narrowing */
}

.portfolio-card {
    position: absolute;
    width: 100%;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Gallery Background Image (Full Wrapper) */
.gallery-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.3);
    /* Deep background blur */
    z-index: 0;
    /* Behind the cards and nav arrow */
    pointer-events: none;
}

/* Ensure no elements block the background image */
.gallery-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-container {
    position: relative;
    z-index: 2;
    /* Content above background */
}




.card-inner {
    position: absolute;
    inset: 3px;
    /* Border thickness */
    background: #111111;
    /* Restored inner rounded corners */
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s ease;
    overflow: hidden;
    /* Ensure image doesn't bleed out */
}

.card-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.portfolio-card:hover .card-placeholder {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.watermark {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 800;
    font-size: 1.5em;
    /* Scaled for wider cards */
    letter-spacing: 0.3em;
    pointer-events: none;
    text-transform: uppercase;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .portfolio-card-wrapper {
        width: 450px;
        height: 270px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 1.8em;
    }

    .portfolio-card-wrapper {
        width: 350px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 4em 1em;
    }

    .portfolio-header {
        width: 95%;
        gap: 0.8em;
        margin-bottom: 2em;
    }

    .section-title {
        font-size: 1.4em;
        white-space: nowrap;
    }

    .gallery-wrapper {
        width: 95%;
        padding: 1.5em;
        border-width: 3px;
    }

    .portfolio-card-wrapper {
        width: 280px;
        height: 180px;
    }

    .gallery-container {
        gap: 1.5em;
    }

    .nav-btn.right {
        right: 0.5em;
    }

    .nav-btn.left {
        left: 0.5em;
    }

    .arrow-icon {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    .header-line {
        display: none;
    }

    .diamond-marker {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 3em 0.5em;
    }

    .gallery-wrapper {
        width: 98%;
        padding: 1em;
    }

    .portfolio-card-wrapper {
        width: 240px;
        height: 150px;
    }

    .section-title {
        font-size: 1.2em;
    }
}

/* Footer Section */
.footer {
    width: 100%;
    padding: 100px 5%;
    background: #000;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1300px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    /* Much darker for better contrast */
    backdrop-filter: blur(10px);
    overflow: visible;
    /* Allow corners to bleed slightly if needed */
}

/* Decorative Corners */
.corner {
    position: absolute;
    width: 15em;
    height: auto;
    z-index: 5;
    pointer-events: none;
}


.bottom-left {
    bottom: -100px;
    left: -50px;
    height: 20em;
    width: 20em;
    transform: scaleY(-1);
    z-index: 5;
}

.bottom-right {
    bottom: -125px;
    left: 85%;
    height: 15em;
    width: 15em;
    transform: scaleY(-1) scaleX(1);
    z-index: 5;
}

/* Footer Content Scaling */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Group items in the center */
    gap: 8vw;
    /* Large gap between sections as per reference */
    width: 100%;
    max-width: 1300px;
    z-index: 10;
}

.footer-social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    /* Only as wide as content */
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    position: relative;
    top: 100px;
}

.social-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Now correctly matching text width */
    height: 3px;
    background: #FFD84D;
    box-shadow: 0 0 10px rgba(255, 216, 77, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-img {
    position: absolute;
    top: 50%;
    left: 5%;
    height: auto;
    width: 100%;
    transform: translateY(-40%);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}





.social-icon {
    width: 200px;
    height: auto;
}

.social-btn.discord {
    margin-left: 200px;
}

.social-btn.discord .social-text {
    margin-left: -20px;
}

.social-btn.behance .social-text {
    margin-left: -140px;
}

.behance {
    width: 200px;
    height: auto;
    position: relative;
    right: 50%;
    top: auto;
}

.footer-line1 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    left: 30%;
    top: 3em;
    transform: translateX(-50%);
    pointer-events: none;


}

.footer-line2 {
    position: absolute;
    height: 2px;
    width: 5em;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    left: 70%;
    top: 3em;
    transform: translateX(-50%);
    pointer-events: none;


}

.footer-center-line {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    max-width: 500px;
    height: 4px;
    background: linear-gradient(to right,
            #FFD84D 0%,
            #FFFFFF 100%);
    pointer-events: none;
}

/* CTA Title */
.footer-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-title {
    font-family: "Montserrat", sans-serif;
    left: -30%;
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(to right, #FFD84D 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    white-space: nowrap;
}


/* Removed rogue .behance block to avoid conflicts */

/* Remove the duplicate title underline */

.footer-line-bottom {
    display: none;
    /* Reference doesn't show a full bottom line */
}

@media (min-width: 1920px) {
    .avatar img {
        height: 20em;
        width: 20em;
    }

    .name {
        position: relative;
        padding-top: 100px;
    }

    .av-line1,
    .av-line2 {
        margin-top: 100px;
    }

    .text {
        padding-top: 10px;
        font-size: 25px;
    }

    .badge-left,
    .badge-right {
        font-size: 1.5em;
    }

    .status-container {
        font-size: 1.5em;
    }

    .logo-line1,
    .logo-line2 {
        display: none;
    }

    .corner {
        height: 20em;
        width: 20em;
    }

    .bottom-left {
        left: -20em;
    }

    .bottom-right {
        left: 80em;
    }

    .footer-social-wrapper {
        font-size: 1.5em;
    }

    .social-btn.discord {
        margin-top: 5em;
    }

    .cta-title {
        font-size: 3em;
        left: -5em;
    }

    .footer-line1,
    .footer-line2 {
        margin-top: 2em;
        width: 100px;
    }
}

@media (min-width: 2559px) {
    .avatar img {
        height: 20em;
        width: 20em;
    }

    .name {
        position: relative;
        padding-top: 100px;
    }

    .av-line1,
    .av-line2 {
        margin-top: 100px;
    }

    .text {
        padding-top: 10px;
        font-size: 25px;
    }

    .badge-left,
    .badge-right {
        font-size: 2em;
    }

    .status-container {
        font-size: 1.5em;
    }

    .logo-line1,
    .logo-line2 {
        display: none;
    }

    .corner {
        height: 20em;
        width: 20em;
    }

    .bottom-left {
        left: -35em;
    }

    .bottom-right {
        left: 100em;
    }

    .footer-social-wrapper {
        font-size: 2em;
    }

    .social-btn.discord {
        margin-top: 5em;
    }

    .cta-title {
        font-size: 5em;
    }

    .footer-line1,
    .footer-line2 {
        margin-top: 2em;
        width: 10em;
    }
}


/* Footer Responsiveness */
@media (max-width: 1024px) {

    .footer {
        padding: 80px 3%;
        margin-top: 60px;
    }

    .footer-container {
        height: auto;
        min-height: 80px;
        padding: 20px 2%;
    }

    .footer-img {
        top: 10em;
    }

    .footer-content {
        gap: 4vw;
    }

    .cta-title {
        font-size: 2em;
        left: 0;
        text-align: center;
    }

    .social-btn {
        top: 60px;
    }

    .social-btn.discord {
        margin-left: 0;
    }

    .social-text {
        display: none;
    }

    .social-icon {
        width: 150px;
    }

    .behance {
        width: 150px;
        left: 2em;
        bottom: 3em;
    }

    .corner {
        display: none;
    }

    .footer-line1 {
        left: 40%;
        top: 70%;
    }

    .footer-line2 {
        right: 2%;
        top: 70%;
    }

    .footer-center-line {
        width: 60%;
        left: 55%;
        top: 250px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 3%;
        margin-top: 40px;
    }

    .footer-img {
        bottom: 1 0em;
        width: 100%;
        height: 100%;
    }

    .footer-container {
        height: auto;
        padding: 30px 5%;
        overflow: hidden;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5em;
    }

    .footer-social-wrapper {
        flex: 0 0 auto;
    }

    .footer-cta {
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 0.5em;
    }

    .cta-title {
        font-size: 1.5em;
        left: 0;
        white-space: normal;
        text-align: center;
    }

    .social-btn {
        top: 0;
        position: relative;
    }

    .social-btn.discord {
        margin-right: 10em;
    }

    .social-btn.discord .social-text,
    .social-btn.behance .social-text {
        display: none;
    }

    .social-icon {
        width: 120px;
    }

    .behance {
        width: 120px;
        margin-top: 1em;
    }

    .footer-line1,
    .footer-line2,
    .footer-center-line {
        display: none;
    }

    .corner {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 2%;
        margin-top: 20px;
    }

    .footer-container {
        padding: 20px 3%;
    }

    .footer-content {
        gap: 1em;
    }

    .cta-title {
        font-size: 1.2em;
    }

    .social-icon {
        width: 80px;
    }

    .behance {
        width: 80px;
        bottom: 10em;
    }
}