html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    height: 100%;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

body {
    -webkit-user-select: none;
    /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.text-container {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    font-size: 96px;
    color: #fff;
    opacity: 0.8;
    user-select: none;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}

:root {
    --color-bg1: rgb(108, 0, 162);
    --color-bg2: rgb(0, 17, 82);
    --color1: 18, 113, 255;
    --color2: 221, 74, 255;
    --color3: 100, 220, 255;
    --color4: 200, 50, 50;
    --color5: 180, 180, 50;
    --color-interactive: 140, 100, 255;
    --circle-size: 80%;
    --blending: hard-light;
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(180deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(50%);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translate(-50%) translateY(-10%);
    }

    50% {
        transform: translate(50%) translateY(10%);
    }

    to {
        transform: translate(-50%) translateY(-10%);
    }
}

.gradient-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
    z-index: -1;
}

.gradient-bg svg {
    display: none;
}

.gradient-bg .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
}

.gradient-bg .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.gradient-bg .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.gradient-bg .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.gradient-bg .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.gradient-bg .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.gradient-bg .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
}

.main-box,
.stats-container,
#page-name,
#emailbtn,
#emailx,
.footerx,
.column1,
.column2,
.columns {
    border: 0px solid;
    color: white;

}

.main-box {
    padding: 50px;
    padding-top: 100px;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-color: 0;
    display: grid;
    grid-template-rows: auto;
    /* Stack items vertically */
    justify-items: center;
    /* Center items horizontally */
    box-sizing: border-box;
    /* Include padding in the element's total width and height */
    width: auto;
    /* Allow width to adjust based on content */
    height: auto;
    /* Allow height to adjust based on content */
    overflow: visible;
    /* Ensure content is visible and box adjusts */
}

@media (max-width: 768px) {
    .main-box {
        padding-top: 50px;
    }
    .footerx {
        padding-top: 0px !important;
    }
}

.footerx {
    width: auto;
    height: 100px;
    position: relative;
    text-align: center;
    padding-top: 100px;
}

.photo-container {
    width: 300px;
    height: 300px;
    min-height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    border-radius: 50%;
    /* To maintain the circular shape of the photo */
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .photo-container {
        width: 200px;
        height: 200px;
        min-height: 200px;
    }
}

.photo-container:hover {
    transform: translateY(-5px);
    /* Move up by 10px on hover */
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeInScaleUp 1.2s ease-out;
}

@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#page-name {
    font-size: 40px;
    text-shadow: -5px 5px 5px #383838;
    text-align: center;
}

.stats-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
}


.stat i {
    font-size: 30px;
    margin-bottom: 10px;
    animation: fadeInScaleUp 1.2s ease-out;
    transition: transform 0.2s ease-in-out;
}

.stat i:hover {
    transform: translateY(-3px);
    /* Move up by 10px on hover */
}

.verified-badge {
    height: 40px;
    /* Adjust the size as needed */
    width: auto;
    vertical-align: middle;
    margin-left: -5px;
    fill: #1d9bf0;
    margin-bottom: 4px;
}

.iconx {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 100%;
    /* Adjust based on your SVG size */
    transition: transform 0.3s ease-in-out;
}

.iconx:hover {
    transform: translateY(-3px);
    /* Move up by 10px on hover */
}

.tooltipx {
    background: #393939;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 5px 7px;
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    border-radius: 5px;
}

.tooltipx:before {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #393939;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.iconx:hover .tooltipx {
    bottom: 100%;
    visibility: visible;
    opacity: 1;
}


#bodytext {
    font-size: 20px;
    text-align: center;
    position: relative;
    color: white;
}

#seconddomain {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

#seconddomain::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ff6347;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

#seconddomain:hover {
    color: #ff6347;
}

#seconddomain:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#emailx {
    text-decoration: none;
}

#emailbtn {
    margin-top: 10px;
    appearance: none;
    border: 2px solid white;
    border-radius: 15px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 400px;
    will-change: transform;
    position: relative;
    background-color: transparent;
}

#emailbtn:disabled {
    pointer-events: none;
}

#emailbtn:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

#emailbtn:active {
    box-shadow: none;
    transform: translateY(0);
}

.footerx {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #emailbtn {
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
        width: 300px;
    }
}