/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 120px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu > * {
    margin: 0 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.chevron {
    font-size: 12px;
    display: inline-block;
}

.dropdown {
    position: relative;
}

.btn-get-started {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: auto;
}

.btn-get-started:hover {
    background-color: #333333;
}

.nav-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.2;
    mix-blend-mode: overlay;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
    text-align: center;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom:0px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 1072px;
    padding: 0 20px;
}

/* Next Section */
.next-section {
    width: 100%;
    background-color: #000000;
    position: relative;
    padding: 80px 20px 40px;
    min-height: calc(100vh * 2.5 / 3);
}

.section-header {
    max-width: 1440px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.grid-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 137px;
    column-gap: 22px;
    row-gap: 22px;
    width: 100%;
    height: 100%;
}

.grid-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 114px;
}

.card-merge-3 {
    grid-row: span 3;
    height: auto;
}

.card-merge-2 {
    grid-row: span 2;
    height: auto;
}

.card-merge-4 {
    grid-column: span 4;
}

.grid-container-bottom {
    max-width: 1440px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    column-gap: 22px;
    row-gap: 22px;
    width: 100%;
}

.card-merge-4-bottom {
    grid-column: span 4;
}

/* Athlete Cards */
.grid-container-bottom .athlete-card {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 !important;
    height: auto;
    background-color: transparent !important;
    border-radius: 0;
}

.athlete-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.athlete-category {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.athlete-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.athlete-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

/* CTA Card */
.grid-container-bottom .cta-card {
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0;
}

.cta-content {
    text-align: center;
    width: 100%;
}

.cta-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0;
    padding: 12px 40px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

/* Compete and Win Big Section */
.compete-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.compete-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.compete-content {
    display: flex;
    flex-direction: column;
}

.compete-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 0.91em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.compete-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.07em;
    color: #000000;
    margin-bottom: 20px;
}

.compete-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.07em;
    color: #000000;
    margin-bottom: 30px;
}

.compete-steps {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.07em;
    color: #000000;
    margin-bottom: 40px;
    padding-left: 20px;
}

.compete-steps li {
    margin-bottom: 15px;
}

.compete-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 7px 6px;
    width: 188px;
    height: 29px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 0.91em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.compete-button:hover {
    background-color: #333333;
}

.compete-disclaimer {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.32em;
    color: #B1B1B1;
    letter-spacing: -0.01em;
}

.compete-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
}

.phone-image {
    width: auto;
    height: auto;
    max-width: 65%;
    display: block;
    margin: 0 auto;
}

/* Section with Background */
.section-with-bg {
    width: 100%;
    height: 110vh;
    background-image: url('../images/section4background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section 5 with Background */
.section-5-with-bg {
    width: 100%;
    height: 110vh;
    background-image: url('../images/section5background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-container {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gradient-card {
    position: relative;
    border-radius: 20px;
    height: 100%;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 50%);
    border-radius: 20px;
    z-index: 1;
}

.card-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 19px;
    padding: 40px 40px 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    z-index: 3;
}

.card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/card-texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.2;
    mix-blend-mode: overlay;
    border-radius: 19px;
    z-index: 1;
    pointer-events: none;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.card-logo {
    flex-shrink: 0;
}

.logo-img {
    width: auto;
    max-height: 80px;
    width: auto;
    display: block;
}

.card-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.card-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.card-button:hover {
    background-color: #f0f0f0;
}

.card-button-wbb {
    background-color: rgba(44, 44, 44, 0.45);
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0px;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-button-wbb:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 0 -40px 0 -40px;
    padding: 0 40px 0 40px;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    overflow: hidden;
    height: 147px;
    position: relative;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid #ffffff;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    overflow: hidden;
    height: 147px;
    position: relative;
    isolation: isolate;
}

/* Grid items with app store buttons or image placeholders should not have the image overlay */
.grid-item:has(.app-store-buttons)::before,
.grid-item:has(.grid-image-placeholder)::before {
    display: none;
}

/* Download App Card Special Layout */
.grid-item-download-app {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 20px;
}

.grid-item-download-app::before {
    display: none;
}

.grid-item-download-app .grid-text-top {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    margin-bottom: 20px;
    z-index: 3;
}

.grid-item-download-app .grid-image-full {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item-download-app .grid-image-full .grid-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    display: block;
}

.grid-item .app-store-buttons,
.grid-item .grid-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.grid-item .grid-text {
    z-index: 3;
}

.grid-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.grid-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 2;
    border-radius: 12px 0 0 12px;
    border-right: 1px solid #ffffff;
    pointer-events: none;
    will-change: backdrop-filter;
}

