/*css for gradient containers */

.vector-3 {
    position: absolute;
    top: 16%;
    z-index: 2;
    pointer-events: none;
}

.vector-4 {
    position: absolute;
    top: -3%;
    right: -2%;
    transform: rotate(160deg);
    z-index: 2;
    pointer-events: none;
}

.vector-5 {
    position: absolute;
    top: 31%;
    left: -2%;
    width: 120px;
    z-index: 2;
}

.vector-6 {
    position: absolute;
    top: 31%;
    right: 0;
    width: 120px;
    z-index: 2;
}

/*Hero Section CSS */
.hero-section {
    position: relative;
    max-width: 100%;
    height: 728px;
    justify-content: center;
    background-image: url('../images/BG.webp');
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    z-index: 1;
    /* margin-top: 130px;
    z-index: 1;
    padding-top: 80px; */
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    z-index: 4;
    box-sizing: border-box;
}

.hero-content img {
    max-width: 100%;
}

.left-image,
.right-image {
    width: 27%;
}

.center-text {
    width: 60%;
    color: white;

    padding: 0 20px;
}

.welcome-text {
    color: #cacaca;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.center-text h2 {
    font-size: 43px;
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 54px;
    padding: 0.9rem 0 0.5rem 0;
}

.center-text .highlight,
.highlight-osrs {
    color: #feb600;
    text-shadow: 8px 4px 80px rgba(255, 0, 0, 0.925);
}

/*hero cards container*/
.hero-cards-container-wrapper {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 71.96%);
}

.hero-cards-container {
    position: relative;
    display: flex;
    justify-content: center !important;
    align-items: center;
    max-width: 1440px;
    height: 450px;
    padding: 0;
    margin-top: -0.5rem !important;
}

.card__container {
    max-width: 100%;
    position: relative;
    padding: 0;
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 0;
}

.card__article {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0;
    width: 245px !important;
    height: 270px !important;
}

.card__data {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0;
}

.hero-card-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 50px;
    background-color: #111;
    clip-path: polygon(100% 0, 100% 38%, 100% 100%, 0 100%, 24% 2%);
    top: -3.1rem;
    left: 1.3rem;
    border-radius: 10px;
    z-index: 2;
    cursor: pointer;
}

.hero-card-button .border-span-button {
    clip-path: polygon(100% 0, 100% 38%, 100% 100%, 0 100%, 24% 2%);
    border: 2px solid #7f7e7c;
    width: 185px;
    height: 40px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    padding: 21px 0;
    background-color: #111;
}

.hero-card-button .button-text {
    position: absolute;
    font-size: 13px;
    left: 3.5rem;
    top: 0.9rem;
    font-weight: 700;
    font-family: 'TT Supermolot Neue Trl Exp', sans-serif;
    color: rgba(241, 241, 241, 0.9);
}

.button-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18%;
    width: 0;
    height: 0;
    border-right: 30px solid transparent;
    border-top: 13px solid #c5c4c1;
}

.button-bottom-border::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 0;
    height: 0;
    border-right: 30px solid transparent;
    border-top: 40px solid #c5c4c1;
    border-bottom: 40px solid #c5c4c1;
}

.card__article:hover .button-text,
.border-span-button:hover .button-text {
    color: #fcde42;
}

.card__article:hover .hero-card-button .button-top-border::before,
.border-span-button:hover~.button-top-border::before {
    border-top: 13px solid #fcde42;
}

.card__article:hover .hero-card-button .button-bottom-border::before,
.border-span-button:hover~.button-bottom-border::before {
    border-bottom: 40px solid #fcde42;
}

