.container {
    width: 100%;
    height: 100svh;
    position: relative;
    overflow: hidden;
}

.shapes {
    position: absolute;
}


.polygonRightBright {
    right: -100px;
    bottom: -100px;
    z-index: 9999;
    filter: drop-shadow(0px 0px 10px var(--accent-color));
    animation: animator 10s ease-in-out infinite;
}

.polygonRightDull1 {
    right: -100px;
    bottom: -60px;
    z-index: 8888;
    filter: drop-shadow(0px 0px 30px var(--accent-color));
    animation: animator2 24s ease-in-out infinite;
}

.polygonRightDull2 {
    right: -100px;
    bottom: -50px;
    z-index: 7777;
    filter: drop-shadow(0px 0px 10px var(--accent-color));
    animation: animator2 30s ease-in-out infinite;
}

.stripRightVertical {
    right: 0px;
    top: -30px;
    bottom: 0;
    z-index: 6666;
    opacity: 0.1;
}

@keyframes animator {
    0% {
        transform: translate(40px, 30px);
        opacity: 1;
        filter: drop-shadow(0px 0px 10px var(--accent-color));
    }

    25% {
        transform: translate(-10px, 5px);
        opacity: 1;
        filter: drop-shadow(0px 0px 60px var(--accent-color));
    }

    50% {
        transform: translate(-4px, -10px) scale(1.05);
        opacity: 1;
        filter: drop-shadow(0px 0px 30px white);
    }

    75% {
        transform: translate(0px, -4px);
        opacity: 1;
        filter: drop-shadow(0px 0px 80px white);
    }

    100% {
        transform: translate(40px, 30px);
        opacity: 1;
        filter: drop-shadow(0px 0px 10px var(--accent-color));
    }
}

@keyframes animator2 {
    0% {
        transform: translate(20px, -10px) rotate(15deg);
        opacity: 1;
    }

    25% {
        transform: translate(-50px, 35px) rotate(-15deg);
        opacity: 0.9;
    }

    50% {
        transform: translate(-4px, -10px) rotate(5deg);
        opacity: 0.7;
    }

    75% {
        transform: translate(0px, -4px) rotate(8deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(20px, -10px) rotate(15deg);
        opacity: 1;
    }
}

@keyframes fader {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

.stripLeftHorizontal {
    left: 0px;
    bottom: -85px;
    z-index: 555;
    opacity: 0.04;
}

.socialWireframe {
    position: absolute;
    right: 85px;
    top: 20px;
    z-index: 99999;
}

.socialIconList {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-family: var(--text-font);
}

.socialIconList li {
    width: 100%;
    text-align: right;
}

.socialItem {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    cursor: url('../images/pointer.png'), auto;
    transition: all 0.5s;
    border-radius: 30px;
    font-family: "Montserrat";
}

.socialItem i {
    font-size: 34px;
    border-radius: 50%;
    background: black;
    padding: 3px;
    color: white;
    box-shadow: 0px 0px 3px gray;
}

.socialItem img {
    width: 38px;
    padding: 6px;
    background: black;
    border-radius: 50%;
    object-fit: cover;
}


.socialItem span {
    font-size: 13px;
    font-weight: 700;
}

.socialStats {
    font-weight: 100;
    font-size: 4px;
}

.image-rollover-icons {
    position: relative;
    right: 0;
    top: 0;
}

.image-rollover-icons img {
    position: absolute;
    top: 0;
    left: 0;
}

#google-black {
    z-index: 99;
}

#google-color {
    z-index: 9;
}

#item-g:hover #google-black {
    display: none;
}


/* hover-style------- */
#item-insta:hover i {
    background: linear-gradient(-45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #4c18bc 100%);
}

#item-fb:hover i {
    background: #4267B2;
}

#item-twit:hover i {
    background: #1DA1F2;
}

#item-yt:hover i {
    background: #FF0000;
}

#item-in:hover i {
    background: #0072b1;
}

#item-g:hover i {
    background: #DB4437;
}

/* code for animation--- */

.scale-up {
    transform: scale(1.1);
    background: white;
    color: black !important;
    border-radius: 30px;
    padding: 2px 0px 2px 15px;
    box-shadow: 0px 0px 60px rgb(170, 170, 170);
}

.scale-down {
    transform: scale(1);
}

.hide-text {
    display: none;
}

/* New CSS for text animation */
.socialName,
.socialStats {
    transition: transform 2s ease-in-out;
}

.show-text {
    transform: translateX(0%);
}

.socialItem:hover {
    transform: scale(1.2);
    background: white;
    color: black !important;
    border-radius: 30px;
    padding: 2px 0px 2px 15px;
    box-shadow: 0px 0px 60px rgb(170, 170, 170);
}

.socialItem:hover .socialName {
    display: none;
}