.grid-item.merged-row {
    grid-column: span 2;
}

.grid-item.merged-row::before {
    width: 70%;
}

.grid-text {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    z-index: 3;
    line-height: 1.2;
    max-width: calc(50% - 40px);
}

.grid-item.merged-row .grid-text {
    max-width: calc(70% - 40px);
    font-size: 32px;
}

.text-large {
    font-size: 48px;
    display: block;
    line-height: 1;
}

/* Best Bowler Card Styles */
.best-bowler-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.best-bowler-f {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: #ffffff;
    line-height: 1;
}

.best-bowler-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: none;
}

/* WPS Logo Styles */
.wps-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.wps-logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.wps-logo-subtext {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.grid-text-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.2;
}

.grid-item.merged-row .grid-text-title {
    font-size: 32px;
}

.grid-text-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.2;
}

.grid-text-desc {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    text-transform: none;
    opacity: 0.95;
    margin-top: 8px;
    line-height: 1.4;
}

.grid-item.merged-row .grid-text-desc {
    font-size: 20px;
}

.grid-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 147px;
    position: relative;
    z-index: 1;
}

.grid-item.merged-row .grid-image-placeholder {
    min-height: 200px;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.app-store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.app-store-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.app-store-text {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section 6 - Our Sporting Philosophy */
.section-6-philosophy {
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/section7background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1.8fr;
    gap: 80px;
    align-items: start;
    padding: 0 clamp(20px, 4vw, 60px);
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 40px;
}

.philosophy-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.philosophy-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.philosophy-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.philosophy-tagline {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.philosophy-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 60px;
}

.philosophy-compass {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: auto;
    height: auto;
    max-width: 150px;
    opacity: 0.9;
    z-index: 10;
}

.philosophy-panels {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.philosophy-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.panel-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}
.panel-headline {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    margin: 10px 0;
    letter-spacing: -0.01em;
}

.panel-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.panel-description a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .compete-container {
        flex-direction: column;
    }
    
    .compete-content {
        flex: 1;
        max-width: 100%;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-panels {
        flex-direction: row;
        gap: 20px;
    }

    .philosophy-panel {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .philosophy-panels {
        flex-direction: column;
    }

    .philosophy-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.philosophy-title {
        font-size: 40px;
    }

    .philosophy-text {
        font-size: 20px;
    }

    .panel-title {
        font-size: 20px;
    }

    .panel-description {
        font-size: 12px;
    }
}

/* Section 7 - Foundation for The Future of Sports */
.ffs-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.ffs-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ffs-image-container {
    width: 90%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.ffs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.ffs-content {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

.ffs-question {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 30px;
}

.ffs-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    color: #000000;
    margin-bottom: 50px;
}

.ffs-acronym-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ffs-acronym {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 1;
    color: #0000FF;
    margin: 0;
}

.ffs-arrow {
    width: 24px;
    height: 24px;
    color: #0000FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ffs-arrow svg {
    width: 100%;
    height: 100%;
    fill: #0000FF;
}

.ffs-full-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: #000000;
    margin: 0;
}

/* Responsive for FFS Section */
@media (max-width: 1200px) {
    .ffs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ffs-image-container {
        min-height: 350px;
    }

    .ffs-acronym {
        font-size: 58px;
    }
}

@media (max-width: 768px) {
    .ffs-question {
        font-size: 22px;
    }

    .ffs-description {
        font-size: 14px;
    }

    .ffs-acronym {
        font-size: 46px;
    }

    .ffs-full-name {
        font-size: 18px;
    }
}

/* CTA Section */
.cta-section {
    width: 100%;
    background-color: #0000FF;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.cta-button {
    background-color: #ffffff;
    color: #0000FF;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 32px;
    }
}

/* Last Section with Background */
.last-section {
    width: 100%;
    min-height: 100vh;
    /* FSP core blue background similar to home hero */
    background-color: #0000FF;
    overflow: hidden;
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grain texture overlay, matching home-page style */
.last-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../../src/assets/images/hero-texture-56586a.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.last-section-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 1;
}

.last-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.last-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.last-section-title-line {
    display: block;
}

.last-section-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.last-section-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    grid-auto-rows: 1fr;
}

.last-section-card {
    background-color: rgba(255, 255, 255, 0.514);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #ffffff;
  
    min-height: 180px;
}

.last-section-card-image {
    width: 40%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.last-section-card-image .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.last-section-card-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.last-section-card-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 15px 0;
    letter-spacing: -0.01em;
}

.last-section-card-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.last-section-cta {
    text-align: center;
    margin-top: 60px;
}

.last-section-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.last-section-button:hover {
    background-color: #333333;
}

.last-section-card.card-row1 {
    grid-column: span 3;
}

.last-section-card.card-row2 {
    grid-column: span 2;
}

/* Responsive for Last Section */
@media (max-width: 768px) {
    .last-section-header {
        margin-bottom: 40px;
    }

    .last-section-title {
        font-size: 40px;
    }

    .last-section-subtitle {
        font-size: 18px;
    }

    .last-section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .last-section-card.card-row1,
    .last-section-card.card-row2 {
        grid-column: span 1;
        flex-direction: column;
    }

    .last-section-card-image {
        width: 100%;
        height: 200px;
    }

    .last-section-card-content {
        width: 100%;
        padding: 30px 20px;
    }

    .last-section-card-title {
        font-size: 20px;
    }

    .last-section-card-description {
        font-size: 14px;
    }

    .last-section-cta {
        margin-top: 40px;
    }
}

/* Footer */
.footer {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.footer-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.footer-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-separator {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin: 0 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-phone {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-email {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.footer-address-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.footer-copyright {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    text-align: right;
    margin-top: 20px;
}

.scroll-to-top {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.scroll-to-top:hover {
    background-color: #aaaaaa;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-address {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-address {
        grid-column: span 1;
    }

    .scroll-to-top {
        top: 40px;
        right: 20px;
        width: 35px;
        height: 35px;
    }

    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }

    .footer-copyright {
        text-align: left;
    }
}

/* World's Best Hero Section */
.worlds-best-hero {
    width: 100%;
    min-height: 100vh;
    background-color: #0000FF;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.worlds-best-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.worlds-best-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: overlay;
    z-index: 0;
}

.worlds-best-texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: lighten;
    z-index: 1;
}

.worlds-best-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.worlds-best-content {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.worlds-best-f-dash {
    width: auto;
    height: 60px;
    margin-bottom: 20px;
    display: block;
    align-self: flex-start;
}

.worlds-best-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.worlds-best-title-line {
    display: block;
}

.worlds-best-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 40px;
}

.worlds-best-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.worlds-best-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #ffffff;
}

.worlds-best-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-get-started-hero {
    background-color: #ffffff;
    color: #0000FF;
    border: 1px solid #0000FF;
    border-radius: 30px;
    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-started-hero:hover {
    background-color: #f0f0f0;
}

.btn-download-app-hero {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download-app-hero:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-download-app {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: auto;
}

.btn-download-app:hover {
    background-color: #333333;
}

.app-store-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    transition: opacity 0.3s ease;
}

.app-badge:hover {
    opacity: 0.8;
}

.badge-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-text {
    display: block;
}

.hero-mockup-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive for World's Best Hero */
@media (max-width: 1200px) {
    .worlds-best-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 40px 60px;
    }

    .worlds-best-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .worlds-best-container {
        padding: 80px 20px 40px;
    }

    .worlds-best-f-dash {
        height: 45px;
        margin-bottom: 16px;
    }

    .worlds-best-title {
        font-size: 40px;
    }

    .worlds-best-subtitle {
        font-size: 18px;
    }

    .worlds-best-buttons {
        flex-direction: column;
    }

    .btn-get-started-hero,
    .btn-download-app-hero {
        width: 100%;
    }
}

/* Carousel Section */
.carousel-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.carousel-header {
    max-width: 1440px;
    margin: 0 auto 10px;
    text-align: center;
}

.carousel-badge {
    background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    cursor: pointer;
}

.carousel-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.carousel-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-link {
    color: #0066FF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.carousel-container {
    width: 100%;
    margin: 0;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 0;
    min-height: 600px;
}

.carousel-slide {
    position: relative;
    flex: 0 0 50%;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    filter: blur(3px);
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slide.prev {
    order: 1;
    margin-right: -25%;
}

.carousel-slide.prev .carousel-image {
    margin-left: -50%;
}

.carousel-slide.active {
    order: 2;
    opacity: 1;
    transform: scale(1.47);
    z-index: 3;
    filter: blur(0);
    flex: 0 0 50%;
    margin: 0;
}

.carousel-slide.next {
    order: 3;
    margin-left: -25%;
}

.carousel-slide.next .carousel-image {
    margin-right: -50%;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


.carousel-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 0px;
    padding: 0 40px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #000000;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #000000;
}

.carousel-participate-btn {
    background-color: #0066FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-participate-btn:hover {
    background-color: #0052CC;
}

/* Responsive for Carousel */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 25%;
    }

    .carousel-slide.active {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .carousel-title {
        font-size: 40px;
    }

    .carousel-description {
        font-size: 16px;
    }

    .carousel-wrapper {
        padding: 40px 0;
        min-height: 400px;
    }

    .carousel-slide {
        flex: 0 0 20%;
        opacity: 0.3;
        transform: scale(0.7);
    }

    .carousel-slide.active {
        flex: 0 0 60%;
    }

    .carousel-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-participate-btn {
        width: 100%;
    }
}

/* World's Best Bowler Section */
.bowler-section {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.bowler-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/worlds-best-bowler-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.bowler-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.bowler-container {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.bowler-content {
    max-width: 600px;
    color: #ffffff;
}

.bowler-category {
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bowler-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.bowler-title-line {
    display: block;
}

.bowler-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 550px;
}

.bowler-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bowler-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;

    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bowler-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.bowler-btn-participate {
    background-color: rgba(0, 0, 0, 0.3);
}

.bowler-btn-participate:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive for Bowler Section */
@media (max-width: 1200px) {
    .bowler-container {
        padding: 0 40px;
    }

    .bowler-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .bowler-section {
        height: 60vh;
    }

    .bowler-container {
        padding: 0 20px;
    }

    .bowler-title {
        font-size: 40px;
    }

    .bowler-description {
        font-size: 16px;
    }

    .bowler-buttons {
        flex-direction: column;
    }

    .bowler-btn {
        width: 100%;
    }
}

/* World's Best Squash Player Section */
.squash-section {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.squash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/worlds-best-squash-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.squash-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.squash-container {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.squash-content {
    max-width: 600px;
    color: #ffffff;
}

.squash-category {
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.squash-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.squash-title-line {
    display: block;
}

.squash-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 550px;
}

.squash-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.squash-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.squash-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.squash-btn-explore {
    background-color: rgba(0, 0, 0, 0.3);
}

.squash-btn-explore:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.squash-btn-participate {
    background-color: rgba(0, 0, 0, 0.3);
}

.squash-btn-participate:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive for Squash Section */
@media (max-width: 1200px) {
    .squash-container {
        padding: 0 40px;
    }

    .squash-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .squash-section {
        height: 60vh;
    }

    .squash-container {
        padding: 0 20px;
    }

    .squash-title {
        font-size: 40px;
    }

    .squash-description {
        font-size: 16px;
    }

    .squash-buttons {
        flex-direction: column;
    }

    .squash-btn {
        width: 100%;
    }
}

/* World's Best Cricket Player Section */
.cricket-section {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.cricket-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/worlds-best-cricket-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cricket-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.cricket-container {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.cricket-content {
    max-width: 600px;
    color: #ffffff;
}

.cricket-category {
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cricket-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cricket-title-line {
    display: block;
}

.cricket-description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 550px;
}

.cricket-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cricket-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cricket-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.cricket-btn-explore {
    background-color: rgba(0, 0, 0, 0.3);
}

.cricket-btn-explore:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.cricket-btn-participate {
    background-color: rgba(0, 0, 0, 0.3);
}

.cricket-btn-participate:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive for Cricket Section */
@media (max-width: 1200px) {
    .cricket-container {
        padding: 0 40px;
    }

    .cricket-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .cricket-section {
        height: 60vh;
    }

    .cricket-container {
        padding: 0 20px;
    }

    .cricket-title {
        font-size: 40px;
    }

    .cricket-description {
        font-size: 16px;
    }

    .cricket-buttons {
        flex-direction: column;
    }

    .cricket-btn {
        width: 100%;
    }
}

/* World's Best Club Section */
.club-section {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.club-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/water-pong.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.club-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.club-container {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.club-content {
    max-width: 600px;
    color: #ffffff;
}

.club-category {
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.club-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.club-title-line {
    display: block;
}

.club-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.club-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.club-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.club-btn-explore {
    background-color: rgba(0, 0, 0, 0.3);
}

.club-btn-explore:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.club-btn-participate {
    background-color: rgba(0, 0, 0, 0.3);
}

.club-btn-participate:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive for Club Section */
@media (max-width: 1200px) {
    .club-container {
        padding: 0 40px;
    }

    .club-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .club-section {
        height: 60vh;
    }

    .club-container {
        padding: 0 20px;
    }

    .club-title {
        font-size: 40px;
    }

    .club-buttons {
        flex-direction: column;
    }

    .club-btn {
        width: 100%;
    }
}

/* Redeem Your FSP Champion Points & Win Big Section */
.redeem-win-big-section {
    background: #fff;
    padding: 60px 40px 80px;
    position: relative;
}

.redeem-win-big-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(0px, 2vw, 20px);
}

.redeem-win-big-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.redeem-win-big-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #000;
    margin-bottom: 12px;
}

.redeem-win-big-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.0145em;
    color: #4D4D4D;
    text-align: center;
    margin-bottom: 12px;
    font-style: italic;
}

.redeem-win-big-body {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.017em;
    color: #000;
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.redeem-win-big-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}

.redeem-grid-row {
    display: grid;
    gap: 24px;
    margin-bottom: 0;
}

.redeem-grid-row:first-child {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.redeem-grid-row:last-child {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

.redeem-card-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.redeem-grid-row:first-child .redeem-card-item {
    height: 498px;
}

.redeem-grid-row:last-child .redeem-card-item {
    height: 325px;
}

.redeem-card-image {
    width: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.redeem-grid-row:first-child .redeem-card-image {
    height: 391px;
}

.redeem-grid-row:last-child .redeem-card-image {
    height: 250px;
}

.redeem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.redeem-card-footer {
    background: #0000FF;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 75px;
}

.redeem-grid-row:first-child .redeem-card-footer {
    min-height: 107px;
}

.redeem-card-text {
    font-family: "Archivo", system-ui, -apple-system, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
    margin: 0;
    flex: 1;
}

.redeem-grid-row:last-child .redeem-card-text {
    font-size: 20px;
}

.btn-join-now {
    background: #fff;
    color: #0000FF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.019em;
    padding: 7px 40px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-join-now:hover {
    opacity: 0.9;
}

.redeem-win-big-bottom {
    display: grid;
    grid-template-columns: 1fr 413px;
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
}

.redeem-bottom-image {
    width: 100%;
    height: 224px;
    overflow: hidden;
}

.redeem-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.redeem-bottom-cta {
    background: #0000FF;
    padding: 61px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    height: 224px;
}

.redeem-bottom-text {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
    text-align: center;
    margin: 0;
}

.redeem-bottom-cta .btn-join-now {
    width: 373px;
    text-align: center;
    justify-content: center;
    padding: 7px 0;
}

/* Responsive for Redeem Section */
@media (max-width: 1200px) {
    .redeem-grid-row:last-child {
        grid-template-columns: repeat(2, 1fr);
    }
    .redeem-grid-row:last-child .redeem-card-item:last-child {
        grid-column: 1 / -1;
        max-width: 413px;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    .redeem-win-big-section {
        padding: 60px 24px 80px;
    }
    .redeem-grid-row:first-child {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .redeem-grid-row:last-child {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .redeem-grid-row:first-child .redeem-card-item {
        width: 100%;
        max-width: 632px;
        margin: 0 auto;
        height: auto;
    }
    .redeem-grid-row:last-child .redeem-card-item {
        width: 100%;
        max-width: 413px;
        margin: 0 auto;
        height: auto;
    }
    .redeem-grid-row:first-child .redeem-card-image {
        height: auto;
        min-height: 250px;
    }
    .redeem-grid-row:last-child .redeem-card-image {
        height: auto;
        min-height: 200px;
    }

    .redeem-win-big-bottom {
        grid-template-columns: 1fr;
    }

    .redeem-bottom-cta .btn-join-now {
        width: 100%;
        max-width: 373px;
    }
}

@media (max-width: 480px) {
    .redeem-win-big-section {
        padding: 40px 16px 60px;
    }
    .redeem-win-big-header {
        margin-bottom: 32px;
        padding-top: 20px;
    }
    .redeem-card-text {
        font-size: 20px;
    }
    .redeem-grid-row:last-child .redeem-card-text {
        font-size: 18px;
    }
    .redeem-bottom-text {
        font-size: 18px;
    }
}

/* Redeem Your Passion Points Section */
.passion-points-section {
    background: #fff;
    padding: 80px 60px 100px;
}

.passion-points-container {
    display: grid;
    grid-template-columns: 728px 1fr;
    gap: 50px;
    max-width: 100%;
    margin: 0 auto;
}

.passion-points-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 0.9375;
    letter-spacing: -0.025em;
    color: #4D4D4D;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.passion-points-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
    color: #000;
    margin-bottom: 15px;
}

.passion-points-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #4D4D4D;
    margin-bottom: 24px;
    max-width: 424px;
}

.btn-start-earning-passion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0000FF;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.56;
    letter-spacing: -0.024em;
    padding: 7px 32px;
    border-radius: 20px;
    text-decoration: none;
    width: 197px;
    border: 1px solid #0000FF;
    transition: all 0.3s ease;
}

.btn-start-earning-passion:hover {
    background: #0000FF;
    color: #fff;
}

.passion-points-right {
    display: flex;
    flex-direction: column;
    gap: 67px;
}

.partners-row {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    color: #000;
    margin: 0;
}

.nav-arrows {
    display: flex;
    gap: 6px;
}

.nav-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0000FF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.nav-arrow:hover {
    opacity: 0.8;
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.partner-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 229px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive for Passion Points Section */
@media (max-width: 1400px) {
    .passion-points-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .passion-points-section {
        padding: 60px 20px 80px;
    }

    .passion-points-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .passion-points-title {
        font-size: 32px;
    }

    .passion-points-subtitle {
        font-size: 18px;
    }

    .passion-points-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .btn-start-earning-passion {
        width: 100%;
    }

    .partners-cards {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 180px;
    }
}

/* Big Prizes & Daily Wins Section */
.big-prizes-section {
    background: #fff;
    padding: 40px 0 80px 0;
}

.big-prizes-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.big-prizes-title {
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 50px;
    padding: 0 20px;
}

.big-prizes-ticker-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    padding: 0;
}

.big-prizes-ticker {
    display: flex;
    gap: 20px;
    animation: scroll-ticker 30s linear infinite;
    width: fit-content;
}

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

.prize-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 40px;
    min-height: 300px;
    flex-shrink: 0;
    width: 400px;
}

.prize-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.prize-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.prize-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: left;
    width: 100%;
    padding-bottom: 0;
}

.prize-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 10px;
}

.prize-card-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.big-prizes-cta {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.download-app-heading {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0 0 40px 0;
    text-align: center;
}

.app-store-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.app-store-badges-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

.app-store-badge-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.app-store-badge-link:hover {
    opacity: 0.8;
}

.app-store-badges-image {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code-image {
    width: 170px;
    height: 170px;
    display: block;
    object-fit: contain;
}

.qr-code-label {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-align: center;
}

.btn-download-app-prizes {
    display: inline-block;
    background: #0000FF;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;

    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-download-app-prizes:hover {
    opacity: 0.9;
}

/* Responsive for Big Prizes Section */
@media (max-width: 1024px) {
    .prize-card {
        width: 350px;
    }
    
    @keyframes scroll-ticker {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }

    .prize-card-title {
        font-size: 28px;
    }

    .prize-card-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .big-prizes-section {
        padding: 60px 0;
    }

    .big-prizes-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .prize-card {
        width: 320px;
        padding: 30px;
        min-height: 250px;
    }
    
    @keyframes scroll-ticker {
       0% {
           transform: translateX(0);
       }
       100% {
           transform: translateX(calc(-50% - 10px));
       }
    }

    .prize-card-title {
        font-size: 24px;
    }

    .prize-card-subtitle {
        font-size: 16px;
    }

    .download-app-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .app-store-badges-container {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }

    .app-store-badges-image {
        height: 50px;
    }

    .qr-code-image {
        width: 120px;
        height: 120px;
    }

    .btn-download-app-prizes {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .prize-card {
        width: 300px;
    }
    
    @keyframes scroll-ticker {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

/* Get Golden Tickets Section */
.golden-tickets-section {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.golden-tickets-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/golden-tier-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.golden-tickets-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.golden-tickets-content {
    text-align: center;
    color: #000000;
}

.golden-tickets-title {
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.golden-tickets-description {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.golden-tickets-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fsp-logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

.btn-explore-membership {
    display: inline-block;
    background: #0000FF;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-membership:hover {
    background: #0052CC;
    border-color: #0052CC;
}

/* Responsive for Golden Tickets Section */
@media (max-width: 768px) {
    .golden-tickets-section {
        height: 50vh;
    }

    .golden-tickets-title {
        font-size: 36px;
    }

    .golden-tickets-description {
        font-size: 18px;
    }

    .fsp-logo-image {
        max-width: 150px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile: Cards Container - Stack vertically (one card per line) */
@media (max-width: 768px) {
    /* Section with Background - Cards Container */
    .section-with-bg,
    .section-5-with-bg {
        height: auto;
        min-height: auto;
        padding: 20px 16px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }

    .gradient-card {
        height: auto;
        min-height: 400px;
    }

    .card-content {
        padding: 24px 20px 0 20px;
        min-height: 400px;
    }

    .card-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .card-logo {
        width: 100%;
    }

    .logo-img {
        max-width: 120px;
    }

    .card-description {
        font-size: 16px;
    }

    .card-button {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
    }

    .card-button-wbb {
        font-size: 14px;
        padding: 12px 24px;
        border-width: 2px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
        margin: 0 -20px 0 -20px;
        padding: 0 20px 20px 20px;
    }

    .grid-item {
        height: 120px;
    }

    .grid-item.merged-row {
        grid-column: span 1;
    }

    .grid-text {
        font-size: 18px;
        max-width: calc(100% - 40px);
    }

    .grid-item.merged-row .grid-text {
        max-width: calc(100% - 40px);
        font-size: 20px;
    }

    .grid-text-title {
        font-size: 18px;
    }

    .grid-item.merged-row .grid-text-title {
        font-size: 20px;
    }

    .grid-text-subtitle {
        font-size: 12px;
    }

    .text-large {
        font-size: 36px;
    }

    /* Section 6 - Philosophy */
    .section-6-philosophy {
        padding: 40px 16px;
        min-height: auto;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-content {
        padding-top: 0;
    }

    .philosophy-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.philosophy-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .philosophy-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .philosophy-tagline {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .philosophy-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .philosophy-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .philosophy-panel {
        flex-direction: column;
    }

    .panel-image {
        width: 100%;
        height: 200px;
    }

    .panel-content {
        padding: 20px;
    }

    .panel-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .panel-description {
        font-size: 14px;
    }

    .philosophy-compass {
        display: none;
    }

    /* Last Section */
    .last-section {
        padding: 40px 16px;
    }

    .last-section-container {
        max-width: 100%;
    }

    .last-section-title {
        font-size: 32px;
    }

    .last-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .last-section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .last-section-card {
        height: auto;
        min-height: 300px;
    }

    .last-section-card-image {
        height: 200px;
    }

    .last-section-card-title {
        font-size: 20px;
    }

    .last-section-card-description {
        font-size: 14px;
    }

    .last-section-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* FFS Section */
    .ffs-section {
        padding: 40px 16px;
    }

    .ffs-container {
        flex-direction: column;
        gap: 30px;
    }

    .ffs-image-container {
        width: 100%;
    }

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

    .ffs-content {
        width: 100%;
        text-align: center;
    }

    .ffs-question {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .ffs-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ffs-acronym {
        font-size: 78px;
    }

    .ffs-full-name {
        font-size: 12px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: #ffffff;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.how-it-works-texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    mix-blend-mode: lighten;
}

.how-it-works-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.how-it-works-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0000FF;
    margin: 0;
}

.btn-start-playing {
    background: #0000FF;
    color: #ffffff;
    padding: 7px 40px;
    border-radius: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.019em;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.btn-start-playing:hover {
    opacity: 0.9;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-image-wrapper {
    width: 100%;
    height: 430px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-number-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    background: #0000FF;
    padding: 8px 16px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 255, 0.3);
}

.step-description {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #0000FF;
    margin: 0;
}

/* World's Best - Mobile Responsive */
@media (max-width: 768px) {
    /* How It Works Section */
    .how-it-works-section {
        padding: 40px 16px;
        background: #ffffff;
    }

    .how-it-works-container {
        padding: 0;
    }

    .how-it-works-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .how-it-works-title {
        font-size: 28px;
        color: #0000FF;
    }

    .btn-start-playing {
        width: 100%;
        text-align: center;
        background: #0000FF;
        color: #ffffff;
    }

    .how-it-works-steps {
        flex-direction: column;
        gap: 30px;
    }

    .how-it-works-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .step-image-wrapper {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        background: #f5f5f5;
    }

    .step-image {
        width: 100%;
        height: 100%;
    }

    .step-content {
        flex: 1;
    }

    .step-number {
        font-size: 24px;
        color: #ffffff;
        background: #0000FF;
    }

    .step-description {
        font-size: 14px;
        color: #0000FF;
    }

    .step-line {
        background: rgba(0, 0, 255, 0.3);
    }

    /* Bowler Section */
    .bowler-section {
        padding: 40px 16px;
        min-height: 60vh;
    }

    .bowler-container {
        padding: 0;
    }

    .bowler-category {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .bowler-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .bowler-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .bowler-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .bowler-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Squash Section */
    .squash-section {
        padding: 40px 16px;
        min-height: 60vh;
    }

    .squash-container {
        padding: 0;
    }

    .squash-category {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .squash-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .squash-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .squash-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .squash-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Cricket Section */
    .cricket-section {
        padding: 40px 16px;
        min-height: 60vh;
    }

    .cricket-container {
        padding: 0;
    }

    .cricket-category {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .cricket-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cricket-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cricket-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cricket-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Club Section */
    .club-section {
        padding: 40px 16px;
        min-height: 60vh;
    }

    .club-container {
        padding: 0;
    }

    .club-category {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .club-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .club-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .club-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Redeem Win Big Section */
    .redeem-win-big-section {
        padding: 40px 16px;
    }

    .redeem-win-big-container {
        max-width: 100%;
    }

    .redeem-win-big-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .redeem-win-big-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .redeem-win-big-body {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .redeem-win-big-grid {
        gap: 20px;
    }

    .redeem-grid-row {
        flex-direction: column;
        gap: 20px;
    }

    .redeem-card-item {
        width: 100%;
    }

    .redeem-card-image {
        height: 200px;
    }

    .redeem-card-text {
        font-size: 14px;
    }

    .btn-join-now {
        font-size: 12px;
        padding: 10px 20px;
    }

    .redeem-win-big-bottom {
        margin-top: 30px;
    }

    .redeem-bottom-image {
        height: 200px;
    }

    .redeem-bottom-text {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* Passion Points Section */
    .passion-points-section {
        padding: 40px 16px;
    }

    .passion-points-container {
        flex-direction: column;
        gap: 30px;
    }

    .passion-points-left,
    .passion-points-right {
        width: 100%;
    }

    .passion-points-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .passion-points-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .passion-points-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-start-earning-passion {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .partners-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .partners-title {
        font-size: 16px;
    }

    .partners-cards {
        flex-direction: column;
        gap: 16px;
    }

    .partner-card {
        width: 100%;
        height: 80px;
    }

    /* Big Prizes Section */
    .big-prizes-section {
        padding: 40px 16px;
    }

    .big-prizes-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .big-prizes-ticker-wrapper {
        margin-bottom: 24px;
    }

    .prize-card {
        min-width: 280px;
        height: 300px;
    }

    .prize-card-title {
        font-size: 18px;
    }

    .prize-card-subtitle {
        font-size: 14px;
    }

    .download-app-heading {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .app-store-badges-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .app-store-badges-image {
        height: 45px;
        max-width: 100%;
    }

    .qr-code-image {
        width: 100px;
        height: 100px;
    }

    .qr-code-label {
        font-size: 12px;
    }

    .btn-download-app-prizes {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .cards-container {
        gap: 16px;
    }

    .card-content {
        padding: 20px 16px 0 16px;
        min-height: 350px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-button {
        font-size: 13px;
        padding: 10px 20px;
    }

    .card-button-wbb {
        font-size: 13px;
        padding: 10px 20px;
        border-width: 2px;
    }

    .grid-item {
        height: 100px;
    }

    .grid-text {
        font-size: 16px;
        left: 12px;
    }

    .grid-text-title {
        font-size: 16px;
    }

    .grid-item.merged-row .grid-text-title {
        font-size: 18px;
    }

    .philosophy-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.philosophy-title {
        font-size: 20px;
    }

    .philosophy-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .philosophy-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .philosophy-text {
        font-size: 14px;
    }

    .last-section-title {
        font-size: 24px;
    }

    .worlds-best-f-dash {
        height: 35px;
        margin-bottom: 12px;
    }

    .worlds-best-title {
        font-size: 32px;
    }

    .worlds-best-subtitle {
        font-size: 16px;
    }
}

/* Fix for Download App Card - Prevent Cropping */
.grid-item-download-app {
    padding: 16px !important;
    min-height: 147px !important;
}

.grid-item-download-app .grid-text-top {
    margin-bottom: 12px !important;
    text-align: center !important;
}

.grid-item-download-app .grid-text-top .grid-text-title {
    font-size: 18px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.grid-item-download-app .grid-image-full {
    align-items: center !important;
    overflow: visible !important;
    min-height: 0 !important;
    padding: 0 8px !important;
}

.grid-item-download-app .grid-image-full .grid-image {
    max-width: 100% !important;
    width: auto !important;
    max-height: 60px !important;
    object-fit: contain !important;
    object-position: center !important;
}