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

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.input-bg {
    transition: all 0.3s ease;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px #FFD700;
    }

    50% {
        box-shadow: 0 0 20px #FFD700;
    }

    100% {
        box-shadow: 0 0 5px #FFD700;
    }
}

.submit-btn:hover {
    animation: glowPulse 1.5s infinite;
}

.input-bg:focus-within {
    box-shadow: 0 0 10px #FFD700;
    transform: scale(1.02);
}

.footer-social__btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social__btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.navbar {
    width: 100%;
    height: 50px;
    background: #1C3036;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-menu {
    display: flex;
    gap: 24px;
    padding-right: 60px;
}

.navbar-item {
    position: relative;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-item:hover {
    transform: translateY(-3px);
}

.navbar-item:hover .navbar-item-text {
    color: #FFD700;
    text-shadow: 0 0 8px #FFD700;
}

.navbar-item-text {
    color: #FFF7BF;
    font-size: 13px;
    font-family: Inter;
}

.navbar-border-left {
    position: absolute;
    left: 0;
    height: 41px;
}

.navbar-border-right {
    position: absolute;
    right: 0;
    height: 41px;
}


.hero-background {
    width: 100%;
    height: 897px;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: flex-end;
}

.hero-bg-image {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #111111;
    opacity: 0.18;
}


.hero-mask {
    width: 864px;
    height: 900px;

    position: absolute;
    left: 0;
    top: 50px;

    pointer-events: none;
}

.mask-img {
    width: 800 px;
    justify-content: stretch;
}

.form-panel {
    position: relative;
    z-index: 10;
}



.hero-overlay,
.hero-mask-gradient {
    pointer-events: none;
}

.hero-mask-gradient {
    position: absolute;
    inset: 0;
    background-image: url(../Images/Mask_Group.png);

    background: linear-gradient(90deg,
            #5e4a10 0%,
            #5e4a10 50%,
            rgba(255, 255, 255, 0.15) 80%,
            rgba(255, 255, 255, 0) 100%);
}



/* ===================== Typography ===================== */

.signin-title {
    color: var(--color-cyan-40, #2F869E);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.signin-title-wrapper {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.register-label {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.header-row {
    text-align: center;
    justify-content: center;
    display: flex;
    /*flex-direction: column;*/
}

.real-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF7BF;
    font-size: 15px;
    direction: rtl;
    text-align: right;
    padding: 0 14px 0 40px;
    caret-color: #FFD700;
}

/* لمنع لون الـ autofill الأبيض */
.real-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #1B1E20 inset;
    -webkit-text-fill-color: #FFF7BF;
}

.form-panel,
.card-wrapper,
.card-inner,
.form-content,
.form-body,
.inputs-group,
.input-row,
.input-field-wrapper,
.input-bg {
    pointer-events: all !important;
    position: relative;
    z-index: 100;
}

input,
button {
    pointer-events: all !important;
    position: relative;
    z-index: 101;
}

/* ===== FIX: Input text visible ===== */
input.input-autofill-fix {
    background: transparent !important;
    box-shadow: none !important;
    color: #FFF7BF !important;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: Inter;
    direction: rtl;
    text-align: right;
    caret-color: #FFD700;
    padding: 0 8px;
}

input.input-autofill-fix::placeholder {
    color: rgba(255, 247, 191, 0.55);
}

input.input-autofill-fix:-webkit-autofill,
input.input-autofill-fix:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1B1E20 inset !important;
    -webkit-text-fill-color: #FFF7BF !important;
}

