/* Global Font Settings */
html {
    scroll-padding-top: 80px; /* Account for fixed navbar height */
}

/* Top Banner */
.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

.top-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Banner for Games Pages */
.mobile-banner-image {
    display: none;
    width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    .banner-image {
        display: none !important;
    }

    .mobile-banner-image {
        padding-top : 2rem;
        display: block;
    }
}
* {
    font-family: 'Oxanium', monospace;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .darpha-panel-content span, .darpha-panel-more{
    font-family: 'Oxanium', monospace !important;
}

p, span, div {
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #140C1F;
    margin:0;
}


.fixed-overlay {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index:-100;
}

.fixed-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10rem;
    margin: 0;
    box-sizing: border-box;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2.604rem);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.close-menu-btn {
    display: none !important;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    pointer-events: none;
}

.logo-image {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.tap {
    font-size: clamp(0.75rem, 0.83vw, 1.5rem);
    line-height: 1;
    margin-bottom: -0.125rem;
}

.king {
    font-size: clamp(0.75rem, 0.69vw, 1.25rem);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 4rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.83vw, 1.5rem);
    letter-spacing: 0.0625rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.btn-1 {
    background: #AD1AAF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-1::before {
    content: '';
    position: absolute;
    left: -0.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2%;
    height: 80%;
    background: linear-gradient(to bottom, transparent 15%, #AD1AAF 15%, #AD1AAF 85%, transparent 85%);
    background-clip: padding-box;
    border-right: 0.3rem solid #150d1f;
}

.btn-1::after {
    content: '';
    position: absolute;
    right: -0.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2%;
    height: 80%;
    background: linear-gradient(to bottom, transparent 15%, #AD1AAF 15%, #AD1AAF 85%, transparent 85%);
    background-clip: padding-box;
    border-left: 0.3rem solid #150d1f;
}


.contact-btn:hover {
    background: #7c3aed;
    transform: translateY(-0.125rem);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.hero-content {
    padding-top:10%;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 6rem;

}

.hero-header {
    font-weight: 600;
    font-size: clamp(2.5rem, 3.33vw, 6rem);
    color: white;
    line-height: 1.25;
    margin: 0;
}

.hero-subheader {
    font-weight: 300;
    font-size: clamp(1.125rem, 1.04vw, 2rem);
    color: white;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}


.hero-buttons .btn-1, .hero-buttons .btn-2{
    width:28%;
    height:4.5rem;
}

.hero-buttons .btn-1::before {
    border-right: 0.4rem solid #150d1f;
}

.hero-buttons .btn-1::after {
    border-left: 0.4rem solid #150d1f;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Banner Section */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    mask: linear-gradient(
        to bottom,
        black 0%,
        black 96%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to bottom,
        black 0%,
        black 96%,
        transparent 100%
    );
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Darpha Info Panels */
.darpha-info-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.darpha-panel-icon {
    width: 8.33vw;
    height: 8.33vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.darpha-panel-icon .icon-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.darpha-panel-title {
    color: white;
    font-size: clamp(1.5rem, 1.67vw, 2rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
}

.darpha-panel-content {
    color: white;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1.04vw, 2rem);
    flex-wrap: wrap;
}

.darpha-panel-more {
    color: white;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    text-transform: uppercase;
    font-weight: 600;
}

/* Email Subscription Section */
.email-subscription-section {
    padding: 4rem 2rem;
    text-align: center;
    background-image: url('images/pages/game-pages/subscribe.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.subscription-content {
    margin: 0 auto;
}

.subscription-title {
    color: white;
    font-family: 'Oxanium', monospace;
    font-size: clamp(2.5rem, 3.33vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.subscription-subtitle {
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.2rem, 1.25vw, 1.5rem);
    font-weight: 300;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.email-form-container {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 5vw auto 0;
}

.email-input-wrapper {
    position: relative;
    width: 100%;
}

.email-input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 1px solid #AD1AAF;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0);
    color: white;
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-submit-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem;
    background: #AD1AAF;
    border: 0;
    border-radius: 14px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.email-submit-btn:hover {
    background: #cc00cc;
}

/* Games About Section */
.games-about-section {
    padding: 0 5vw 3vw;
}


.games-about-content {
    margin: 0 auto;
}

.games-about-header {
    color: #F5FBF2;
    font-size: clamp(1.8rem, 1.82vw, 2.2rem);
    font-weight: 400;
    margin: 0 0 2rem 0;
}

.games-about-paragraph {
    color: #B9B9B9;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 2rem;
}

/* Remove border bottom for first paragraph in Game Profile section */
.games-about-content .games-about-paragraph:last-child {
    border-bottom:1px solid #A7A7A7;
}

/* Games Categories Section */
.games-categories-section {
    padding: 4rem 0 0;
}

.games-categories-content {
    margin: 0 auto;
}

.games-categories-header {
    color: #F5FBF2;
    font-size: clamp(1.8rem, 1.82vw, 2.2rem);
    font-weight: 400;
    margin: 0 0 3rem 0;
  padding: 0 5vw;
}

.games-category {
    margin-bottom: 4rem;
}

.games-category-header {
    color: #F5FBF2;
    font-size: clamp(1.8rem, 1.82vw, 2.2rem);
    font-weight: 400;
    margin:0;
  padding: 0 5vw;
}
.games-categories-section {
  width: 100%;

}
/* Simple horizontal scrolling - no animation, no infinite scroll */
.games-categories-section .games-container {
  width: 100%;
    margin-top: 0;
    padding:0;
  overflow: hidden;
  touch-action: pan-x;
  -webkit-touch-callout: none;
}

.games-categories-section .games-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.games-categories-section .games-container:active {
    cursor: grabbing;
}

.games-categories-section .games-scroll {
    display: flex;
    gap: 2rem;
    animation: none !important;
    padding: 0.5rem 5vw;
  width: max-content;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

/* Smaller game cards for games-darpha.html only */
.games-categories-section .game-card {
    width: 20rem;
    height: 24rem;
    flex-shrink: 0;
}

/* Responsive game cards for games-darpha.html */
@media (max-width: 1200px) {
    .games-categories-section .game-card {
        width: 20rem;
        height: 24rem;
    }
}

@media (max-width: 768px) {
    .games-categories-section .game-card {
        width: 14rem;
        height: 18rem;
    }

    .games-categories-section .games-scroll{
        gap:0.8rem;
    }

    .games-categories-section .games-category{
        margin-bottom:2rem;
    }
}

@media (max-width: 480px) {
    .games-categories-section .game-card {
        width: 12rem;
        height: 16rem;
    }

    .games-categories-section .games-scroll{
        gap:0.5rem;
    }


}

@media (max-width: 360px) {
    .games-categories-section .game-card {
        width: 10rem;
        height: 14rem;
    }
}

/* Games Section Divider */
.games-section-divider {
    margin: 4rem 5vw;
    border-bottom: 1px solid #A7A7A7;
}





/* Content Section */
.section-1 {
    text-align: center;
    color: white;
    margin-top:-6%;
}

.section-image {
    width: 100%;
    margin-bottom: 2rem;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-header {
    font-size: clamp(3rem, 4.69vw, 6rem);
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-subheader {
    font-size: clamp(1.125rem, 1.04vw, 2rem);
    background: linear-gradient(to right, #FFFFFF, #F81DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 0 auto;
    max-width: 60rem;
}

/* Games Container */
.games-container {
    margin-top: 3rem;
    overflow-x: scroll;
    overflow-y: hidden;
    padding:2rem 0 ;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}

.games-container::-webkit-scrollbar {
    display: none;
}

.games-container.active {
    cursor: grabbing;
}

.games-scroll {
    display: flex;
    gap: 2.3rem;
    animation: scroll 120s linear infinite;
    width: calc(100% * 2);
}

.game-card {
  text-decoration: none;
    -webkit-user-drag: none;
    flex-shrink: 0;
    width: 20rem;
    height: 24rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 2.604rem;
    border-top: 0.15625rem solid rgba(255, 255, 255, 0.4);
    border-bottom: 0.15625rem solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2.604rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid #8C30F5;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.game-title {
    font-family: 'Oxanium', monospace;
    font-size: clamp(1.125rem, 1.04vw, 2rem);
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0.5rem;
}

.developer {
    font-family: 'Oxanium', monospace;
    font-size: clamp(0.875rem, 0.73vw, 1.5rem);
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}

/* Games Container 2 */
.games-container-2 {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-container-2::-webkit-scrollbar {
    display: none;
}

.games-container-2.active {
    cursor: grabbing;
}

.games-scroll-2 {
    display: flex;
    gap: 2.3rem;
    animation: scroll-reverse 120s linear infinite;
    width: calc(100% * 2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Section 2 */
.section-2 {
    text-align: center;
    color: white;
    margin-top:-3%;
}

.section-header {
    font-size: clamp(3rem, 5.21vw, 8rem);
    color: white;
    margin: 2rem 0;
    font-weight: 500;
}

/* Providers Container */
.providers-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2vw;
    margin-top: 8vw;
    padding: 0 3.5rem;
}


.provider-card {
    position: relative;
    flex-basis: 25%;
    height: 30vw;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.card-1 {
    background: linear-gradient(to top, #1D0031, #FC62FF);
}

.card-2 {
    background: linear-gradient(to top, #164783, #4DFEE0);
}

.card-3 {
    background: linear-gradient(to top,#320D30, #873D81);
}

.card-4 {
    background: linear-gradient(to top,#DF4A00, #FEDC4D);
}

.provider-character {
    position: absolute;
    bottom:0;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.provider-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
    width:93%;
    z-index: 3;

}



.provider-text {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Explore Games Section */
.explore-games-section {
    text-align: center;
    color: white;
    margin-top: 4vw;
}

.explore-header {
    font-size: clamp(3rem, 5.21vw, 8rem);
    color: white;
    margin: 2rem 0 4rem 0;
    font-weight: 600;
}

.game-categories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  text-decoration: none;
}


.category-image-container {
    position: relative;
    width: 100%;
    overflow:hidden;
}

.category-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    font-size: clamp(0.875rem, 0.83vw, 1rem);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fire-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.category-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    pointer-events: none;
    user-select: none;
    border-bottom: 4px solid #8C30F5;
}

.category-title {
    font-size: clamp(2rem, 2.08vw, 2.5rem);
    font-weight: 500;
    color: white;
    margin: 0;
}

.category-count {
    font-size: clamp(1.25rem, 1.25vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Upcoming Events Banner */
.upcoming-events-banner {
    background: url('images/game-type/game-type-bg.png') center/cover no-repeat;
    margin-top:-3%;
    padding: 3rem 2rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 12rem;
    position: relative;
    overflow: hidden;
    mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
}

.games-banner{
    margin-top:0 !important;
}

/* Force remove border bottom from first paragraph in Game Profile */
.games-about-section .games-about-paragraph:first-child {
    border-bottom: none !important;
}

/* About Page Hero Styling */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 10vw 2rem 4vw;
}

.about-hero-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 1.5rem;
}

.about-hero-subheader {
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 300;
    color: #F5FBF2;
    line-height: 1.6;
}

.about-hero-buttons {
    display: flex;
    justify-content: center;
}

.about-learn-more-btn {
    border-radius: 12px;
    background: linear-gradient(#AD1AAF, #480B49);
    border: 1px solid #CC00FF;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top:3vw;
}

/* About Features Section */
.about-features-section {
    padding: 4rem 0 0;
    text-align: center;
}

.about-features-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 3rem;
}

.about-features-container {
    overflow-x: auto;
    padding: 0 7vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.about-features-container::-webkit-scrollbar {
    display: none;
}

.about-features-scroll {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 1rem 0;
}

.about-feature-card {
    flex-shrink: 0;
    width: 520px;
    padding: 5rem 2rem;
    border-radius: 24px;
    background: linear-gradient(to bottom, #140C1F 0%,  #290E33 100%);
    border: 1px solid #5D5D5D;
    text-align: center;
}

.about-feature-header {
    font-size: clamp(1.25rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.about-feature-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    margin-bottom: 1.5rem;
}

.about-feature-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.6;
}

/* About Story Section */
.about-story-section {
    padding: 4rem 0 0;
    background: transparent;
}

.about-story-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-story-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #F5FBF2;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-story-text:last-child {
    margin-bottom: 0;
}

/* About Games Scrolling Section */
.about-games-section {
    padding: 4rem 0;
    background: transparent;
    overflow: hidden;
}

.about-games-columns-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 7vw;
    justify-content: center;
    mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
}

.about-games-column {
    flex: 1;
    height: 600px;
    overflow: hidden;
    width: 200px;
    position: relative;
}

.about-games-scroll {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Scroll animations */
@keyframes about-scroll-up {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes about-scroll-down {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Alternate directions for each column */
.about-col1 .about-games-scroll { animation-name: about-scroll-up; }
.about-col2 .about-games-scroll { animation-name: about-scroll-down; }
.about-col3 .about-games-scroll { animation-name: about-scroll-up; }
.about-col4 .about-games-scroll { animation-name: about-scroll-down; }
.about-col5 .about-games-scroll { animation-name: about-scroll-up; }

/* Game images within about games section */
.about-game-img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 1.5rem;
    object-fit: cover;
    display: block;
}

/* About Vision & Mission Section */
.about-vision-mission-section {
    padding: 5rem 0;
    background: transparent;
}

.about-vision-mission-container {
    margin: 0 auto;
    padding: 0 7vw;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.about-vision-mission-card {
    flex-basis: 50%;
    padding: 5vw;
    background: transparent;
    border-radius: 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(90deg, #d8d8d8, #CB01FD, #d8d8d8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-vision-mission-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 1.5rem;
    margin-top:0;
}

.about-vision-mission-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    margin-bottom: 1.5rem;
}

.about-vision-mission-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #F5FBF2;
    line-height: 1.6;
    margin: 0;
}

/* About Core Values Section */
.about-core-values-section {
    padding: 0rem 0;
    background: transparent;
}

.about-core-values-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 3rem;
    text-align: center;
}

.about-core-values-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 7vw;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.about-core-value-card {
    flex-basis: 25%;
    border-radius: 24px;
    background: linear-gradient(to bottom, #140C1F 0%, #290E33 100%);
    border: 1px solid #5D5D5D;
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-core-value-card .about-feature-header {
    font-size: clamp(1.25rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    margin-top: 0;
}

.about-core-value-card .about-feature-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    margin-bottom: 1.5rem;
}

.about-core-value-card .about-feature-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.6;
}

/* News Page Styles */


.news-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10% 7vw 5rem 7vw;
    text-align: center;
}

.news-hero-content {
    margin: 0 auto;
}

.news-hero-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 1.5rem;
}

.news-hero-subheader {
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 300;
    color: #F5FBF2;
    display: block;
}

/* News Page Cards Section */
.news-page-news-section {
    padding: 0 7vw;
    background: transparent;
}

.news-page-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-page-card {
    position: relative;
    background: url('images/news/newscard-bg.png') center/cover no-repeat;
    backdrop-filter: blur(2.239rem);
    border-radius: 15px;
    border: 0.15625rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.news-page-card::before {
    content: '';
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
}

.news-page-date {
    background: #AD1AAF;
    color: white;
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 0.5rem;
    font-size: clamp(0.875rem, 0.83vw, 1rem);
    font-weight: 500;
    align-self: flex-start;
}

.news-page-main-content {
    display: flex;
    gap: 2rem;
    flex: 1;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.news-page-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: start;
    padding: 2vw 1.5vw;
}

.news-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 1.67vw, 2rem);
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.news-page-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9375rem, 0.78vw, 0.9375rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.news-page-read-more-btn {
    background: #AD1AAF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.875rem, 0.83vw, 1rem);
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-page-read-more-btn:hover {
    background: #8C1A8F;
    transform: translateY(-2px);
}


.news-page-thumbnail {
    flex-basis: 40%;
    flex-shrink: 0;
    width: 100%;
}

.news-page-thumbnail-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Responsive Design for News Page */
@media (max-width: 768px) {
    .news-page-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .news-page-card {
        min-height: auto;
    }

    .news-page-main-content {
        flex-direction: column;
        gap: 1rem;
    }

    .news-page-thumbnail {
        order: -1;
        flex-basis: auto;
        width:60%;
    }


    .news-page-text-content {
        text-align: center;
    }

    .news-page-read-more-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .news-page-news-section {
        padding: 0 4vw;
    }

    .news-page-cards-container {
        gap: 2rem;
    }

}

@media (max-width: 600px) {
    .news-hero {
        padding: 20vw 7vw 5vw;
    }

}


/* News Details Image Section */
.news-details-image-section {
    padding: 0 7vw 3rem;
    background: transparent;
}

.news-details-image-container {
    max-width: 12 2-p00px;
    margin: 0 auto;
    text-align: center;
}

.news-details-ribbon-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-details-image-caption {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #B9B9B9;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Design for News Details Image Section */
@media (max-width: 768px) {
    .news-details-image-section {
        padding: 0 4vw 2rem;
    }

}

@media (max-width: 480px) {
    .news-details-image-section {
        padding: 0 4vw 1.5rem;
    }

    .news-details-ribbon-image {
        margin-bottom: 1.5rem;
    }
}

/* News Details Content Section */
.news-details-content-section {
    padding: 0 7vw 3rem;
    background: transparent;
}

.news-details-content-container {
    margin: 0 auto;
}

.news-details-paragraph {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #B9B9B9;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.news-details-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design for News Details Content */
@media (max-width: 768px) {
    .news-details-content-section {
        padding: 0 4vw 2rem;
    }

    .news-details-paragraph {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .news-details-content-section {
        padding: 0 4vw 1.5rem;
    }

    .news-details-paragraph {
        margin-bottom: 1.5rem;
    }
}

/* News Details Page Styles */

.news-details-hero {
    padding: 10% 7vw 5rem 7vw;
    text-align: center;
}

.news-details-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-details-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-link {
    color: #AD1AAF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #CC00FF;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.5);
}

.news-details-title {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.news-details-subtitle {
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.news-details-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.news-details-date {
    background: #AD1AAF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.news-details-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
}

.news-details-content {
    padding: 0 7vw 5rem 7vw;
}

.news-details-container {
    max-width: 1000px;
    margin: 0 auto;
}

.news-details-image {
    margin-bottom: 3rem;
    text-align: center;
}

.news-details-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-details-article {
    max-width: 800px;
    margin: 0 auto;
}

.news-details-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

.news-details-cta {
    text-align: center;
    margin-top: 3rem;
}

.news-details-back-btn {
    background: linear-gradient(135deg, #AD1AAF 0%, #480B49 100%);
    color: white;
    border: 1px solid #CC00FF;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-details-back-btn:hover {
    background: linear-gradient(135deg, #CC00FF 0%, #AD1AAF 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 0, 255, 0.3);
}

/* Responsive Design for News Details */
@media (max-width: 768px) {
    .news-details-hero {
        padding: 15% 4vw 3rem 4vw;
    }

    .news-details-content {
        padding: 0 4vw 3rem 4vw;
    }

    .news-details-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .news-details-paragraph {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .news-details-hero {
        padding: 20% 4vw 2rem 4vw;
    }

    .news-details-content {
        padding: 0 4vw 2rem 4vw;
    }

    .news-details-image {
        margin-bottom: 2rem;
    }

    .news-details-cta {
        margin-top: 2rem;
    }
}

/* Privacy Policy Page Styles */

.privacy-policy-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10% 7vw 5rem 7vw;
    text-align: center;
}

.privacy-policy-hero-content {
    margin: 0 auto;
}

.privacy-policy-hero-header {
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    color: #F5FBF2;
    margin-bottom: 1.5rem;
}

.privacy-policy-hero-subheader {
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 300;
    color: #F5FBF2;
    display: block;
}

.privacy-policy-section{
    margin-top:5vw;
}

/* Privacy Policy Content Styling */
.privacy-subsection-header {
    color: #F5FBF2;
    font-size: clamp(1.8rem, 1.82vw, 2.2rem);
    font-weight: 400;
    margin: 0 0 2rem 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.privacy-list li {
    color: #B9B9B9;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    color: #F5FBF2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-divider {
    height: 1px;
    background: #A7A7A7;
    margin: 2rem 0;
    width: 100%;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 7vw 0;
    background: transparent;
    width:100%;
    margin: auto;
}

.about-cta-card {
    margin: 0 auto;
    padding: 5rem 3rem;
    border-radius: 24px;
    border: 1px solid #FFFFFF;
    background-image: url('images/news/newscard-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

.about-cta-header {
    font-size: clamp(1.5rem, 4.2vw, 2.625rem);
    font-weight: 700;
    color: #F5FBF2;
    margin: 0;
    max-width: 900px;
}

.about-cta-btn {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #AD1AAF, #480B49);
    border: 1px solid #CC00FF;
    border-radius: 12px;
    color: #F5FBF2;
    font-family: 'Oxanium', monospace;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(173, 26, 175, 0.4);
}

.contact-us-paragraph{
    border-bottom:none !important;
}

/* Responsive Design for About Features */
@media (max-width: 1200px) {
    .about-feature-card {
        width: 450px;
        padding: 3rem 1.5rem;
    }

    .about-features-container {
        padding: 0 3vw;
    }
}

@media (max-width: 768px) {
    .about-features-header {
        font-size: clamp(2rem, 6.4vw, 4rem);
        margin-bottom: 1rem;
    }

    .about-feature-card {
        width: 300px;
        padding: 2.5rem 1.5rem;
    }

    .about-features-container {
        padding: 0 2vw;
    }

    .about-features-scroll {
        gap: 1.5rem;
    }

    .about-feature-header {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 0.75rem;
    }

    .about-feature-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-story-section {
        padding: 3rem 0;
    }

    .about-story-content {
        padding: 0 1.5rem;
    }

    .about-story-header {
        font-size: clamp(2rem, 6.4vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .about-story-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        text-align: center;
    }

    .about-games-section {
        padding: 3rem 0;
    }

    .about-games-columns-container {
        padding: 0 7vw;
        gap: 0.75rem;
    }

    .about-games-column {
        height: 500px;
        width: 160px;
    }

    .about-games-column .game-card {
        min-height: 16rem;
        padding: 1.25rem 0.75rem;
    }

    .about-games-column .game-image {
        border-radius: 2rem;
        margin-bottom: 0.75rem;
    }

    .about-games-column .game-title {
        font-size: clamp(1rem, 2vw, 1.5rem);
        margin-bottom: 0.25rem;
    }

    .about-games-column .developer {
        font-size: clamp(0.75rem, 1.5vw, 1.25rem);
    }

    .about-vision-mission-section {
        padding: 3rem 0;
    }

    .about-vision-mission-container {
        padding: 0 7vw;
        gap: 1.5rem;
        width: 100%;
    }

    .about-vision-mission-card {
        padding: 2.5rem 2rem;
    }

    .about-vision-mission-header {
        font-size: clamp(2rem, 6.4vw, 4rem);
        margin-bottom: 1.25rem;
    }

    .about-vision-mission-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-core-values-section {
        padding: 2rem 0;
    }

    .about-core-values-header {
        margin-bottom: 2rem;
    }

    .about-core-values-container {
        padding: 0 7vw;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .about-core-value-card {
        flex-basis: calc(50% - 0.75rem);
        padding: 2.5rem 1.5rem;
    }

    .about-core-value-card .about-feature-header {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 0.75rem;
    }

    .about-core-value-card .about-feature-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-cta-section {
        padding: 3rem 7vw 0;
    }

    .about-cta-card {
        padding: 4rem 2rem;
        gap: 1.5rem;
    }

    .about-cta-header {
        font-size: clamp(1.25rem, 4.2vw, 2rem);
    }

    .about-cta-btn {
        padding: 0.875rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-features-section {
        padding: 3rem 0;
    }

    .about-feature-card {
        width: 280px;
        padding: 2rem 1.25rem;
    }

    .about-features-container {
        padding: 0 1rem;
    }

    .about-features-scroll {
        gap: 1rem;
    }

    .about-story-section {
        padding:0;
    }

    .about-story-content {
        padding: 0 1rem;
    }

    .about-story-header {
        font-size: clamp(2rem, 6.4vw, 4rem);
        margin-bottom: 1.25rem;
    }

    .about-story-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-games-section {
        padding: 2.5rem 0;
    }

    .about-games-columns-container {
        padding: 0 7vw;
        gap: 0.5rem;
    }

    .about-games-column {
        height: 400px;
        width: 140px;
    }

    .about-games-column .game-card {
        min-height: 14rem;
        padding: 1rem 0.5rem;
    }

    .about-games-column .game-image {
        border-radius: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about-games-column .game-title {
        font-size: clamp(0.875rem, 2.5vw, 1.25rem);
        margin-bottom: 0.25rem;
    }

    .about-games-column .developer {
        font-size: clamp(0.625rem, 2vw, 1rem);
    }

    .about-vision-mission-section {
        padding: 2.5rem 0;
    }

    .about-vision-mission-container {
        flex-direction: column;
        padding: 0 7vw;
        gap: 1.5rem;
    }

    .about-vision-mission-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .about-vision-mission-header {
        font-size: clamp(2rem, 6.4vw, 4rem);
        margin-bottom: 1rem;
    }

    .about-vision-mission-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-core-values-section {
        padding: 1.5rem 0;
    }

    .about-core-values-header {
        margin-bottom: 1.5rem;
    }

    .about-core-values-container {
        padding: 0 7vw;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .about-core-value-card {
        flex-basis: 100%;
        padding: 2rem 1rem;
    }

    .about-core-value-card .about-feature-header {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .about-core-value-card .about-feature-text {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .about-cta-section {
        padding: 2.5rem 7vw 0;
    }

    .about-cta-card {
        width: 95%;
        padding: 3rem 1.5rem;
        gap: 1.25rem;
    }

    .about-cta-header {
        font-size: clamp(1.125rem, 4.2vw, 1.75rem);
    }

    .about-cta-btn {
        padding: 0.75rem 2rem;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
}


.events-left {
    flex-basis: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.sigma-logo {
    height: auto;
    width: 80%;
    object-fit: contain;
}

.events-center {
    flex-basis: 33%;
    text-align: center;
    position: relative;
    z-index: 2;
    align-items: center;
    font-family: 'Oxanium', monospace;
    font-size: clamp(2rem, 2.76vw, 3.3125rem);
    font-weight: 800;
    color: white;
    line-height: 1.3;
    text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.sigma-text {
    color: #E93323;
}

.events-right {
    flex-basis: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.schedule-meeting-btn {
    background: #FF4444;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: clamp(1.5rem, 2.01vw, 2.41625rem);
    font-weight: 500;
    border-radius: 10.32px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: Montserrat, sans-serif;
}

.schedule-meeting-btn:hover {
    background: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(255, 68, 68, 0.3);
}

/* Section 3 */
.section-3 {
    text-align: center;
    color: white;
    margin-top: -3%;
}

.section-subheader {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 400;
    color: white;
    margin: 2rem 0;
    line-height: 1.3;
}

.section-paragraph {
    font-size: clamp(1.5rem, 1.875vw, 2.25rem);
    font-weight: 300;
    color: white;
    margin: 2rem auto 3rem;
    max-width: 60rem;
    line-height: 1.5;
}

/* Latest News Section */
.latest-news-section {
    text-align: center;
    color: white;
    margin-top: -3%;
}

.news-header {
    font-size: clamp(3rem, 5.21vw, 8rem);
    color: white;
    margin: 2rem 0;
    font-weight: 600;
}

  .news-cards-container {
      display: flex;
      gap: 2rem;
      overflow-x: scroll;
      overflow-y: hidden;
      padding: 2rem 0 0 0C;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      user-select: none;
  }

.news-cards-container::-webkit-scrollbar {
    display: none;
}

.news-cards-container.active {
    cursor: grabbing;
}

.news-card {
    position: relative;
    background: url('images/news/newscard-bg.png') center/cover no-repeat;
    backdrop-filter: blur(2.239rem);
    border-radius: 15px;
    border: 0.15625rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 35vw;
    overflow: hidden;
}

.news-card::before{
    content: '';
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index:-1;
}

.news-date {
    background: #AD1AAF;
    color: white;
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 0.5rem;
    font-size: clamp(0.875rem, 0.83vw, 1rem);
    font-weight: 500;
    align-self: flex-start;
}

.news-main-content {
    display: flex;
    gap: 2rem;
    flex: 1;
    padding:0;
}

.news-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: start;
    padding:0 0 1.5rem 1rem;
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 1.67vw, 2rem);
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.news-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9375rem, 0.78vw, 0.9375rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.read-more-btn {
    background: #AD1AAF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.875rem, 0.83vw, 1rem);
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #8C1A8F;
    transform: translateY(-2px);
}

.news-thumbnail {
    flex-basis:40%;
    flex-shrink: 0;
    width: 100%;
}

.thumbnail-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Section 4 - Meeting Form */
.section-4 {
    text-align: center;
    color: white;
    margin-top: -3%;
}

.meeting-container {
    width: 80%;
    padding:1rem 2rem;
    height:80vh;
    margin: auto;
    background: url('images/section-4/rectangle-bg.png') center/cover no-repeat;
    backdrop-filter: blur(1px);
    border-radius: 2.604rem;
    border-top: 0.15625rem solid rgba(255, 255, 255, 0.4);
    border-bottom: 0.15625rem solid rgba(255, 255, 255, 0.4);
    display: flex;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

.meeting-container h1, .meeting-container h2, .meeting-container h3, .meeting-container h4, .meeting-container h5, .meeting-container h6, .meeting-container div, .meeting-container p, .meeting-container span{
    font-family: 'Montserrat', sans-serif !important;
}

.meeting-left-panel {
    background: rgba(133, 26, 175, 0.45);
    backdrop-filter: blur(10px);
    flex: 0 0 40%;
    text-align: left;
    border-radius: 12.82px;
    position: relative;
    overflow:hidden;
}

.meeting-content {
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.eclipse-image {
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    width: 8rem;
    height: 8rem;
    z-index: 1;
    object-fit: contain;
}

.meeting-title {
    font-size: clamp(1.75rem, 1.82vw, 2.1875rem);
    font-weight: 600;
    color: white;
    margin: 0 0 1.5rem 0;
}

.meeting-description {
    font-size: clamp(1.25rem, 1.3vw, 1.5625rem);
    font-weight: 400;
    color: #C9C9C9;
    line-height: 1.2;
    margin: 0;
}

.meeting-right-panel {
    padding: 3vw;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.meeting-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: clamp(0.875rem, 1vw, 1.125rem);
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 0;
    color: white;
    font-size: clamp(1rem, 1.125vw, 1.25rem);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #AD1AAF;
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.send-message-btn {
    background: #AD1AAF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 1.125vw, 1.25rem);
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: 1rem;
}

.send-message-btn:hover {
    background: #8c1a8f;
    transform: translateY(-0.125rem);
}

/* Footer */

.footer {
    background: rgba(0, 0, 0, 0.38);
    padding: 3rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    width: 85vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-left {
    flex: 1;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-anjoun-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 0.83vw, 1rem);
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2rem;
    height: 2rem;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}


.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.all-rights {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 0.83vw, 1rem);
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: clamp(1rem, 0.83vw, 1rem);
    font-family: 'Montserrat', sans-serif !important;
}

.footer-link:hover {
    color: #AD1AAF;
}


.section-3-btn {
    background: #AD1AAF;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width:35%;
    padding:1.2rem 0;
}

.section-3-btn::before {
    content: '';
    position: absolute;
    left: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1%;
    height: 80%;
    background: linear-gradient(to bottom, transparent 15%, #AD1AAF 15%, #AD1AAF 85%, transparent 85%);
    background-clip: padding-box;
    border-right: 0.6rem solid #150d1f;
}

.section-3-btn::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1%;
    height: 80%;
    background: linear-gradient(to bottom, transparent 15%, #AD1AAF 15%, #AD1AAF 85%, transparent 85%);
    background-clip: padding-box;
    border-left: 0.6rem solid #150d1f;
}

/*Play game*/

.iframe-container {
    margin: calc(84px + 20px) 20px 20px;
    height: calc(100dvh - calc(84px + 20px * 2 + 120px));
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-game-title {
  font-family: Lato, sans-serif;
  color: #F5FBF2;
  font-size: clamp(1.8rem, 1.82vw, 2.2rem);
  font-weight: 400;
  text-align: center;
  padding-top: 2rem;
}

.play-game-subtitle {
  font-family: Lato, sans-serif;
  color: #9b9c9d;
  font-size: clamp(1rem, 0.83vw, 1rem);
  font-weight: 400;
  text-align: center;
  padding-bottom: 2rem;
}

/*Product games*/

.product-games-container {
  margin-top: 80px;
}

.product-games-container .games-container {
  cursor: auto;
  overflow-x: unset;
  overflow-y: unset;
}

.product-games-container .games-scroll {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  place-items: center;
}

.product-games-container .games-categories-section {
  padding: 20px;
}

.product-games-container .game-card {
  width: auto;
  display: flex;
  flex-direction: column;
  height: unset;
}

.product-header {
  color: #F5FBF2;
  font-size: clamp(1.8rem, 1.82vw, 2.2rem);
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 1787px) {
  .product-games-container .games-scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 1440px) {
  .product-games-container .games-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1080px) {
  .product-games-container .games-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .product-games-container .games-scroll {
    gap: 0.5rem;
  }

  .product-games-container .games-categories-section {
    padding: 10px;
  }
}

@media only screen and (max-width: 440px) {
  .product-games-container .game-card {
    width: 10.5rem;
  }
}

/* Responsive Design - Consolidated Breakpoints */

/* Tablet (768px - 1200px) */
@media only screen and (max-width: 1200px) {
    .navbar {
        padding: 0.5rem 2rem;
    }

    .nav-links {
        gap: 2rem;
        padding: 1.5rem 2.5rem;
    }

    .hero-content {
        padding-left: 3rem;
        width: 50%;
    }

    .hero-image {
        width: 50%;
    }

    .game-card {
        width: 16rem;
        height: 20rem;
        padding: 1.25rem 0.75rem;
    }

    .games-scroll, .games-scroll-2 {
        gap: 2rem;
    }

    /* Explore Games Tablet */
    .explore-games-section {
        padding: 1rem 2rem 0 2rem;
    }

    /* Latest News Tablet */
    .news-cards-container {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .news-card {
        flex: 0 0 45vw;
    }

    .explore-header {
        font-size: clamp(2.5rem, 6vw, 5rem);
        margin: 1.5rem 0 3rem 0;
    }

    .game-categories-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .category-card {
        padding: 1.75rem 1.25rem;
    }

    .category-title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }

    .category-count {
        font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    }

    /* Upcoming Events Banner Tablet */
    .upcoming-events-banner {
        min-height: auto;
        text-align: center;
        margin:-4rem 0;
    }

    .events-left,
    .events-center,
    .events-right {
        flex-shrink: 0;
        flex-grow: 0;
    }

    .events-center {
        padding: 0;
        font-size: clamp(1.25rem, 3vw, 2rem);
    }
}


@media only screen and (max-width: 900px) {
    /* Latest News Medium Tablet */
    .news-cards-container {
        padding: 1.25rem 0;
        gap: 1.25rem;
    }

    .news-card {
        flex: 0 0 42vw;
    }
}

@media only screen and (max-width: 850px) {
    /* Latest News Tablet - Stack Content */
    .news-main-content {
        flex-direction: column;
        gap: 1rem;
    }

    .news-thumbnail {
        width: 100%;
        order: -1;
    }

    .news-text-content {
        padding: 1rem;
        text-align: center;
    }

    .read-more-btn{
        margin:auto;
    }
}

@media only screen and (max-width: 650px) {


    /* Games Container */
    .game-card {
        width: 14rem;
        height: 18rem;
        padding: 1rem 0.5rem;
        border-radius: 2rem;
    }

    .game-image {
        border-radius: 2rem;
        margin-bottom: 0.75rem;
    }

    .games-scroll, .games-scroll-2 {
        gap: 1.5rem;
    }

    .game-title {
        font-size: clamp(1rem, 2vw, 1.5rem);
        margin-bottom: 0.25rem;
    }

    .developer {
        font-size: clamp(0.75rem, 1.5vw, 1.25rem);
    }



    .content-text, .section-header{
        padding:0 1.2rem;
    }

    .games-container{
        margin-top:1rem;
    }

    /* Section 3 Mobile */


    .section-subheader {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin: 1.5rem 0;
    }

    .section-paragraph {
        font-size: clamp(1.125rem, 3vw, 1.875rem);
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }

    .section-3-btn {
        width:50%;
    }

    .section-3-btn::before, .section-3-btn::after {
        width: 3%;
    }

    /* Explore Games Mobile */
    .explore-games-section {
        padding: 2rem 1rem;
    }

    .explore-header {
        font-size: clamp(2rem, 8vw, 4rem);
        margin: 1rem 0 2rem 0;
    }

    .game-categories-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .category-card {
        padding: 1rem 0.75rem;
        max-width: 25rem;
        margin: 0 auto;
    }

    /* Latest News Mobile */
    .news-cards-container {
        padding: 1rem 0;
        gap: 1rem;
    }

    .news-card {
        flex: 0 0 70vw;
        min-height: auto;
    }

    .news-main-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .news-thumbnail {
        width: 100%;
        order: -1;
    }

    .news-text-content {
        padding: 0.8rem;
    }


    .category-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .category-count {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }

    /* Upcoming Events Banner Mobile */
    .upcoming-events-banner {
        margin: -6rem auto -3rem;
        padding: 1.5rem 0rem;
        border-radius: 1.5rem;
        gap: 0;
    }


    .events-center {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .schedule-meeting-btn {
        padding: 0.75rem 1rem;
        font-size: clamp(0.7rem, 2vw, 1rem);
        border-radius: 1rem;
    }

    /* Section 4 Mobile */

    .meeting-container {
        flex-direction: column;
        margin-top: 2rem;
        border-radius: 1.5rem;
        height:auto;
        width:90%;
    }

    .meeting-left-panel {
        padding: 1rem;
        text-align: center;
        align-items: center;
        flex: none;
    }

    .meeting-right-panel {
        padding: 1rem;
    }

    .meeting-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .meeting-description {
        font-size: clamp(0.875rem, 3vw, 1.25rem);
    }

    .meeting-form {
        gap: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

}

/* Custom breakpoint for form layout */
@media only screen and (max-width: 953px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .send-message-btn {
        align-self: center;
        width: 100%;
        max-width: 20rem;
    }

    .schedule-meeting-btn{
        font-size: clamp(1.2rem, 1.5vw, 2.2rem);
    }
}

/* Small Mobile (600px and below) */
@media only screen and (max-width: 733px) {
    .iframe-container {
        margin: 59px 0 0 0;
        height: calc(100dvh - 59px - 120px);
    }

    .upcoming-events-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 5rem 1rem;
        mask: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
        );
        -webkit-mask: linear-gradient(
            to bottom,
            transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
        );
    }

    .games-banner{
        padding:3rem;
        mask: linear-gradient(
            to bottom,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%
            );
            -webkit-mask: linear-gradient(
                to bottom,
                transparent 0%,
            black 5%,
            black 95%,
            transparent 100%
            );
    }

    .events-left,
    .events-center,
    .events-right {
        flex-basis: auto;
        width: 100%;
    }

    .sigma-logo{
        width:50%;
    }

    .darpha-info-panel {
        padding: 1rem 0.5rem 0;
    }

    .darpha-panel-icon{
        width: 25vw;
        height: 25vw;
    }

    .events-center{
        padding:0 3rem;
        font-size: clamp(1.8rem, 3vw, 3.5rem);
    }

    .schedule-meeting-btn{
        font-size: clamp(1.2rem, 2vw, 3.2rem);
    }



    /* Providers Section */
    .providers-container{
        flex-wrap: wrap;
        padding: 0 2rem;
    }

    .provider-card {
        flex-basis: 48%;
        height: 60vw;
        margin:5vw 0;
    }


    /* Navigation */
    .navbar {
        padding:0.5rem;
        justify-content: space-between;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-image {
        height: 2.3rem;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .navbar .btn-1 {
        order: 1;
        padding:0.5rem;
        margin-right:0.5rem;
    }

    .close-menu-btn {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(20, 12, 31, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .hero-content {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
        gap: 1.5rem;
        order: 2;
        margin-top:-5%;
    }

    .hero-header {
        font-size: clamp(2.3rem, 4vw, 3rem);
        line-height: 1.3;
    }

    .hero-subheader {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons .btn-1 {
        width: auto;
        min-width: 140px;
        height: 3.5rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: auto;
        order: 1;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .footer-content{
        flex-direction: column;
    }

    .footer-right{
        width: 100%;
        align-items: center;
    }

    .footer-left{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .desktop-br{
        display: none;
    }

    /* Games About Section */
    .games-about-section {
        padding:0 8vw 3vw;
    }

    .games-section-divider{
        margin: 0 8vw;
    }

    .games-categories-header, .games-category-header, .games-categories-section .games-scroll {
      padding: 0 8vw;
    }

    .about-hero{
        min-height: 40vh;
        padding-top:10%;
    }

    .product-games-container .games-scroll {
      padding: 0;
    }


}

/* Small Mobile (480px and below) */
@media only screen and (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo-image {
        height: 2rem;
    }

    .nav-links {
        padding: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .btn-1 {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-header {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subheader {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn-1 {
        width: 100%;
        max-width: 280px;
        height: 3rem;
        font-size: 0.9rem;
    }

    .hero-image {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .game-card {
        width: 12rem;
        height: 15rem;
        padding: 0.75rem 0.5rem;
        border-radius: 1.5rem;
    }

    .game-image {
        border-radius: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .games-scroll, .games-scroll-2 {
        gap: 1rem;
    }

    .game-title {
        font-size: clamp(0.875rem, 2.5vw, 1.25rem);
        margin-bottom: 0.25rem;
    }

    .developer {
        font-size: clamp(0.625rem, 2vw, 1rem);
    }


    .provider-label{
        padding:1rem 0;
    }

    /* Section 3 Small Mobile */


    .section-subheader {
        font-size: clamp(1.25rem, 5vw, 2rem);
        margin: 1rem 0;
    }

    .section-paragraph {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin: 1rem auto 1.5rem;
        padding: 0 0.5rem;
    }

    /* Section 4 Small Mobile */
    .section-4 {
        margin-top: 2rem;
    }

    .meeting-container {
        margin-top: 1.5rem;
        border-radius: 1rem;
        padding:0.8rem;
        width:95%;
    }

    .meeting-left-panel,
    .meeting-right-panel {
        padding: 0.5rem;
    }

    .meeting-left-panel{
        margin-bottom:1rem;
    }

    .meeting-title {
        font-size: clamp(1.25rem, 5vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .meeting-description {
        font-size: clamp(0.75rem, 4vw, 1.125rem);
    }

    .meeting-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: clamp(0.875rem, 4vw, 1.125rem);
        padding: 0.5rem 0;
    }

    .send-message-btn {
        padding: 0.75rem 1.5rem;
        font-size: clamp(0.875rem, 4vw, 1.125rem);
        max-width: 100%;
    }

    .footer-content{
        width:100%;
    }

    .footer{
        padding:1.5rem 1rem;
    }

}