.socialItem:hover .socialStats {
    display: flex;
}

/* code for animation--- */

.actionButtonFrame {
    bottom: 100px;
    font-family: var(--text-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 14px;
    width: 60%;
    margin-top: 35px;
}

.actionButton,
.actionButtonSecondary {
    padding: 4px 18px;
    border-radius: 5px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
    border: 3px solid #0156ff;
    cursor: url('../images/pointer.png'), auto;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.3s ease-in-out;
}

.actionButtonSecondary {
    border: 3px solid #0039ac;
}

.actionButton:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    transform: scale(0.98);
    background: rgb(20, 20, 20);
    color: white;
    border: 3px solid black;
}

.actionButtonSecondary:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    transform: scale(0.98);
    border: 3px solid #25D366;
    background: #25D366;
    color: white;
}

.actionButtonSecondary.telegram:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    transform: scale(0.98);
    border: 3px solid #2550d3;
    background: #2550d3;
    color: white;
}

.actionButton i,
.actionButtonSecondary i {
    font-size: 20px;
    margin: 0;
    padding: 0;
    padding-bottom: 2px;
    transition: none;
}

.actionButton {
    color: var(--accent-color);
    border: 3px solid #0039ac;
}

.actionButtonSecondary {
    color: var(--accent-color);
    background: white;
}

.cover {
    width: 95%;
    margin: auto;
    padding-top: 45px;
    font-family: var(--text-font);
    text-align: center;
}

.coverTopText {
    z-index: 9999999;
}

.coverHeader {
    font-size: 58px;
    padding: 0;
    color: var(--accent-color);
    animation: shine 3s linear infinite;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}


.coverHeaderBreak {
    font-size: 36px;
    margin-top: 30px;
    padding: 0;
    text-transform: uppercase;
    color: var(--accent-color);
    animation: shine 3s linear infinite;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.coverHeaderBreak p {
    width: 450px;
}

.break-1 {
    text-align: right;
}

.break-2 {
    text-align: left;
}

@keyframes shine {
    to {
        background-position: -200% center;
    }
}

.coverRuleWrap {
    height: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverRule {
    height: 5px;
    width: 50%;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    animation: rule-anim 1s alternate infinite;
}

@keyframes rule-anim {
    0% {
        height: 5px;
    }

    50% {
        height: 0px;
    }

    100% {
        height: 5px;
    }
}

.coverSubHead {
    font-size: 36px;
    width: 100%;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.coverTagLine {
    width: 60%;
    text-align: center;
    left: 50%;
    transform: translateX(32%);
    font-size: 17px;
    font-weight: 700;
}

.coverMidText {
    margin-top: 15px;
    text-align: left;
}

.midHeader {
    font-size: 24px;
    text-align: left;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

.midHeader i {
    font-size: 18px;
    padding: 0;
    margin: 0;
    margin-right: -8px;
    animation: slide-fade 1.4s ease-in-out infinite;
}

@keyframes slide-fade {
    0% {
        transform: translateX(0px);
        opacity: 0.9;
    }

    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

.midText {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
    width: 60%;
    color: black;
}

.midText img {
    width: 16px;
    height: auto;
    margin-left: 3px;
    margin-bottom: -2px;
}

.midText i {
    font-size: 20px;
    color: black;
    border-bottom: none;
}

.midIcons {
    position: relative;
}

.midIcons img {
    position: absolute;
    top: 5px;
    left: 5px;
}

#coffee-icon:hover #coffee-color {
    display: block;
}

#coffee-icon:hover #coffee-black {
    display: none;
}

#coffee-color {
    display: none;
}

#badge-icon:hover #badge-color {
    display: block;
}

#badge-icon:hover #badge-black {
    display: none;
}

#badge-color {
    display: none;
}


svg {
    width: 100%;
    height: 70px;
    margin-left: 325px;
}

text {
    font-family: var(--text-font);
    letter-spacing: 2px;
    stroke: var(--accent-color);
    font-size: 56px;
    font-weight: 700;
    stroke-width: 2;
    animation: textAnimate 4.4s infinite alternate;
    text-shadow: 0px 3px 10px rgb(171, 171, 171);
}

@keyframes textAnimate {
    0% {
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 20%;
        fill: var(--accent-color)
    }

    100% {
        stroke-dasharray: 50% 0;
        stroke-dashoffstet: -20%;
        fill: var(--accent-color-trans)
    }

}


.weDoContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.weDoRow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    width: 60%;
}

.weDoItem {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    backdrop-filter: blur(10px);
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.3);
    background-size: 400% 400%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0.05), rgb(255, 255, 255, 0.7));
    animation: flash 0.7s ease infinite;
    border-left: 2px solid rgb(149, 149, 149);

}

.weDoItem:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 20px rgb(0, 0, 0, 0.25);
}