/* ===== FIX: Button reset to match old div style ===== */
button.submit-btn {
    border: none;
    outline: none;
    background-image: url(../Images/Component_3.png);
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #FFFFB4;
    font-size: 29px;
    font-family: Inter;
    font-weight: 400;
    text-shadow: 1px 1px 0px rgba(116, 8, 1, 1.00);
    width: 294px;
    height: 72px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== Input Placeholders ===================== */

.input-placeholder {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    word-wrap: break-word;
}

.input-placeholder-label {
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ===================== Divider ===================== */

.divider-spacer {
    width: 120px;
    height: 12px;
    background: rgba(217, 217, 217, 0);
}

/* ===================== Terms ===================== */

.terms-text {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 11px;
    font-family: Inter;
    font-weight: 400;
    line-height: 18px;

    direction: rtl;
    text-align: right;
}

.terms-container {
    bottom: 20px;
    width: 300px;
    height: auto;
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: flex-start;

    direction: rtl;
    gap: 6px;

}

.terms-link-word {
    color: #FFF7BF;
    font-size: 11px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.terms-link--service {
    width: 228.08px;
    height: 25px;
    left: 38px;
    top: 1px;
    position: absolute;
}

.terms-link--privacy {
    left: 132.06px;
    top: 13.50px;
    position: absolute;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}

.terms-link--eula {
    width: 104.84px;
    height: 25px;
    left: 38px;
    top: 15px;
    position: absolute;
}

.terms-separator {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 11px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.terms-dot {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 11px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

/* ===================== Submit Button ===================== */

.submit-btn-label {
    color: var(--color-yellow-85, #FFFFB4);
    font-size: 29px;
    font-family: Inter;
    font-weight: 400;
    word-wrap: break-word;
    text-shadow: 1px 1px 0px rgba(116, 8, 1, 1.00);
}

.submit-btn-text {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ===================== Social Login ===================== */

.social-login-label {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.social-login-label-wrapper {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ===================== Form Header ===================== */

.signin-title-wrapper {
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

/* ===================== Input Autofill Fix ===================== */

.input-autofill-fix {
    align-self: stretch;
    padding-top: 1px;
    padding-bottom: 1px;
    background: var(--color-grey-12, #1B1E20);
    box-shadow: 0px 0px 0px 1000px #1B1E20 inset;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
}

/* ===================== Terms Absolute Positioned Items ===================== */

.terms-text-absolute {
    width: 181.70px;
    height: 14px;
    left: 64.41px;
    top: -0.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-word-first {
    width: 26.61px;
    height: 14px;
    left: 0px;
    top: -1.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-word-second {
    width: 39.81px;
    height: 14px;
    left: 188.47px;
    top: 12.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-comma {
    width: 6.04px;
    height: 14px;
    left: 220.63px;
    top: 13.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-and {
    width: 12.31px;
    height: 14px;
    left: 119.95px;
    top: 13.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-eula-first {
    width: 82.15px;
    height: 14px;
    left: 0px;
    top: -1.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-eula-second {
    width: 101.95px;
    height: 14px;
    left: 3.09px;
    top: 12.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.terms-dot-wrapper {
    width: 3.29px;
    height: 14px;
    left: 38px;
    top: 27.50px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ===================== Social Login Row ===================== */

.social-login-label-wrapper {
    width: 285px;
    left: 0px;
    top: 0px;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

/* ===================== Form Header Row ===================== */

.header-row {

    width: 285px;
    left: 3.08px;
    top: 66.24px;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

/* ===================== Input Fields ===================== */

.input-field {
    width: 250px;
    height: 29px;
    padding-top: 5px;
    padding-bottom: 6px;
    padding-left: 35px;
    padding-right: 11px;
    left: 14px;
    top: 12px;
    position: absolute;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}


/* ===================== Form Header Wrapper ===================== */

.form-header {
    align-self: stretch;
    height: 88px;
    position: relative;
}

/* ===================== Hero Images ===================== */

.hero-logo {
    width: 365px;
    height: 27px;
    left: 0.08px;
    top: 484.24px;
    position: absolute;
}

.hero-illustration {
    width: 372px;
    height: auto;
    left: -22.92px;
    top: -120px;
    position: absolute;
}

.hero-images-container {
    width: 365px;
    height: 534px;
    left: 0px;
    top: 0px;
    position: absolute;
}

/* ===================== Input Icons ===================== */

.input-icon-email {
    width: 25px;
    height: 25px;
    left: 15.58px;
    top: 13.24px;
    position: absolute;
}

.input-icon-password {
    width: 25px;
    height: 25px;
    left: 13.58px;
    top: 13.24px;
    position: absolute;
}

/* ===================== Checkbox ===================== */

.checkbox-icon {
    width: 28px;
    height: 28px;
    left: 0px;
    top: 0px;
    position: absolute;
}

/* ===================== Terms Row ===================== */

.terms-row {
    max-width: 270px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*max-width: 270px;
  padding-bottom: 6px;
  justify-content: center;
  align-items: flex-start;
  display: inline-flex;*/
}

/* ===================== Social Buttons ===================== */

.social-btn--facebook {
    width: 33px;
    height: 33px;
    left: 144.25px;
    top: 24px;
    position: absolute;
}

.social-btn--google {
    width: 33px;
    height: 33px;
    left: 107.75px;
    top: 24px;
    position: absolute;
}

.social-login-row {
    align-self: stretch;
    height: 60px;
    position: relative;
}

/* ===================== Submit Button ===================== */

.submit-btn {
    width: 294px;
    height: 72px;
    background-image: url(../Images/Component_3.png);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(255, 247, 191, 0.6);
}

.submit-btn:active {
    transform: scale(0.95);
}


.submit-row {
    align-self: stretch;
    padding-right: 9px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

/* ===================== Background Image ===================== */

.bg-image-bottom {
    width: 473px;
    height: 368px;
    left: 115.08px;
    top: 365.24px;
    position: absolute;
}

/* ===================== Input Backgrounds ===================== */

.input-bg {
    width: 278px;
    height: 51px;
    position: relative;
    background-image: url(../Images/InputBackground.png);
}

.input-field-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}

/* ===================== Inputs Group ===================== */

.inputs-group {
    align-self: stretch;
    padding-bottom: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.input-row {
    align-self: stretch;
    padding-bottom: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: flex;
}

/* ===================== Form Body ===================== */

.form-body {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: flex;
}

.form-content {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: flex;
}

.form-panel {
    width: 365px;
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

/* ===================== Card ===================== */

.card-inner {
    align-self: stretch;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.card-wrapper {
    width: 365px;
    height: 546px;
    left: 192px;
    top: 327px;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}

/* ===================== Page Wrapper ===================== */

.page-wrapper {
    width: 1920px;
    height: 0.01px;
    position: relative;
}


/* ===================== Slider Wrapper ===================== */

.slider-wrapper {
    width: 100%;
    height: 566px;
    position: relative;
    background: linear-gradient(180deg, rgba(50, 47, 47, 0.80) 0%, #030303 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== Main Center Image ===================== */

.slider-main-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 77px;
    width: 55%;
    /* بعرض نسبي يتكيف مع الشاشة */
    max-width: 950px;
    height: 400px;
    object-fit: cover;
    border-radius: 50px;
    z-index: 2;
}

/* ===================== Side Cards ===================== */

.slider-side-card {
    position: absolute;
    top: 132px;
    width: 33%;
    max-width: 641px;
    height: 270px;
    background: white;
    overflow: hidden;
    border-radius: 50px;
    z-index: 1;
}

.slider-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.slider-side-card--left {
    left: 0;
    transform: translateX(-30%);
    /* يطل من الجهة اليسرى */
}

.slider-side-card--right {
    right: 0;
    transform: translateX(30%);
    /* يطل من الجهة اليمنى */
}

/* ===================== Navigation Buttons ===================== */

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 10;
    cursor: pointer;
}

.slider-nav-btn--prev {
    left: 26px;
}

.slider-nav-btn--next {
    right: 26px;
    transform: translateY(-50%) rotate(180deg);
}

/* Page wrapper */
.posts-page {
    width: 100%;
    height: 897px;
    position: relative;
    background: #0D1011;
    overflow: hidden;
}

/* Section glass shadow */
.posts-section-shadow {
    width: 100%;
    height: 902.34px;
    left: 0px;
    top: 0px;
    position: absolute;
    text-align: center;
    justify-items: center;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.20) inset, 0px 12px 20px -8px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* Content wrapper (positions the list + footer controls) */
.posts-content-wrapper {
    width: 1418px;
    height: 606.34px;
    left: 350px;
    top: 216px;
    position: absolute;
}

/* Horizontal cards list */
.posts-cards-list {
    width: 1320px;
    height: 506.34px;
    left: 55px;
    top: 0px;
    position: absolute;
    overflow: hidden;
}

/* Section heading */
.posts-section-title {
    left: 950px;
    top: 112px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.posts-section-title__text {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 64px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

/* ─── All-news link ─── */
.posts-all-news-link {
    width: 188px;
    height: 48px;
    left: 615px;
    top: 538.35px;
    position: absolute;
    background: rgba(128, 105, 22, 0.40);
    border-radius: 2px;
    outline: 1px rgba(128, 105, 22, 0.80) solid;
    outline-offset: -1px;
}

.posts-all-news-link__shadow {
    width: 188px;
    height: 48px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10), 0px 12px 12px -8px rgba(0, 0, 0, 0.30);
    border-radius: 2px;
}

.posts-all-news-link__inner {
    width: 79.33px;
    height: 14px;
    left: 54.33px;
    top: 17px;
    position: absolute;
}

.posts-all-news-link__label {
    width: 57.53px;
    height: 24px;
    left: 20px;
    top: -8px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.posts-all-news-link__label-text {
    color: white;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.posts-all-news-link__arrow-wrapper {
    width: 11px;
    height: 11px;
    left: 15.01px;
    top: 11.30px;
    position: absolute;
    transform: rotate(180deg);
    transform-origin: top left;
}

.posts-all-news-link__arrow-fill {
    width: 11px;
    height: 11px;
    left: 0px;
    top: 0px;
    position: absolute;
    overflow: hidden;
}

.posts-all-news-link__arrow-icon {
    width: 11px;
    height: 10.15px;
    left: 0px;
    top: 0.42px;
    position: absolute;
    overflow: hidden;
}

.posts-all-news-link__arrow-vector {
    width: 9.59px;
    height: 9.03px;
    left: 0.74px;
    top: 0.56px;
    position: absolute;
}

/* ─── Prev nav button ─── */
.posts-nav-btn-prev {
    width: 40px;
    height: 40px;
    left: 28px;
    top: 286px;
    position: absolute;
    transform: rotate(180deg);
    transform-origin: top left;
    background: rgba(85, 99, 108, 0.04);
    box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.40) inset;
    border-radius: 2px;
    outline: 1px rgba(255, 255, 255, 0.40) solid;
    outline-offset: -1px;
}

.posts-nav-btn-prev__inner {
    width: 11px;
    height: 11px;
    left: 14.50px;
    top: 14.50px;
    position: absolute;
}

.slider-main-image {
    transition: all 0.5s ease;
}

.slider-main-image:hover {
    transform: translateX(-50%) scale(1.03);
}

.slider-side-card {
    transition: all 0.5s ease;
    opacity: 0.7;
}



.slider-side-card:hover {
    opacity: 1;
    transform: scale(1.05);
}

.server-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.server-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.server-card:hover .server-card__bg {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}


.post-card {
    width: 440px;
    height: 506.34px;
    left: 0px;
    top: 0px;
    position: absolute;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* blur overlay */
.post-card__blur-overlay {
    width: 406px;
    height: 275.84px;
    left: 17px;
    top: 229.50px;
    position: absolute;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.post-card:hover .post-card__blur-overlay {
    backdrop-filter: blur(2px);
}

/* gradient border */
.post-card__gradient-border {
    width: 408px;
    height: 276.84px;
    left: 16px;
    top: 229.50px;
    position: absolute;
    background: linear-gradient(174deg, rgba(255, 255, 255, 0.16) 4%, rgba(255, 255, 255, 0.08) 96%);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-left: 1px rgba(0, 0, 0, 0) solid;
    border-right: 1px rgba(0, 0, 0, 0) solid;
    border-bottom: 1px rgba(0, 0, 0, 0) solid;
}

/* date */
.post-card__date {
    width: 72px;
    left: 319px;
    top: 253px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__date-text {
    color: white;
    font-size: 11.40px;
    font-family: Inter;
    font-weight: 400;
    line-height: 17px;
    word-wrap: break-word;
}

/* title */
.post-card__title {
    width: 349.61px;
    left: 41px;
    top: 277.50px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__title-text {
    color: #FFF7BF;
    font-size: 23.60px;
    font-family: Inter;
    font-weight: 400;
    line-height: 31px;
    word-wrap: break-word;
}

/* body wrapper */
.post-card__body-wrapper {
    width: 358px;
    height: 66px;
    left: 41px;
    top: 348.50px;
    position: absolute;
    overflow: hidden;
}

.post-card__body-text {
    width: 348.51px;
    height: 66px;
    left: 0px;
    top: 0px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__body-text-span {
    color: white;
    font-size: 11px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

/* cta */
.post-card__cta {
    width: 87.97px;
    height: 14px;
    left: 311px;
    top: 431px;
    position: absolute;
}

.post-card__cta-label {
    width: 71.17px;
    left: 5.97px;
    top: 0px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__cta-label-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

.post-card__cta-arrow {
    width: 11px;
    height: 11px;
    left: 11px;
    top: 14.50px;
    position: absolute;
    transform: rotate(180deg);
    transform-origin: top left;
    opacity: 0.85;
}

.post-card__cta-arrow-fill {
    width: 11px;
    height: 11px;
    left: 0px;
    top: 0px;
    position: absolute;
    overflow: hidden;
}

.post-card__cta-arrow-icon {
    width: 11px;
    height: 10.15px;
    left: 0px;
    top: 0.42px;
    position: absolute;
    overflow: hidden;
}

.post-card__cta-arrow-vector {
    width: 9.59px;
    height: 9.03px;
    left: 0.74px;
    top: 0.56px;
    position: absolute;
}

/* meta divider */
.post-card__meta-divider {
    width: 1px;
    height: 12px;
    left: 314.36px;
    top: 256px;
    position: absolute;
    background: white;
}

/* read time */
.post-card__read-time {
    width: 70px;
    left: 239px;
    top: 253px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__read-time-text {
    color: white;
    font-size: 11.60px;
    font-family: Inter;
    font-weight: 400;
    line-height: 17px;
    word-wrap: break-word;
}

/* thumbnail */
.post-card__thumbnail {
    width: 408px;
    height: 300px;
    left: 15px;
    top: -70px;
    position: absolute;
    background: white;
    overflow: hidden;
}

.post-card__thumbnail-img {
    width: 408px;
    height: 300px;
    left: 0px;
    top: 11px;
    position: absolute;
}

/* ════ Card 1 overrides ════ */
.post-card--1 {
    left: 440px;
    top: 0px;
}

.post-card__blur-overlay--1 {
    width: 406px;
    height: 268.84px;
    left: 17px;
    top: 236.50px;
}

.post-card__gradient-border--1 {
    width: 408px;
    height: 269.84px;
    left: 16px;
    top: 236.50px;
    background: linear-gradient(174deg, rgba(255, 255, 255, 0.16) 4%, rgba(255, 255, 255, 0.08) 96%);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-left: 1px rgba(0, 0, 0, 0) solid;
    border-right: 1px rgba(0, 0, 0, 0) solid;
    border-bottom: 1px rgba(0, 0, 0, 0) solid;
}

.post-card__date--1 {
    width: 85px;
    left: 291px;
    top: 24.50px;
}

.post-card__title--1 {
    width: 349.61px;
    left: 25px;
    top: 49px;
}

.post-card__meta-divider--1 {
    left: 289.36px;
    top: 27.50px;
}

.post-card__read-time--1 {
    width: 70px;
    left: 214px;
    top: 24.50px;
}

.post-card__cta--1 {
    width: 87.97px;
    height: 14px;
    left: 297px;
    top: 186.50px;
}

.post-card__cta-label--1 {
    width: 71.17px;
    left: 5.97px;
    top: 0px;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.post-card__cta-arrow--1 {
    width: 11px;
    height: 11px;
    left: 11px;
    top: 14.50px;
    transform: rotate(180deg);
    transform-origin: top left;
    opacity: 0.85;
}

.post-card__thumbnail--1 {
    width: 408px;
    height: 300px;
    left: 16px;
    top: -63px;
}

.post-card__thumbnail-img--1 {
    width: 408px;
    height: 300px;
    left: 0px;
    top: 58px;
}

.post-card__body-wrapper--1 {
    width: 358px;
    height: 66px;
    left: 41px;
    top: 355px;
}

.post-card__body-text--1 {
    width: 349px;
    height: 22px;
    left: 0px;
    top: 0px;
}

.post-card__cta-label-text--2 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

/* ════ Card 2 overrides ════ */
.post-card--2 {
    left: 880px;
    top: 0px;
}

.post-card__blur-overlay--2 {
    width: 406px;
    height: 268.84px;
    left: 17px;
    top: 236.50px;
}

.post-card__gradient-border--2 {
    width: 408px;
    height: 269.84px;
    left: 16px;
    top: 236.50px;
    background: linear-gradient(174deg, rgba(255, 255, 255, 0.16) 4%, rgba(255, 255, 255, 0.08) 96%);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-left: 1px rgba(0, 0, 0, 0) solid;
    border-right: 1px rgba(0, 0, 0, 0) solid;
    border-bottom: 1px rgba(0, 0, 0, 0) solid;
}

.post-card__date--2 {
    width: 85px;
    left: 290px;
    top: 26.50px;
}

.post-card__title--2 {
    width: 349.61px;
    left: 24px;
    top: 51px;
}

.post-card__meta-divider--2 {
    width: 10.36px;
    left: 278px;
    top: 29.50px;
    background: none;
}

.post-card__cta--2 {
    width: 87.97px;
    height: 14px;
    left: 296px;
    top: 183.50px;
}

.post-card__cta-arrow--2 {
    width: 11px;
    height: 11px;
    left: 11px;
    top: 14.50px;
    transform: rotate(180deg);
    transform-origin: top left;
    opacity: 0.85;
}

.post-card__body-wrapper--2 {
    width: 358px;
    height: 66px;
    left: 24px;
    top: 89.50px;
}

.post-card__body-text--2 {
    width: 349px;
    height: 43px;
    left: 0px;
    top: 0px;
}

.post-card__thumbnail--2 {
    width: 408px;
    height: 300px;
    left: 17px;
    top: -63px;
}

.post-card__thumbnail-img--2 {
    width: 408px;
    height: 300px;
    left: 0px;
    top: 54px;
}


/* Outer frame */
.content-section {
    width: 100%;
    height: 914px;
    position: relative;
    background: black;
    overflow: hidden;
}

/* Inner wrapper */
.content-wrapper {
    width: 100%;
    height: 923.25px;
    left: -0.25px;
    top: 0.07px;
    position: absolute;
    overflow: hidden;
}

/* Background image */
.content-bg-image {
    width: 100%;
    height: 923.25px;
    position: relative;
}

/* Section title */
.content-section-title {
    width: 680px;
    height: 120px;
    left: 650px;
    top: 62.93px;
    position: absolute;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-section-title__text {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 64px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
}

/* Cards container */
.content-cards-container {
    width: 1280px;
    height: 575.25px;
    left: 400px;
    top: 248px;
    position: absolute;
}

/* ── Card titles ── */
.content-card__title--discovery {
    width: 344.42px;
    height: 31px;
    left: 264.25px;
    top: 336.93px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-card__title-text--discovery {
    color: #FFF7BF;
    font-size: 23.10px;
    font-family: Inter;
    font-weight: 400;
    line-height: 31px;
    word-wrap: break-word;
}

.content-card__title--story {
    width: 215.73px;
    height: 31px;
    left: 999.25px;
    top: 336.93px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-card__title-text--story {
    color: #FFF7BF;
    font-size: 22.90px;
    font-family: Inter;
    font-weight: 400;
    line-height: 31px;
    word-wrap: break-word;
}

/* ── Card body text ── */
.content-card__body--discovery {
    width: 533.86px;
    height: 50px;
    left: 74.25px;
    top: 389.93px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-card__body-text {
    color: white;
    font-size: 15.40px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

.content-card__body--story {
    width: 542.97px;
    height: 138px;
    left: 672px;
    top: 368.25px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-card__body-text--story {
    color: white;
    font-size: 15.60px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

/* ── CTA buttons ── */
.content-card__cta--discovery {
    width: 168px;
    height: 48px;
    left: 440.25px;
    top: 519.93px;
    position: absolute;
    background: rgba(128, 105, 22, 0.40);
    border-radius: 2px;
    outline: 1px rgba(128, 105, 22, 0.80) solid;
    outline-offset: -1px;
}

.content-card__cta--story {
    width: 168px;
    height: 48px;
    left: 1047.25px;
    top: 526.93px;
    position: absolute;
    background: rgba(128, 105, 22, 0.40);
    border-radius: 2px;
    outline: 1px rgba(128, 105, 22, 0.80) solid;
    outline-offset: -1px;
}

/* CTA shadow (shared) */
.content-card__cta-shadow {
    width: 168px;
    height: 48px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10), 0px 12px 12px -8px rgba(0, 0, 0, 0.30);
    border-radius: 2px;
}

/* CTA label (shared) */
.content-card__cta-label {
    width: 73.81px;
    height: 14px;
    left: 47.19px;
    top: 17px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.content-card__cta-label-text {
    color: white;
    font-size: 13.70px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

/* ── Card images ── */
.content-card__image--discovery {
    width: 548px;
    height: 308.25px;
    left: 672.25px;
    top: -0.07px;
    position: absolute;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.content-card__image--story {
    width: 548px;
    height: 308.25px;
    left: 60.25px;
    top: -0.07px;
    position: absolute;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* ─────────────────────────────────────────────
   Footer — renamed selectors, unchanged values
   ───────────────────────────────────────────── */

/* Outer border bar */
.footer-bar {
    width: 100%;
    min-width: 1000px;
    background: #1C3036;
    padding-top: 1px;
    border-top: 1px var(--color-black-solid, black) solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

/* Inner row */
.footer-inner {
    width: 100%;
    height: 115px;
    position: relative;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
}

/* ── Offers block ── */
.footer-offers {
    width: 390px;
    height: 115.41px;
    left: 385.08px;
    top: -4.76px;
    position: absolute;
}

.footer-offers__label {
    width: 180.01px;
    height: 16px;
    left: 60px;
    top: 21px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-offers__label-text {
    color: var(--color-grey-72, #B7B7B7);
    font-size: 14px;
    font-family: Changa;
    font-weight: 500;
    line-height: 15.40px;
    word-wrap: break-word;
}

.footer-offers__paypal-logo {
    width: 48px;
    height: 59px;
    left: 81px;
    top: 50px;
    position: absolute;
    overflow: hidden;
}

.footer-offers__paypal-icon {
    width: 29.12px;
    height: 35.41px;
    left: 11.73px;
    top: 11.80px;
    position: absolute;
}

.footer-offers__vodafone-logo {
    width: 90px;
    height: 65.02px;
    left: 136px;
    top: 50px;
    position: absolute;
}

/* ── Social block ── */
.footer-social {
    width: 390px;
    height: 89.69px;
    left: 708.08px;
    top: 4.24px;
    position: absolute;
}

.footer-social__label {
    width: 70.97px;
    height: 19px;
    left: 257px;
    top: 21px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-social__label-text {
    color: var(--color-grey-72, #B7B7B7);
    font-size: 17px;
    font-family: Changa;
    font-weight: 500;
    line-height: 18.70px;
    word-wrap: break-word;
}

/* Social button — Twitter */
.footer-social__btn--twitter {
    width: 36px;
    height: 36px;
    left: 244.08px;
    top: 48.69px;
    position: absolute;
    background: #1C0809;
    border-radius: 18px;
}

.footer-social__btn-shadow {
    width: 36px;
    height: 36px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    box-shadow: -7px -2px 15px -3px #292633;
    border-radius: 18px;
}

.footer-social__btn-icon--twitter {
    width: 18.31px;
    height: 18px;
    left: 9px;
    top: 9px;
    position: absolute;
    text-align: right;
    justify-content: center;
}

/* Social button — Facebook */
.footer-social__btn--facebook {
    width: 37.75px;
    height: 36px;
    left: 289.97px;
    top: 48.69px;
    position: absolute;
    background: #1C0809;
    border-radius: 18.44px;
}

.footer-social__btn-shadow--facebook {
    width: 37.75px;
    height: 36px;
    border-radius: 18.44px;
}

.footer-social__btn-icon--facebook {
    width: 16.13px;
    height: 18px;
    left: 11px;
    top: 9px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* Social button — YouTube */
.footer-social__btn--youtube {
    width: 38.25px;
    height: 36px;
    left: 337.61px;
    top: 48.69px;
    position: absolute;
    background: #1C0809;
    border-radius: 18.56px;
}

.footer-social__btn-shadow--youtube {
    width: 38.25px;
    height: 36px;
    border-radius: 18.56px;
}

.footer-social__btn-icon--youtube {
    width: 20.57px;
    height: 18px;
    left: 9px;
    top: 9px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ── Copyright block ── */
.footer-copyright {
    width: 390px;
    height: 62px;
    left: 1296.08px;
    top: 9.24px;
    position: absolute;
}

.footer-copyright__label {
    width: 150.91px;
    height: 16px;
    left: 123px;
    top: 21px;
    position: absolute;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-copyright__label-text {
    color: var(--color-grey-72, #B7B7B7);
    font-size: 14px;
    font-family: Changa;
    font-weight: 500;
    line-height: 15.40px;
    word-wrap: break-word;
}

.footer-copyright__brand {
    width: 68.44px;
    height: 17.14px;
    left: 164.22px;
    top: 47.39px;
    position: absolute;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-copyright__brand-text {
    color: #F6DD75;
    font-size: 12px;
    font-family: Changa;
    font-weight: 400;
    line-height: 17.14px;
    word-wrap: break-word;
}

/* ─────────────────────────────────────────────
   ServerContent — renamed selectors, unchanged values
   ───────────────────────────────────────────── */

/* Page wrapper */
.servers-page {
    width: 100%;
    height: 570px;
    position: relative;
    background: #0D1011;
    overflow: hidden;
}

/* Section glass shadow */
.servers-section-shadow {
    width: 100%;
    height: 902.34px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.20) inset,
        0px 12px 20px -8px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* Cards container */
.servers-cards-container {
    width: 1418px;
    height: 395px;
    left: 320px;
    top: 129px;
    position: absolute;
}

/* Section heading */
.servers-section-title {
    width: 416px;
    height: 48px;
    left: 850px;
    top: 59px;
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.servers-section-title__text {
    color: var(--color-yellow-87, #FFF7BF);
    font-size: 64px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    word-wrap: break-word;
}

/* ── Server card base ── */
.server-card {
    width: 324px;
    height: 326px;
    position: absolute;
    overflow: hidden;
}

.server-card--scorpion {
    left: 751px;
    top: 46px;
}

.server-card--lion {
    left: 343px;
    top: 46px;
}

/* Card background block */
.server-card__bg {
    width: 324px;
    height: 324px;
    left: 0px;
    top: 2px;
    position: absolute;
    background: #303233;
    border-radius: 50px;
}

/* Card title */
.server-card__title {
    width: 132px;
    height: 31px;
    left: 96px;
    top: 245px;
    position: absolute;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.server-card__title--lion {
    left: 78px;
    top: 247px;
}

.server-card__title-text {
    color: #FFF7BF;
    font-size: 40px;
    font-family: Inter;
    font-weight: 700;
    line-height: 31px;
    word-wrap: break-word;
}

/* Card image */
.server-card__image {
    width: 152px;
    height: 228px;
    left: 76px;
    top: 17px;
    position: absolute;
}



/* ════════════════════════════════════════════════
   ① Navbar Items — subtle glow on hover
   ════════════════════════════════════════════════ */

.navbar-item {
    transition: background 0.25s;
    overflow: hidden;
}

.navbar-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 247, 191, 0.07) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.navbar-item:hover::after {
    opacity: 1;
}

.navbar-item:hover .navbar-item-text {
    color: #fff;
}

.navbar-item-text {
    transition: color 0.2s;
}

.navbar-border-left,
.navbar-border-right {
    transition: opacity 0.25s;
    opacity: 0.6;
}

.navbar-item:hover .navbar-border-left,
.navbar-item:hover .navbar-border-right {
    opacity: 1;
}


/* ════════════════════════════════════════════════
   ② CTA Buttons — shimmer sweep + border glow
   ════════════════════════════════════════════════ */

.content-card__cta--discovery,
.content-card__cta--story,
.posts-all-news-link {
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.content-card__cta--discovery::after,
.content-card__cta--story::after,
.posts-all-news-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 247, 191, 0.15),
            transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}

.content-card__cta--discovery:hover::after,
.content-card__cta--story:hover::after,
.posts-all-news-link:hover::after {
    left: 150%;
}

.content-card__cta--discovery:hover,
.content-card__cta--story:hover,
.posts-all-news-link:hover {
    background: rgba(128, 105, 22, 0.60);
    outline-color: rgba(246, 221, 117, 0.9);
    box-shadow: 0 0 18px rgba(246, 221, 117, 0.20);
}

.content-card__cta--discovery:active,
.content-card__cta--story:active,
.posts-all-news-link:active {
    transform: scale(0.97);
}

.submit-btn {
    transition: filter 0.25s, transform 0.2s;
    cursor: pointer;
}

.submit-btn:hover {
    filter: brightness(1.15);
}

.submit-btn:active {
    transform: scale(0.97);
}


/* ════════════════════════════════════════════════
   ③ Server Cards — float + border glow on hover
   ════════════════════════════════════════════════ */

.server-card {
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(.22, .9, .36, 1),
        box-shadow 0.35s;
}

.server-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 1px solid rgba(255, 247, 191, 0);
    transition: border-color 0.3s;
    pointer-events: none;
    z-index: 2;
}

.server-card:hover::before {
    border-color: rgba(255, 247, 191, 0.45);
}

.server-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 247, 191, 0.12);
}

.server-card__image {
    transition: transform 0.35s cubic-bezier(.22, .9, .36, 1);
}

.server-card:hover .server-card__image {
    transform: translateY(-6px) scale(1.08);
}

.server-card__title-text {
    transition: color 0.25s;
}

.server-card:hover .server-card__title-text {
    color: #fff;
}


/* ════════════════════════════════════════════════
   ④ Post Cards — border glow + arrow nudge
   ════════════════════════════════════════════════ */

.post-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.post-card__gradient-border {
    transition: background 0.3s;
}

.post-card:hover .post-card__gradient-border {
    background: linear-gradient(174deg,
            rgba(255, 247, 191, 0.20) 4%,
            rgba(255, 247, 191, 0.10) 96%);
}

.post-card__title-text {
    transition: color 0.25s;
}

.post-card:hover .post-card__title-text {
    color: #fff;
}

.post-card__cta-arrow {
    transition: transform 0.25s;
}

.post-card:hover .post-card__cta-arrow {
    transform: rotate(180deg) translateX(-4px);
}



.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal .post-card:nth-child(1) {
    transition-delay: 0ms;
}

.reveal .post-card:nth-child(2) {
    transition-delay: 80ms;
}

.reveal .post-card:nth-child(3) {
    transition-delay: 160ms;
}

.reveal .server-card--scorpion {
    transition-delay: 0ms;
}

.reveal .server-card--lion {
    transition-delay: 100ms;
}

.reveal .content-card__image--discovery {
    transition-delay: 0ms;
}

.reveal .content-card__image--story {
    transition-delay: 120ms;
}


/* ════════════════════════════════════════════════
   ⑥ Social Buttons in Footer
   ════════════════════════════════════════════════ */

.footer-social__btn {
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.footer-social__btn:hover {
    transform: translateY(-3px) scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.footer-social__btn:active {
    transform: scale(0.95);
}

div.input-autofill-wrapper {
    align-self: stretch;
    padding-top: 1px;
    padding-bottom: 1px;
    background: var(--color-grey-12, #1B1E20);
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
}


/* ── Signup overlay layout ── */
#over_lay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(4px); */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#over_lay.show,
#over_lay.active,
#over_lay[style*="display: flex"] {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

#over_lay {
    backdrop-filter: none !important;
    /* يلغي الـ blur في أول التحميل */
}

.signup-card__bg-mask {
    pointer-events: none;
}

#close-signup {
    z-index: 99999;
    position: absolute;
}

#join-submit {
    z-index: 99999;
    position: absolute;
}

/* إظهاره بـ flex مش block */
#over_lay[style*="display: block"],
#over_lay[style*="display:block"] {
    display: flex !important;
}

/* استيراد ستايل الـ signup card */
.signup-card {
    position: relative;
    width: 628px;
    min-height: 650px;
    background: #16191A;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.12), 0 32px 64px rgba(0, 0, 0, 0.7);
    animation: cardEntrance 0.7s cubic-bezier(.22, .9, .36, 1) both;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

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

.signup-card__bg-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.signup-card__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}

.signup-card__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-card__hero {
    position: relative;
    width: 365px;
    height: 160px;
    margin-top: 24px;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.signup-card__game-logo {
    position: absolute;
    width: 200px;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    animation: logoFloat 4s 1s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.35));
}

.signup-card__border-logo {
    position: absolute;
    width: 340px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    opacity: 0.7;
}

.signup-card__form-panel {
    width: 100%;
    padding: 8px 48px 48px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signup-form__field-row {
    display: flex;
    justify-content: center;
}

.signup-form__input-wrap {
    position: relative;
    width: 100%;
    height: 52px;
    background: #1B1E20;
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.signup-form__input-wrap:focus-within {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.35), 0 0 18px rgba(255, 215, 0, 0.55);
    transform: scale(1.015);
}

.signup-form__icon {
    position: absolute;
    left: 14px;
    width: 22px;
    height: 22px;
    opacity: 0.75;
    pointer-events: none;
    transition: opacity 0.25s;
}

.signup-form__input-wrap:focus-within .signup-form__icon {
    opacity: 1;
    filter: drop-shadow(0 0 4px #FFD700);
}

.signup-form__input {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none;
    outline: none;
    color: #FFF7BF;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    padding: 0 14px 0 44px;
    caret-color: #FFD700;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    pointer-events: all;
}

.signup-form__input::placeholder {
    color: rgba(255, 247, 191, 0.5);
}

.signup-form__input:-webkit-autofill,
.signup-form__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1B1E20 inset !important;
    -webkit-text-fill-color: #FFF7BF !important;
}

.signup-form__submit-row {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.signup-form__submit-btn {
    width: 294px;
    height: 72px;
    background-image: url(../Images/Component_3.png);
    background-color: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    color: #FFFFB4;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(116, 8, 1, 1);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    pointer-events: all;
    transition: filter 0.25s, transform 0.25s;
}

.signup-form__submit-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.04);
}

.signup-form__submit-btn:active {
    transform: scale(0.97);
}

.signup-form__social-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.signup-form__social-label {
    color: #FFF7BF;
    font-size: 13px;
    opacity: 0.8;
}

.signup-form__social-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

.signup-form__social-btn {
    width: 36px;
    height: 36px;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.25s, filter 0.25s;
    pointer-events: all;
}

.signup-form__social-btn:hover {
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.45));
}

/* ===================== Welcome Box After Login ===================== */

.welcome-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    padding: 8px 0;
    font-size: 15px;
    color: #FFF7BF;
    text-align: center;
    direction: rtl;
}

.welcome-name .yellow-color {
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    font-size: 16.5px;
}

/* الجزء الثاني والثالث (مركز الأعضاء وآخر سيرفر) */
.welcome-name:nth-child(2),
.welcome-name:nth-child(3) {
    font-size: 14.5px;
    opacity: 0.95;
    gap: 6px;
}

.welcome-name:nth-child(3) .yellow-color {
    font-size: 17px;
    font-weight: 700;
}

/* زر تسجيل الخروج */
#logout-btn.add-account {
    margin-top: 25px;
    width: 85%;
    padding: 14px 0;
    background: linear-gradient(180deg, #3a2a1f, #1f1610);
    border: 1px solid #FFD700;
    border-radius: 8px;
    color: #FFEB9E;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

#logout-btn.add-account:hover {
    background: linear-gradient(180deg, #5e4a10, #3a2a1f);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    color: #FFF7BF;
}

#logout-btn.add-account:active {
    transform: scale(0.96);
}

#login-form .welcome-name:first-child {
    margin-top: 10px;
}

/* ===== CAROUSEL ONLY ===== */
.carousel {
    position: relative;
}

#carouselExampleFade {
    width: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item img {
    width: 88%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: auto;
    display: block;
}

.carousel-item.active {
    display: block;
}

.carousel-fade .carousel-item {
    opacity: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* .carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
} */

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
}

/* left / right position */
.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* icons inside buttons */
.carousel-control-prev img,
.carousel-control-next img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* يخلي الأيقونة white */
}

.carousel-item img {
    width: 85%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    margin: auto;
    display: block;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.carousel-item.active img:hover {
    transform: scale(1.02);
}

.slider-wrapper {
    width: 100%;
    height: 566px;
    position: relative;

    background: radial-gradient(circle at center, #1a1a1a, #000);

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.slider-wrapper:hover .carousel-control-prev,
.slider-wrapper:hover .carousel-control-next {
    opacity: 1;
}