.border-span-button:hover~.card__article,
.border-span-button:hover~.card__article .hero-cards-svg .svg-path {
    fill: url(#hoverGradient);
    stroke: #fcde42;
}

.card__article:hover .svg-path,
.border-span-button:hover~.hero-card-button .svg-path {
    fill: url(#hoverGradient);
}

.card__article:hover .corner::before,
.border-span-button:hover~.card__article .corner::before {
    border-top: 17px solid #fcde42;
}

/* Disable hover effects when .disabled-btn is present inside .hero-card-button */
.card__article .hero-card-button.disabled-btn:hover,
.card__article .hero-card-button.disabled-btn .border-span-button:hover {
    pointer-events: none;
    /* Disables interactions */
}

/* Override hover effects if .disabled-btn exists */
.card__article:hover .hero-card-button.disabled-btn .button-text {
    color: #fff;
    opacity: 0.9;
}

.card__article:hover .hero-card-button.disabled-btn .button-top-border::before {
    border-top: 13px solid #c5c4c1;
}

.card__article:hover .hero-card-button.disabled-btn .button-bottom-border::before {
    border-bottom: 40px solid #c5c4c1;
}

.card__article:hover:has(.hero-card-button.disabled-btn) .svg-path {
    fill: #301f10b0;
}

.card__article:hover:has(.hero-card-button.disabled-btn) .corner::before {
    border-top: 17px solid #7f7e7c;
}

.card__article:hover:has(.hero-card-button.disabled-btn) .hero-cards-svg {
    pointer-events: none;
}

svg .svg-path {
    transition: fill 0.3s ease;
}

.hero-card-image {
    transition: fill 0.3s ease;
}

.hero-cards-svg {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Define common styles for corners */
.corner::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 17px solid transparent;
    border-top: 17px solid #7f7e7c;
}

.top-left-corner::before {
    top: 0;
    left: 18px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 3px;
}

.top-right-corner::before {
    top: 0;
    right: 18px;
    transform: rotate(90deg);
    border-top-left-radius: 10px;
}

/* Bottom-left corner */
.bottom-left-corner::before {
    bottom: 4px;
    left: 17px;
    transform: rotate(-90deg);
    border-top-left-radius: 2px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 10px;
}

/* Bottom-right corner */
.bottom-right-corner::before {
    bottom: 20%;
    right: 18px;
    transform: rotate(180deg);
    border-top-left-radius: 10px;
}

/* Style for the scroll icon */
.scroll-icon {
    display: none;
    position: absolute;
    right: 1%;
    top: 84%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
}

.scroll-icon-bg {
    position: absolute;
    display: none;
    top: 55%;
    right: 0;
    width: 74px;
    height: 256px;
    flex-shrink: 0;
    background: linear-gradient(270deg, #111 0%, rgba(17, 17, 17, 0) 100%);
    z-index: 4;
}

/*why luckycharm css starts */
.whyluckycharm-wrapper {
    background-color: #010101;
    pointer-events: none;
}

.whyluckycharm {
    padding: 80px 10px 40px 10px;
    margin-top: 5.5rem !important;
    pointer-events: none;
}

.why-lucky-charm-heading {
    color: #f1f1f1;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    word-break: unset;
}

.why-lucky-charm-heading span {
    color: #feb600;
}

#why-lucky-charm-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.why-lucky-charm-card {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.why-lucky-charm-card img {
    max-width: 100%;
}

.why-lucky-charm-card-1 {
    margin-top: -20px;
}

.why-lucky-charm-card h3 {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.why-lucky-charm-card h3 span {
    color: #f6b500;
}

.why-lucky-charm-card p {
    color: rgba(241, 241, 241, 0.8);

    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.24px;

    opacity: 0.7;
}

.separator {
    width: 2px;
    height: 300px;
    background-color: #ccc;
    opacity: 0.4;
    background: #644f32;
}

.why-lucky-charm-card-two-images .image-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.why-lucky-charm-card-two-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
}

.why-lucky-charm-pricing-card,
.why-lucky-charm-pricing-card h3 {
    margin-top: -62px;
}

/*luckycharm foundation css*/
.lucky-charm-foundation-wrapper {
    background: linear-gradient(#16110b 100%, #17120c 100%);
}

#lucky-charm-foundation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    color: #fff;
}

.lucky-charm-foundation-gradient-img {
    position: absolute;
    top: 10%;
    right: 0;
    filter: blur(35px);
    width: 498px;
    height: 384px;
    z-index: 2;
}

.lucky-charm-foundation-gradient-img-2 {
    position: absolute;
    top: 0;
    right: -20%;
    opacity: 0.6;
    width: 1049.909px;
    height: 1153.725px;
    transform: rotate(-135deg);
    flex-shrink: 0;
    filter: blur(277px);
    z-index: 2;
}

#lucky-charm-foundation .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#lucky-charm-foundation .text-content {
    flex: 1;
    padding: 20px;
}

#lucky-charm-foundation .text-content h1 {
    color: var(--Base-White, #fff);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

#lucky-charm-foundation .text-content h1 span {
    background: var(--Accent-colors-Primary, linear-gradient(180deg, #febb11 0%, #c0a96e 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#lucky-charm-foundation .text-content {
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    /* Maximum number of lines */
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.18px;
}

#lucky-charm-foundation .image-content {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}

#lucky-charm-foundation .image-content img {
    max-width: 80%;
    height: auto;
    z-index: 2;
}

/* FAQ Question */

/*osrs articles css */
.osrs-articles-wrapper {
    background-color: #16110b;
    position: relative;
    padding-top: 1rem;
}

.osrs-articles-wrapper .scroll-to-right {
    position: absolute;
    top: 42%;
    right: 1%;
    z-index: 1000;
    cursor: pointer;
    display: none;
}

.osrs-articles {
    position: relative;
    max-width: 100%;
    text-align: center;
    padding: 20px;
    padding-bottom: 50px;
    margin-top: 3rem;
}

.osrs-articles-gradient-img {
    position: absolute;
    top: 48%;
    right: 0;
    z-index: 2;
}

.osrs-articles h1 {
    padding: 0 0 10px 0;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
}

.osrs-articles h1 span:not(.osrs-article-blog) {
    color: #feb600;
}

.articles-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    width: 100%;
}

.articles-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 100%;
}

.article-card {
    border-radius: 10px;
    overflow-x: auto;
    width: 396px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 0 0 auto;
    /* z-index: 999; */
}

.article-card .article-links {
    display: block;
    clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 4% 100%, 0 95%);
}

.article-card img {
    cursor: pointer;
    display: block;
    height: auto;
    z-index: 99;
    transition: all 0.3s ease;
}

.article-card .article-banner {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.article-card img:hover,
.small-image:hover {
    opacity: 0.9;
}

.article-content {
    padding: 15px;
    position: relative;
}

.small-image {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #feb600;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;

    left: 0;
}

.article-content h2 {
    color: #f1f1f1 !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 100 !important;
    font-weight: 100;
    line-height: 130% !important;
    margin-left: 30px;
    font-family: 'Luckiest Guy cursive';
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    -webkit-text-fill-color: white;
}

.article-content h2:hover {
    opacity: 0.8;
}

.article-content p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: start;
    font-size: 14px;
    font-style: normal;
    margin-left: 30px;
    font-weight: 500;
    line-height: 140%;
}

.article-meta {
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-left: 30px;
    opacity: 0.45;
}

.articles-scroll-bg {
    position: absolute;
    display: none;
    bottom: 45%;
    right: 0;
    width: 74px;
    height: 101px;
    background: linear-gradient(90deg, rgba(2, 10, 2, 0) 0%, #020d02 100%);
    z-index: 999;
}

.articles-scroll-to-right {
    top: 45% !important;
}

.nomalText p,
.nomalText a,
.nomalText {
    font-family: 'Epilogue', sans-serif;
    font-weight: 500;
    color: white;
}