.orange:hover i {
    color: orange;
}

.red:hover i {
    color: red;
}

.purple:hover i {
    color: purple;
}

.importantText {
    font-weight: 800;
    background: linear-gradient(-90deg, var(--accent-color), rgb(0, 0, 0), rgb(8, 95, 158), var(--accent-color));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine 2.6s linear infinite;
}

@keyframes flash {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.weDoItem span {
    background: linear-gradient(-90deg, var(--accent-color), rgb(48, 48, 48), rgb(8, 95, 158), var(--accent-color));
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s linear infinite;
}

.weDoItem i {
    font-size: 25px;
    color: black;
    border-bottom: none;
}

.coverGif {
    position: fixed;
    z-index: -1;
    left: 4%;
    width: 85%;
    top: 75px;
    height: 85vh;
    opacity: 0.2;
}

.footer {
    display: flex;
    width: 100%;
    padding: 5px 0px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -10px;
    z-index: 9999;
    font-size: 17px;
    font-family: var(--text-font);
}

.footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
}

.footer-text:hover .heart-icon {
    color: crimson;
}

.heart-icon {
    font-size: 20px;
    padding-top: 3px;
}

.creator-name {
    cursor: url('../images/pointer.png'), auto;
    font-family: "Samarkan";
    font-size: 30px;
    font-weight: 500;
    -webkit-text-fill-color: transparent;
    background-color: #0d61ff;
    background-image: url('/assets/images/tricolor.gif');
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 50%;
    background-position: center;
}

.creator-name {
    background: linear-gradient(120deg, #ff5608, #ffffff, #07a20c);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waveAnimation 5s linear infinite;
}

@keyframes waveAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bridge {
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
    z-index: 9999;
    opacity: 0.8;
    filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.2));
}



.coverHeader span {
    animation: fader 0.3s ease-in-out;
}

@keyframes fader {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hidden {
    display: none;
}

.shown {
    display: inline;
    animation: fader 0.3s ease-in-out;
}

.coverSubHead span {
    opacity: 1;
    animation: blink 2.8s alternate-reverse infinite;
}

@keyframes blink {
    0% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.5;

    }

    40% {
        opacity: 0.9;
    }

    60% {
        opacity: 0.9;

    }

    80% {
        opacity: 0.5;

    }

    100% {
        opacity: 0.1;

    }
}

.hideCursor::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 1em;
    background-color: transparent;
    caret-color: transparent;
}


@keyframes plump {
    from {
        color: white;
    }

    to {
        color: crimson;
    }
}


@media (max-width: 1366px) {
    .coverHeader {
        font-size: 48px;
    }

    .coverSubHead {
        font-size: 26px;
    }

    .midHeader {
        font-size: 20px;
    }

    .footer-text {
        font-size: 12px;
    }

    .heart-icon {
        font-size: 16px;
    }

    .creator-name {
        font-size: 18px;
    }

    .stripRightVertical {
        right: -35px;
    }

    .socialWireframe {
        right: 50px;
    }

    .polygonRightBright {
        right: -120px;
        bottom: -120px;
    }

    .polygonRightDull1 {
        right: -120px;
        bottom: -80px;
    }

    .polygonRightDull2 {
        right: -120px;
        bottom: -40px;
    }

    .socialItem i {
        font-size: 30px;
    }

    .socialItem span {
        font-size: 12px;
    }
}


@media (max-width: 1280px) {

    .actionButton,
    .actionButtonSecondary {
        font-size: 13px;
    }

    .actionButton i,
    .actionButtonSecondary i {
        font-size: 16px;
    }

    .weDoItem span {
        font-size: 12px;
    }

    .weDoItem i {
        font-size: 16px;
    }

    .midHeader {
        font-size: 18px;
    }

    .midText {
        font-size: 14px;
    }

    .stripRightVertical {
        right: -50px;
    }

    .socialWireframe {
        right: 35px;
    }

    .polygonRightBright {
        right: -180px;
        bottom: -180px;
    }

    .polygonRightDull1 {
        right: -150px;
        bottom: -180px;
    }

    .polygonRightDull2 {
        right: -150px;
        bottom: -70px;
    }

    .socialItem i {
        font-size: 28px;
    }

    .socialItem span {
        font-size: 11px;
    }

    .coverTagLine {
        width: 75%;
    }

    .actionButtonFrame {
        width: 75%;
    }

    .weDoRow {
        width: 75%;
    }

    .midText {
        width: 75%;
    }
}

@media (max-width: 1000px) {
    .coverHeader {
        font-size: 36px;
    }

    .coverSubHead {
        font-size: 22px;
    }

    .coverTagLine {
        width: 70%;
    }

    .actionButtonFrame {
        width: 70%;
    }

    .weDoRow {
        width: 70%;
    }

    .midText {
        width: 70%;
    }

    .weDoRow {
        gap: 20px;
    }

    .actionButtonFrame {
        gap: 14px;
        margin-top: 15px;
    }

    .actionButton,
    .actionButtonSecondary {
        padding: 3px 12px;
    }
}

@media (max-width: 850px) {
    .cover .stripRightVertical {
        display: none;
    }

    .socialWireframe {
        right: 15px;
        top: 30px;
    }

    .socialIconList {
        flex-direction: row;
        gap: 7px;
    }

    .socialName {
        display: none;
    }

    .socialItem i {
        font-size: 16px;
    }

    .socialItem {
        flex-direction: column-reverse;
        border-radius: none;
        text-align: center;
        padding: 0px;
        position: relative;
    }

    .socialItem span {
        font-size: 7px;
    }

    .socialStats {
        font-size: 1px;
        position: absolute;
        bottom: -22px;
        background: white;
        border-radius: 5px;
        box-shadow: 0px 0px 3px rgb(0, 0, 0, 0.2);
        padding: 1px 2px;
    }

    .socialItem:hover {
        transform: scale(1);
        border-radius: 30px;
        padding: 0px;
    }

    #item-insta i {
        background: linear-gradient(-45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #4c18bc 100%);
    }

    #item-fb i {
        background: #4267B2;
    }

    #item-twit i {
        background: #1DA1F2;
    }

    #item-yt i {
        background: #FF0000;
    }

    #item-in i {
        background: #0072b1;
    }

    #item-g i {
        background: #DB4437;
    }

    .coverMidText {
        text-align: center;
        width: 100%;
    }

    .midText {
        text-align: center;
        width: 95%;
        margin: auto;
    }

    .midHeader {
        text-align: center;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .cover {
        text-align: center;
    }

    .container {
        min-height: 100vh;
        overflow-y: scroll;
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .footer {
        position: relative;
        background-color: rgb(30, 30, 30);
        width: 60%;
        margin: auto;
        margin-top: 45px;
        border-radius: 60px;
    }

    .bridge {
        display: none;
    }

    .weDoContainer {
        width: 95%;
        margin: auto;
        margin-top: 20px;
        gap: 5px;
    }

    .weDoRow {
        width: 100%;
    }

    .actionButtonFrame {
        width: 95%;
        margin: auto;
        margin-top: 20px;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .actionButton,
    .actionButtonSecondary {
        width: 100%;
    }

    .weDoRow {
        flex-direction: column;
        gap: 5px;
    }

    .weDoItem {
        text-align: center;
        justify-content: center;
        border: none;
        box-shadow: none;
        font-size: 10px;
    }

    .coverHeader {
        line-height: 33px;
        margin-top: 40px;
        font-size: 32px;
    }

    .coverSubHead {
        font-size: 20px;
    }

    .coverGif {
        left: 0%;
        width: 100%;
        top: 45%;
        height: auto;
        opacity: 0.2;
    }

    .bridge {
        bottom: -2px;
        width: 270px;
        opacity: 0.8;
    }
}

@media (max-width: 600px) {
    .cover {
        z-index: 99999999;
        box-shadow: inset 0px 0px 0px transparent;
    }

    .container {
        height: auto;
        padding-bottom: 60px;
    }

    .coverHeader {
        font-size: 24px;
    }

    .coverSubHead {
        font-size: 18px;
    }


    .stripRightVertical {
        display: none;
    }

    .bridge {
        bottom: 32px;
    }

    .footer {
        bottom: 28px;
    }

    .coverRuleWrap {
        width: 100%;
    }

    .coverRule {
        width: 82%;
    }

    .heart-icon i {
        transition: none;
        animation: plump 1.5s infinite;
        color: transparent;
    }

    @keyframes scaleAndColor {
        0% {
            transform: scale(1);
            color: inherit;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }

        50% {
            transform: scale(1.02);
            color: #ff0000;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
        }

        10% {
            transform: scale(1);
            color: #ff0000;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }
    }

    .weDoItem {
        animation-duration: 1s;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
    }

    .animation-trigger {
        animation-name: scaleAndColor;
    }

    .actionButton,
    .actionButtonSecondary {
        font-size: 15px;
    }

    .coverHeaderBreak p {
        width: 50%;
    }

    .coverHeaderBreak {
        font-size: 14px;
        margin-top: 40px;
        gap: 5px;
    }




    .polygonRightBright {
        right: -260px;
        bottom: 80px;
        z-index: -1;
        animation: none;
        display: none;
    }

    .polygonRightDull1 {
        right: -260px;
        bottom: 80px;
        z-index: -2;
        animation: none;
        display: none;
    }

    .polygonRightDull2 {
        right: -260px;
        bottom: 10px;
        z-index: -3;
        animation: none;
        display: none;
    }
}