/* 
   Gambling Landing Page Style Sheet
   Designed with premium aesthetics: deep purple gradients, gold accents, glassmorphism, and smooth animations.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
    --bg-primary: #150229;
    --bg-radial: radial-gradient(circle at center, #2e0854 0%, #0d011a 100%);
    --text-light: #ffffff;
    --text-muted: #b9a1cf;
    --gold-primary: #ffd000;
    --gold-gradient: linear-gradient(180deg, #ffe066 0%, #f3b000 50%, #c28500 100%);
    --gold-btn-gradient: linear-gradient(180deg, #ffeb60 0%, #ffaa00 100%);
    --gold-glow: 0 0 15px rgba(255, 208, 0, 0.5);
    --gold-glow-hover: 0 0 25px rgba(255, 208, 0, 0.8);
    --font-main: 'Montserrat', sans-serif;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header Section */
header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(21, 2, 41, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(21, 2, 41, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-dot {
    color: #ffeb60;
    font-size: 1.5rem;
    line-height: 0;
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-btn-gradient);
    transition: var(--transition-smooth);
    box-shadow: var(--gold-glow);
}

.nav-links a:hover {
    color: #ffeb60;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--text-light);
    padding: 0;
    box-shadow: none;
}

.menu-btn:hover {
    color: var(--gold-primary);
}

/* Cross morph SVG line transformations when active */
.menu-btn svg line {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
}

.menu-btn.active svg line:nth-child(1) {
    opacity: 0;
    /* Hide middle line (first child y1="12") */
}

.menu-btn.active svg line:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
    /* Rotate top line (second child y1="6") */
}

.menu-btn.active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    /* Rotate bottom line (third child y1="18") */
}

/* Main Content & Hero Banner Container */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-radial);
    padding: calc(var(--header-height) + 40px) 5% 60px 5%;
    overflow: hidden;
}

/* Rotating Sunburst Background */
.sunburst-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vmax;
    height: 200vmax;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
}

.sunburst-rays {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(from 0deg,
            rgba(138, 43, 226, 0.15) 0deg 15deg,
            transparent 15deg 30deg);
    animation: spin 90s linear infinite;
}

/* Vignette overlay to fade background edges */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(13, 1, 26, 0.95) 90%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Left Column: Visual Assets Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
    user-select: none;
}

/* Base Shadow/Glow under assets */
.visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: pulseAmbient 4s infinite ease-in-out;
}

/* Cards Fan Stack */
.cards-stack {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.card-item {
    position: absolute;
    width: 130px;
    height: 190px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    transform-origin: bottom center;
}

/* Card suits and numbers layout */
.card-item svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

/* Fan positioning with subtle floating */
.card-diamond {
    transform: rotate(-16deg) translate(-50px, 5px);
    z-index: 6;
    animation: floatCardD 6s infinite ease-in-out;
}

.card-club {
    transform: rotate(-5deg) translate(-15px, -10px);
    z-index: 7;
    animation: floatCardC 6.5s infinite ease-in-out;
}

.card-heart {
    transform: rotate(6deg) translate(20px, -10px);
    z-index: 8;
    animation: floatCardH 7s infinite ease-in-out;
}

.card-spade {
    transform: rotate(18deg) translate(55px, 8px);
    z-index: 9;
    animation: floatCardS 5.5s infinite ease-in-out;
}

/* Dice styling and placement */
.dice-container {
    position: absolute;
    z-index: 20;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.dice-1 {
    width: 120px;
    height: 120px;
    bottom: 50px;
    left: 20px;
    animation: floatDie1 5s infinite ease-in-out;
}

.dice-2 {
    width: 100px;
    height: 100px;
    bottom: 80px;
    right: 25px;
    animation: floatDie2 5.5s infinite ease-in-out;
}

.dice-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Chips styling and placement */
.chips-container {
    position: absolute;
    z-index: 15;
    bottom: 30px;
    left: 80px;
    display: flex;
    gap: -40px;
    /* Overlap effect */
    height: 100px;
    width: 250px;
    pointer-events: none;
}

.chip {
    position: absolute;
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
}

.chip-orange {
    left: 0;
    bottom: 0;
    transform: rotateX(62deg) rotateZ(35deg) scale(1.0);
    z-index: 16;
    animation: floatChipO 7s infinite ease-in-out;
}

.chip-red {
    left: 45px;
    bottom: -15px;
    transform: rotateX(62deg) rotateZ(12deg) scale(1.05);
    z-index: 18;
    animation: floatChipR 6s infinite ease-in-out;
}

.chip-black {
    left: 95px;
    bottom: 5px;
    transform: rotateX(62deg) rotateZ(-25deg) scale(0.95);
    z-index: 17;
    animation: floatChipB 8s infinite ease-in-out;
}

.chip svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Gold Stars floating */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 25;
    pointer-events: none;
}

.star {
    position: absolute;
    filter: drop-shadow(0 0 8px rgba(255, 208, 0, 0.8));
    animation: starPulse 3s infinite ease-in-out;
}

.star-1 {
    top: 60px;
    left: 40px;
    width: 24px;
    height: 24px;
    animation-delay: 0s;
}

.star-2 {
    top: 90px;
    right: 50px;
    width: 18px;
    height: 18px;
    animation-delay: 0.5s;
}

.star-3 {
    bottom: 120px;
    left: 10px;
    width: 20px;
    height: 20px;
    animation-delay: 1.2s;
}

.star-4 {
    bottom: 160px;
    right: 15px;
    width: 28px;
    height: 28px;
    animation-delay: 0.8s;
}

.star-5 {
    top: 240px;
    left: 120px;
    width: 15px;
    height: 15px;
    animation-delay: 1.8s;
}

/* Right Column: Hero Text Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
    letter-spacing: -1.5px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 300;
    animation: fadeInDown 1.2s ease-out;
}

/* Play Now Button Styling */
.hero-cta {
    position: relative;
    padding: 16px 48px;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 700;
    color: #3d1c00;
    text-decoration: none;
    text-transform: capitalize;
    background: var(--gold-btn-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.5), 0 0 30px rgba(255, 170, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    overflow: hidden;
    animation: pulseButton 2.5s infinite, fadeInUp 1.4s ease-out;
}



.hero-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 30px rgba(255, 208, 0, 0.8), 0 0 50px rgba(255, 170, 0, 0.5), 0 6px 25px rgba(0, 0, 0, 0.5), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    color: #2b1400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-cta:hover::before {
    left: 150%;
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.6), 0 0 25px rgba(255, 170, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Background/Sunburst Spin */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Animations for floating cards */
@keyframes floatCardD {

    0%,
    100% {
        transform: rotate(-16deg) translate(-50px, 5px) translateY(0px);
    }

    50% {
        transform: rotate(-17deg) translate(-50px, 5px) translateY(-12px);
    }
}

@keyframes floatCardC {

    0%,
    100% {
        transform: rotate(-5deg) translate(-15px, -10px) translateY(0px);
    }

    50% {
        transform: rotate(-4deg) translate(-15px, -10px) translateY(-16px);
    }
}

@keyframes floatCardH {

    0%,
    100% {
        transform: rotate(6deg) translate(20px, -10px) translateY(0px);
    }

    50% {
        transform: rotate(7deg) translate(20px, -10px) translateY(-14px);
    }
}

@keyframes floatCardS {

    0%,
    100% {
        transform: rotate(18deg) translate(55px, 8px) translateY(0px);
    }

    50% {
        transform: rotate(17deg) translate(55px, 8px) translateY(-10px);
    }
}

/* Animations for floating dice */
@keyframes floatDie1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-18px) rotate(-4deg) scale(1.02);
    }
}

@keyframes floatDie2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-15px) rotate(5deg) scale(1.02);
    }
}

/* Animations for floating chips */
@keyframes floatChipO {

    0%,
    100% {
        transform: rotateX(62deg) rotateZ(35deg) translateY(0px);
    }

    50% {
        transform: rotateX(62deg) rotateZ(32deg) translateY(-8px);
    }
}

@keyframes floatChipR {

    0%,
    100% {
        transform: rotateX(62deg) rotateZ(12deg) translateY(0px);
    }

    50% {
        transform: rotateX(62deg) rotateZ(14deg) translateY(-12px);
    }
}

@keyframes floatChipB {

    0%,
    100% {
        transform: rotateX(62deg) rotateZ(-25deg) translateY(0px);
    }

    50% {
        transform: rotateX(62deg) rotateZ(-22deg) translateY(-9px);
    }
}

/* Pulse/glow animations */
@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(255, 235, 96, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(255, 235, 96, 1));
    }
}

@keyframes pulseAmbient {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
    }
}

@keyframes pulseButton {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 208, 0, 0.5), 0 0 30px rgba(255, 170, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255, 255, 255, 0.6);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 208, 0, 0.8), 0 0 50px rgba(255, 170, 0, 0.5), 0 6px 25px rgba(0, 0, 0, 0.5), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    }
}

/* Entrance Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* About Us Section Styles */
.about-section {
    position: relative;
    background: #140224;
    /* Rich dark violet-purple for section contrast */
    padding: 120px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-image-container {
    position: relative;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.12) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: pulseAmbient 6s infinite ease-in-out;
}

.about-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.about-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 208, 0, 0.15);
    border-color: rgba(255, 208, 0, 0.25);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: var(--text-light);
    letter-spacing: -1px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-cta {
    position: relative;
    padding: 14px 42px;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    background: transparent;
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.1);
    transition: var(--transition-smooth);
    margin-top: 1rem;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.about-cta:hover {
    background: var(--gold-btn-gradient);
    color: #3d1c00;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.4);
    transform: translateY(-3px);
    border-color: transparent;
}

.about-cta:hover::before {
    left: 125%;
}

.about-cta:active {
    transform: translateY(-1px);
}

/* About Us Section Media Queries */
@media (max-width: 900px) {
    .about-section {
        padding: 80px 6%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-subtitle {
        font-size: 2.3rem;
    }

    .about-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 5%;
    }

    .about-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-image {
        max-width: 100%;
    }
}

/* Be In Control Section */
.becontrol-section {
    position: relative;
    background: #07000d;
    /* Deepest violet-black, almost black for background alternation */
    padding: 120px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.becontrol-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.becontrol-header {
    text-align: center;
    margin-bottom: 5rem;
}

.becontrol-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.becontrol-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 0 auto;
    position: relative;
}

.becontrol-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #0d011a;
    padding: 0 12px;
}

.becontrol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
    align-items: start;
}

.control-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.control-icon-container {
    position: relative;
    flex-shrink: 0;
}

.control-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.25) 0%, transparent 70%);
    filter: blur(12px);
    z-index: 1;
    border-radius: 12px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.control-icon-card {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: var(--gold-btn-gradient);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.control-icon-card svg {
    width: 72%;
    height: 72%;
    display: block;
    transition: var(--transition-smooth);
}

.control-info {
    display: flex;
    flex-direction: column;
}

.control-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.control-info p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* Hover States for Limitation cards */
.control-item:hover .control-icon-card {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 32px rgba(255, 170, 0, 0.45), 0 0 18px rgba(255, 235, 96, 0.25);
}

.control-item:hover .control-icon-glow {
    width: 140%;
    height: 140%;
    opacity: 1;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.45) 0%, transparent 70%);
}

.control-item:hover .control-icon-card svg {
    transform: scale(1.08) rotate(3deg);
}

.control-item:hover .control-info h3 {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.35);
}

/* Row divider between card rows with laser sweep animation */
.becontrol-grid-divider {
    grid-column: span 2;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(138, 43, 226, 0.25) 15%,
            rgba(138, 43, 226, 0.25) 85%,
            transparent);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.1);
}

.becontrol-grid-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(168, 85, 247, 0.1) 10%,
            #d8b4fe 45%,
            #ffffff 50%,
            #d8b4fe 55%,
            rgba(168, 85, 247, 0.1) 90%,
            transparent);
    filter: drop-shadow(0 0 5px rgba(216, 180, 254, 0.8));
    animation: borderSweep 5s linear infinite;
}

@keyframes borderSweep {
    0% {
        left: -40%;
    }

    100% {
        left: 140%;
    }
}

/* Be In Control Media Queries */
@media (max-width: 900px) {
    .becontrol-section {
        padding: 80px 6%;
    }

    .becontrol-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .becontrol-grid-divider {
        grid-column: span 1;
        margin: 1.5rem 0;
    }

    .control-item {
        gap: 1.5rem;
    }

    .control-icon-card {
        width: 80px;
        height: 80px;
    }

    .control-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .becontrol-section {
        padding: 60px 5%;
    }

    .becontrol-title {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }

    .control-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .control-info {
        align-items: center;
    }
}

/* Responsive Layout Settings */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    header {
        padding: 0 5%;
        /* Aligns hamburger menu toggle right edge with the logo container's left edge */
    }

    nav {
        display: contents;
        /* Removes nav container from flex rendering flow, shifting menu toggle to the far right */
    }

    .game-image-wrapper {
        padding-top: 72%;
        /* Decrease image height in responsive view */
    }

    /* Decrease gap from section to section in responsive view */
    .about-section,
    .becontrol-section,
    .games-section,
    .whychoose-section,
    .centralize-section,
    .evolution-section,
    .standsout-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .faq-section {
        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }

    .nav-links {
        display: none;
        /* Hide on mobile by default, toggled with class */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(21, 2, 41, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 20px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        order: 2;
        /* Move content below visual assets on mobile */
    }

    .hero-visual {
        order: 1;
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-description {
        max-width: 100%;
    }

    .dice-1 {
        width: 90px;
        height: 90px;
        left: 30px;
    }

    .dice-2 {
        width: 75px;
        height: 75px;
        right: 35px;
    }

    .chip {
        width: 75px;
        height: 75px;
    }

    .chip-red {
        left: 35px;
    }

    .chip-black {
        left: 75px;
    }

    .chips-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .card-item {
        width: 100px;
        height: 145px;
    }

    .card-diamond {
        transform: rotate(-16deg) translate(-35px, 5px);
    }

    .card-club {
        transform: rotate(-5deg) translate(-10px, -5px);
    }

    .card-heart {
        transform: rotate(6deg) translate(15px, -5px);
    }

    .card-spade {
        transform: rotate(18deg) translate(38px, 5px);
    }

    /* adjust float ranges so they scale on small screen */
    @keyframes floatCardD {

        0%,
        100% {
            transform: rotate(-16deg) translate(-35px, 5px) translateY(0px);
        }

        50% {
            transform: rotate(-17deg) translate(-35px, 5px) translateY(-8px);
        }
    }

    @keyframes floatCardC {

        0%,
        100% {
            transform: rotate(-5deg) translate(-10px, -5px) translateY(0px);
        }

        50% {
            transform: rotate(-4deg) translate(-10px, -5px) translateY(-10px);
        }
    }

    @keyframes floatCardH {

        0%,
        100% {
            transform: rotate(6deg) translate(15px, -5px) translateY(0px);
        }

        50% {
            transform: rotate(7deg) translate(15px, -5px) translateY(-9px);
        }
    }

    @keyframes floatCardS {

        0%,
        100% {
            transform: rotate(18deg) translate(38px, 5px) translateY(0px);
        }

        50% {
            transform: rotate(17deg) translate(38px, 5px) translateY(-7px);
        }
    }

    .dice-1 {
        width: 75px;
        height: 75px;
        left: 20px;
    }

    .dice-2 {
        width: 60px;
        height: 60px;
        right: 25px;
    }

    .chip {
        width: 60px;
        height: 60px;
    }

    .chips-container {
        width: 140px;
    }

    .chip-red {
        left: 25px;
    }

    .chip-black {
        left: 55px;
    }
}

/* Related Games Section */
.games-section {
    position: relative;
    background: #140224;
    /* Rich dark violet-purple to alternate with deepest violet-black */
    padding: 120px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.games-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.games-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.games-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.games-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 0 auto;
    position: relative;
}

.games-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #140224;
    /* Matches section bg */
    padding: 0 12px;
}

.games-filters {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0;
    flex-wrap: wrap;
}

.filter-item {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.filter-item:hover,
.filter-item.active {
    color: var(--gold-primary);
    border-color: rgba(255, 208, 0, 0.35);
    box-shadow: 0 0 12px rgba(255, 208, 0, 0.15);
}

.filter-item.active {
    background: rgba(255, 208, 0, 0.08);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

.game-card {
    background: rgba(13, 1, 26, 0.55);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square app icon ratio */
    overflow: hidden;
    background: #07000d;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-card:hover .game-image {
    transform: scale(1.06);
}

/* Overlay hidden — button is always visible in game-details */
.game-overlay {
    display: none;
}

.download-apk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gold-btn-gradient);
    color: #3d1c00;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(255, 170, 0, 0.4);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-apk-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 170, 0, 0.65);
    color: #231000;
}

.download-apk-btn svg {
    display: block;
    flex-shrink: 0;
}

.game-details {
    padding: 1.4rem 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 0, 13, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
}

.game-card-category {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Related Games Media Queries */
@media (max-width: 900px) {
    .games-section {
        padding: 80px 6%;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .games-header {
        margin-bottom: 2rem;
    }

    .games-filters {
        gap: 0.6rem;
        margin-bottom: 2rem;
    }

    .filter-item {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .game-card-title {
        font-size: 1rem;
    }

    .game-card-category {
        font-size: 0.78rem;
    }

    .download-apk-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        gap: 5px;
    }

    .download-apk-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Why Choose Section */
.whychoose-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(255, 208, 0, 0.05) 0%, rgba(20, 2, 36, 0) 70%), #140224;
    /* Alternating dark purple background with light yellow spotlight overlay */
    padding: 100px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.whychoose-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Header styling */
.whychoose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.whychoose-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.whychoose-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 0 auto;
    position: relative;
}

.whychoose-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #140224;
    /* Matches new alternating section background color */
    padding: 0 12px;
}

/* Centered Subtitle */
.whychoose-subtitle {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 2x2 Grid */
.whychoose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.whychoose-card {
    background: rgba(20, 2, 36, 0.45);
    /* Richer dark glassmorphism */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 208, 0, 0.12);
    /* Light yellow border shade by default */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 208, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whychoose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 208, 0, 0.08) 0%, transparent 70%);
    /* Light yellow shade radial glow */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.whychoose-card:hover::after {
    opacity: 1;
}

.whychoose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 208, 0, 0.85);
    /* Light yellow border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 208, 0, 0.3), inset 0 0 20px rgba(255, 208, 0, 0.25);
    /* Inside the box yellow shadow + outer yellow glow */
}

.whychoose-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Colored Icon styles with subtle neon glows */
.icon-yellow {
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.15);
}

.whychoose-card:hover .icon-yellow {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.35);
}

.icon-blue {
    color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.whychoose-card:hover .icon-blue {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.35);
}

.icon-red {
    color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.whychoose-card:hover .icon-red {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.35);
}

.icon-teal {
    color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.whychoose-card:hover .icon-teal {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.35);
}

.whychoose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.whychoose-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Descriptive Paragraphs Text styling */
.whychoose-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: inset 0 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.whychoose-text-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.whychoose-text-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 208, 0, 0.06);
    border: 1px solid rgba(255, 208, 0, 0.25);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.1);
    transition: var(--transition-smooth);
}

.whychoose-text-item:hover .whychoose-text-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.25);
    background: rgba(255, 208, 0, 0.12);
    border-color: var(--gold-primary);
}

.whychoose-text-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    text-align: justify;
    margin: 0;
    flex-grow: 1;
}

/* Mobile responsive styles */
@media (max-width: 900px) {
    .whychoose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .whychoose-title {
        font-size: 2.1rem;
    }

    .whychoose-divider {
        width: 260px;
    }

    .whychoose-content {
        padding: 2rem 1.5rem;
        gap: 1.8rem;
    }

    .whychoose-text-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .whychoose-text-item p {
        font-size: 1rem;
        text-align: center;
    }
}

/* Centralize Section */
.centralize-section {
    position: relative;
    background: #07000d;
    /* Alternating section color (almost black) */
    padding: 100px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.centralize-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.04) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.centralize-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.centralize-header {
    text-align: center;
    margin-bottom: 5rem;
}

.centralize-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.centralize-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 0 auto;
    position: relative;
}

.centralize-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #07000d;
    /* Matches the section's background color */
    padding: 0 12px;
}

/* 2-column Grid Row */
.centralize-row {
    display: grid;
    grid-template-columns: 1fr;
    /* Full-width columns (col-lg-12 equivalent) */
    gap: 3rem;
}

.centralize-card {
    background: rgba(20, 2, 36, 0.4);
    /* Dark glassmorphism */
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 208, 0, 0.2);
    /* Yellow border shade */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 208, 0, 0.15);
    /* Inside the box yellow shadow */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.centralize-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 208, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.centralize-card:hover::after {
    opacity: 1;
}

.centralize-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 208, 0, 0.85);
    /* Light yellow border */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 208, 0, 0.3), inset 0 0 20px rgba(255, 208, 0, 0.25);
    /* Inside the box yellow shadow + outer yellow glow */
}

.centralize-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: rgba(255, 208, 0, 0.08);
    /* Translucent yellow background */
    border: 1px solid rgba(255, 208, 0, 0.3);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.15);
    transition: var(--transition-smooth);
}

.centralize-card:hover .centralize-card-icon {
    transform: scale(1.1) rotate(6deg);
    background: rgba(255, 208, 0, 0.15);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.35);
}

.centralize-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.centralize-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.centralize-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    text-align: justify;
    margin: 0;
}

/* Tablet & Mobile media queries for Centralize section */
@media (max-width: 900px) {
    .centralize-row {
        grid-template-columns: 1fr;
        /* Stack columns vertically on mobile */
        gap: 2rem;
    }

    .centralize-card {
        padding: 2.2rem 1.8rem;
    }

    .centralize-title {
        font-size: 2.1rem;
    }
}

/* Evolution Section (Bootstrap Structured) */
.evolution-section {
    position: relative;
    background: #140224;
    /* Alternating dark purple background */
    padding: 120px 0;
    /* Grid container padding handled by Bootstrap */
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.evolution-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.04) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.evolution-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.evolution-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 0 auto;
    position: relative;
}

.evolution-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #140224;
    /* Matches section bg */
    padding: 0 12px;
}

.evolution-card {
    background: rgba(20, 2, 36, 0.35);
    border-radius: 16px;
    padding: 2.8rem 2.2rem;
    border: 1px solid rgba(255, 208, 0, 0.12);
    /* Light yellow border shade */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 208, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.evolution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 208, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.evolution-card:hover::after {
    opacity: 1;
}

.evolution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 208, 0, 0.85);
    /* Light yellow border */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 208, 0, 0.3), inset 0 0 20px rgba(255, 208, 0, 0.25);
    /* Inside the box yellow shadow + outer yellow glow */
}

.evolution-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 208, 0, 0.06);
    border: 1px solid rgba(255, 208, 0, 0.25);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.1);
    transition: var(--transition-smooth);
}

.evolution-card:hover .evolution-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 208, 0, 0.12);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 18px rgba(255, 208, 0, 0.3);
}

.evolution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.evolution-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.evolution-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    text-align: justify;
    margin: 0;
}

/* CTA Card styling */
.evolution-cta-card {
    border-color: rgba(255, 208, 0, 0.25);
    background: radial-gradient(circle at center, rgba(255, 208, 0, 0.06) 0%, rgba(20, 2, 36, 0.45) 80%);
}

.evolution-cta-icon-wrapper {
    color: var(--gold-primary);
    filter: drop-shadow(0 4px 10px rgba(255, 208, 0, 0.2));
}

.cta-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

.evolution-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold-btn-gradient);
    color: #3d1c00;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(255, 170, 0, 0.45);
    transition: var(--transition-smooth);
}

.evolution-cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 170, 0, 0.65);
    color: #231000;
}

@media (max-width: 900px) {
    .evolution-title {
        font-size: 2.1rem;
    }
}

/* Stands Out Section (Bootstrap Structured) */
.standsout-section {
    position: relative;
    background: #07000d;
    /* Alternating section background color (almost black) */
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.standsout-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.04) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Intro Banner Card */
.standsout-feature-card {
    background: rgba(20, 2, 36, 0.45);
    border: 1px solid rgba(255, 208, 0, 0.18);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 208, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.standsout-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 208, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.standsout-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 208, 0, 0.2);
}

.standsout-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: rgba(255, 208, 0, 0.08);
    border: 1px solid rgba(255, 208, 0, 0.3);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.15);
    transition: var(--transition-smooth);
}

.standsout-feature-card:hover .standsout-card-icon {
    transform: scale(1.08) rotate(8deg);
    background: rgba(255, 208, 0, 0.15);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(255, 208, 0, 0.35);
}

.standsout-feature-content {
    flex-grow: 1;
}

.standsout-feature-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.standsout-feature-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    text-align: justify;
    margin-bottom: 1.2rem;
}

.standsout-feature-content p:last-child {
    margin-bottom: 0;
}

/* Grid Cards */
.standsout-card {
    background: rgba(20, 2, 36, 0.35);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 208, 0, 0.12);
    /* Light yellow border shade */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 208, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.standsout-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 208, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.standsout-card:hover::after {
    opacity: 1;
}

.standsout-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 208, 0, 0.85);
    /* Light yellow border */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 208, 0, 0.3), inset 0 0 20px rgba(255, 208, 0, 0.25);
    /* Inside the box yellow shadow + outer yellow glow */
}

.standsout-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.standsout-subcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 208, 0, 0.06);
    border: 1px solid rgba(255, 208, 0, 0.25);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.1);
    transition: var(--transition-smooth);
}

.standsout-card:hover .standsout-subcard-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 208, 0, 0.12);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 18px rgba(255, 208, 0, 0.35);
}

.standsout-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.standsout-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.standsout-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    text-align: justify;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .standsout-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.2rem 1.8rem;
        gap: 1.8rem;
    }

    .standsout-feature-content h2 {
        font-size: 1.8rem;
    }

    .standsout-feature-content p {
        font-size: 1rem;
        text-align: center;
    }

    .standsout-card {
        padding: 2.2rem 1.8rem;
    }

    .standsout-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .standsout-card h3 {
        text-align: center;
    }

}



/* ==========================================================================
   FAQ Section & Accordion Layout
   ========================================================================== */
.faq-section {
    position: relative;
    padding: 140px 0 100px 0;
    /* Created gap from top side */
    background: var(--bg-radial);
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Centered content layout */
.faq-container {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    margin-top: .5rem;
}

.faq-title {
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* FAQ Header Divider (Match Centralized Gaming Hub Style) */
.faq-divider {
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.45), transparent);
    margin: 1.5rem auto;
    position: relative;
}

.faq-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: #190433;
    /* Dark purple blending with the radial bg center */
    padding: 0 12px;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Glassmorphism FAQ card */
.faq-item {
    background: rgba(20, 2, 36, 0.4);
    border: 1px solid rgba(255, 208, 0, 0.1);
    border-radius: 14px;
    transition: var(--transition-smooth);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(255, 208, 0, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 208, 0, 0.05);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(255, 208, 0, 0.85);
    /* Light yellow border */
    background: rgba(20, 2, 36, 0.7);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 208, 0, 0.25), inset 0 0 18px rgba(255, 208, 0, 0.2);
    /* Inside the box yellow shadow + outer yellow glow */
    transform: translateY(-2px);
}

/* Question Header/Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-smooth);
    font-family: var(--font-main);
}

.faq-q-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-right: 0.8rem;
    transition: var(--transition-smooth);
}

.faq-q-text {
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    transition: var(--transition-smooth);
}

.faq-question:hover .faq-q-text {
    color: #ffeb60;
}

.faq-item.active .faq-q-text {
    color: var(--gold-primary);
}

/* Expand/Collapse Custom Plus-Minus Icon */
.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question:hover .faq-icon-wrapper {
    color: var(--gold-primary);
    background: rgba(255, 208, 0, 0.12);
}

.faq-item.active .faq-icon-wrapper {
    color: #150229;
    background: var(--gold-btn-gradient);
    transform: rotate(135deg);
    box-shadow: var(--gold-glow);
}

.faq-icon {
    display: block;
    transition: transform 0.4s ease;
}

.faq-icon .line-v {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.faq-item.active .faq-icon .line-v {
    opacity: 0;
    transform: scaleY(0);
}

/* Answer Body with Transitions */
.faq-answer-container {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer {
    padding: 0 1.5rem 1.6rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   Background Animated Elements
   ========================================================================== */
/* Sticky Background Column Wrappers */
.faq-sticky-left-wrapper {
    position: absolute;
    top: 0;
    left: calc(50% - 540px);
    /* Generous gap from main content */
    width: 170px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.faq-sticky-right-wrapper {
    position: absolute;
    top: 0;
    left: calc(50% + 370px);
    /* Generous gap from main content */
    width: 220px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Sticky Animated Elements */
.faq-bg-card {
    position: -webkit-sticky;
    position: sticky;
    top: calc(50vh - 125px);
    /* Sticky in the vertical center of the viewport */
    width: 100%;
    height: 250px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    /* Fully visible on larger viewports */
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 15px rgba(255, 208, 0, 0.08));
    animation: faqFloatCard 8s infinite ease-in-out;
}

.faq-bg-ludo {
    position: -webkit-sticky;
    position: sticky;
    top: calc(50vh - 110px);
    /* Sticky in the vertical center of the viewport */
    width: 100%;
    height: 220px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    /* Fully visible on larger viewports */
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.55));
    animation: faqFloatLudo 9s infinite ease-in-out;
}

/* Individual Ludo Part Animations */
.faq-ludo-dice {
    transform-origin: 100px 70px;
    animation: diceRotate 6.5s infinite ease-in-out;
}

.pawn-red {
    transform-origin: 45px 105px;
    animation: redPawnFloat 5.5s infinite ease-in-out;
}

.pawn-yellow {
    transform-origin: 105px 115px;
    animation: yellowPawnFloat 6s infinite ease-in-out;
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes faqFloatCard {
    0% {
        transform: translateY(-50%) translateY(0px) rotate(-12deg);
    }

    50% {
        transform: translateY(-50%) translateY(-25px) rotate(-6deg) scale(1.03);
    }

    100% {
        transform: translateY(-50%) translateY(0px) rotate(-12deg);
    }
}

@keyframes faqFloatLudo {
    0% {
        transform: translateY(-50%) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) translateY(-20px) rotate(-5deg) scale(0.98);
    }

    100% {
        transform: translateY(-50%) translateY(0px) rotate(0deg);
    }
}

@keyframes diceRotate {
    0% {
        transform: translate(100px, 70px) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(100px, 62px) rotate(12deg) scale(1.05);
    }

    100% {
        transform: translate(100px, 70px) rotate(0deg) scale(1);
    }
}

@keyframes redPawnFloat {
    0% {
        transform: translate(45px, 105px) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translate(45px, 105px) translateY(-10px) rotate(-6deg);
    }

    100% {
        transform: translate(45px, 105px) translateY(0px) rotate(0deg);
    }
}

@keyframes yellowPawnFloat {
    0% {
        transform: translate(105px, 115px) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translate(105px, 115px) translateY(-8px) rotate(6deg);
    }

    100% {
        transform: translate(105px, 115px) translateY(0px) rotate(0deg);
    }
}

@keyframes faqFloatCardMobile {
    0% {
        transform: translate(-50%, -50%) translateY(0px) rotate(-12deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(-8deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(-12deg);
    }
}

@keyframes faqFloatLudoMobile {
    0% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px) rotate(5deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
}

/* ==========================================================================
   Responsive Adjustments for FAQ Section
   ========================================================================== */
@media (max-width: 1200px) {
    .faq-sticky-left-wrapper {
        left: calc(50% - 470px);
        width: 130px;
    }

    .faq-sticky-right-wrapper {
        left: calc(50% + 340px);
        width: 180px;
    }

    .faq-bg-card {
        top: calc(50vh - 95px);
        height: 195px;
        opacity: 0.7;
        /* Keep background elements highly visible on desktop viewports */
    }

    .faq-bg-ludo {
        top: calc(50vh - 90px);
        height: 180px;
        opacity: 0.7;
        /* Keep background elements highly visible on desktop viewports */
    }

    .faq-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 992px) {

    .faq-sticky-left-wrapper,
    .faq-sticky-right-wrapper {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .faq-bg-card {
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%) rotate(-12deg);
        width: 120px;
        height: 180px;
        opacity: 0.08;
        animation: faqFloatCardMobile 8s infinite ease-in-out;
    }

    .faq-bg-ludo {
        position: absolute;
        left: 50%;
        top: 65%;
        transform: translate(-50%, -50%);
        width: 160px;
        height: 160px;
        opacity: 0.08;
        animation: faqFloatLudoMobile 9s infinite ease-in-out;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0 !important;
    }

    /* Further decrease gap from section to section on mobile viewports */
    .about-section,
    .becontrol-section,
    .games-section,
    .whychoose-section,
    .centralize-section,
    .evolution-section,
    .standsout-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.3rem 1.2rem;
    }

    .faq-q-text {
        font-size: 0.95rem;
    }

    .faq-sticky-left-wrapper,
    .faq-sticky-right-wrapper,
    .faq-bg-card,
    .faq-bg-ludo {
        display: none;
        /* Hide background SVGs on small mobiles to prevent visual clutter */
    }
}

/* ==========================================================================
   Site Footer Styles
   ========================================================================== */
.site-footer {
    background: #080012;
    /* Deep purple-black background */
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.footer-col-title {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.footer-col-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 208, 0, 0.35), transparent);
    margin-bottom: 2rem;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
    text-align: justify;
}

.footer-right-col {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.payment-methods-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    cursor: pointer;
}

.payment-badge-card:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

/* Subscription Form Style */
.footer-subscribe-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(20, 2, 36, 0.45);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.footer-subscribe-form:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(255, 208, 0, 0.15);
}

.footer-subscribe-input {
    flex-grow: 1;
    padding: 14px 18px;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.footer-subscribe-input:focus {
    outline: none;
}

.footer-subscribe-btn {
    position: relative;
    padding: 14px 32px;
    background: var(--gold-btn-gradient);
    border: none;
    color: #3d1c00;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
    animation: pulseButton 2.5s infinite;
}

.footer-subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.footer-subscribe-btn:hover {
    transform: scale(1.04);
    color: #2b1400;
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.6), 0 0 15px rgba(255, 235, 96, 0.4);
}

.footer-subscribe-btn:hover::before {
    left: 125%;
}

.footer-subscribe-btn:active {
    transform: scale(1.01);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(138, 43, 226, 0.35);
    /* Glowing violet-purple border */
    box-shadow: 0 -3px 15px rgba(138, 43, 226, 0.2);
    padding: 35px 0;
    margin-top: 5rem;
    background: rgba(13, 1, 26, 0.6);
}

.footer-bottom-bar .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-bottom-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-bottom-nav a:hover {
    color: var(--gold-primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .site-footer {
        padding: 60px 0 0 0;
    }

    .footer-about-text {
        text-align: center;
    }

    .footer-about-col {
        text-align: center;
    }

    .footer-right-col {
        text-align: center;
        align-items: center;
    }

    .payment-methods-grid {
        justify-content: center;
    }

    .footer-bottom-bar .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }
}

/* ==========================================================================
   Premium About Us Page Layout & Styles
   ========================================================================== */

/* Hero Banner Updates */
.inner-hero {
    min-height: 50vh;
    padding: calc(var(--header-height) + 80px) 5% 60px 5%;
    background: radial-gradient(circle at center, #230641 0%, #080012 100%);
}

.inner-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

/* Glassmorphic Badge */
.inner-hero-badge {
    padding: 8px 16px;
    background: rgba(255, 208, 0, 0.05);
    border: 1px solid rgba(255, 208, 0, 0.25);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.05);
    animation: fadeInDown 0.6s ease-out;
}

.inner-hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

.inner-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    text-transform: capitalize;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
    letter-spacing: -2px;
    animation: fadeInDown 0.8s ease-out;
}

.inner-hero-breadcrumbs {
    padding: 6px 18px;
    background: rgba(21, 2, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeInDown 1s ease-out;
}

.inner-hero-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.inner-hero-breadcrumbs a:hover {
    color: var(--gold-primary);
    text-shadow: var(--gold-glow);
}

.inner-hero-breadcrumbs .breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

.inner-hero-breadcrumbs .breadcrumb-current {
    color: var(--text-light);
    font-weight: 600;
}

/* About Intro Grid */
.about-section {
    padding: 100px 5% 60px 5%;
    background: #0d011a;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    margin-bottom: 7rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.about-image-wrapper .about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img-tag {
    position: absolute;
    bottom: -15px;
    right: -15px;
    padding: 12px 24px;
    background: var(--gold-btn-gradient);
    color: #2b1400;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: var(--gold-glow), 0 8px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatDie1 6s infinite ease-in-out;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-intro-tagline {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 30px;
}

.about-intro-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--gold-primary);
}

.about-intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.about-intro-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    text-align: justify;
    margin: 0;
}

/* Re-designed Pillars Section (2x2 Grid) */
.about-grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-grid-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-grid-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-btn-gradient);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    width: 100%;
}

.about-pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 208, 0, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-pillar-card:hover::before {
    opacity: 1;
}

.about-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 208, 0, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 208, 0, 0.1);
}

.about-pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.about-pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.about-pillar-card:hover .about-pillar-icon {
    background: rgba(255, 208, 0, 0.08);
    border-color: rgba(255, 208, 0, 0.6);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.25);
    transform: scale(1.08) rotate(3deg);
}

.about-pillar-num {
    font-size: 2.5rem;
    font-weight: 200;
    color: rgba(255, 208, 0, 0.15);
    letter-spacing: -1px;
    transition: var(--transition-smooth);
}

.about-pillar-card:hover .about-pillar-num {
    color: rgba(255, 208, 0, 0.6);
    text-shadow: var(--gold-glow);
}

.about-pillar-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.about-pillar-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: justify;
}

/* Premium Mission & Footer Block */
.about-footer-block {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.about-mission-panel {
    background: rgba(20, 2, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.about-mission-panel::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 12rem;
    color: rgba(255, 208, 0, 0.03);
    font-family: serif;
    line-height: 1;
}

.about-mission-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.about-mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 300;
}

.about-thankyou-card {
    background: linear-gradient(135deg, rgba(20, 2, 36, 0.95) 0%, rgba(35, 6, 68, 0.95) 100%);
    border: 1px solid rgba(255, 208, 0, 0.4);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 850px;
    width: 100%;
}

.about-thankyou-card p {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.about-thankyou-card p span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thankyou-decor {
    color: var(--gold-primary);
    font-size: 1.8rem;
    line-height: 1;
    text-shadow: var(--gold-glow);
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-intro-content {
        align-items: center;
    }

    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-pillar-card {
        padding: 2.5rem;
    }

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

    .inner-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 5% 40px 5%;
    }

    .about-intro-title {
        font-size: 2.2rem;
    }

    .about-intro-text {
        font-size: 1.05rem;
    }

    .about-pillar-card {
        padding: 2rem;
    }

    .inner-hero-title {
        font-size: 2.8rem;
    }
}

/* Styled Inner Glow Paragraph Boxes */
.about-glow-box {
    background: rgba(20, 2, 41, 0.45);
    border: 1px solid rgba(255, 208, 0, 0.18);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 0.5rem; /* Additional gap buffer */
    color: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 20px rgba(255, 208, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.about-glow-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 208, 0, 0.55);
    box-shadow: inset 0 0 30px rgba(255, 208, 0, 0.22), 0 10px 30px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.about-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 208, 0, 0.06);
    border: 1px solid rgba(255, 208, 0, 0.25);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-glow-box:hover .about-box-icon {
    background: rgba(255, 208, 0, 0.15);
    border-color: rgba(255, 208, 0, 0.6);
    box-shadow: var(--gold-glow);
    transform: scale(1.05);
}

.about-box-text {
    flex-grow: 1;
}

.about-box-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

.about-glow-box.highlight-thankyou {
    border: 1px solid rgba(255, 208, 0, 0.45);
    background: linear-gradient(135deg, rgba(30, 3, 58, 0.6) 0%, rgba(53, 6, 98, 0.6) 100%);
    box-shadow: inset 0 0 25px rgba(255, 208, 0, 0.18), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.about-glow-box.highlight-thankyou .about-box-text p {
    font-weight: 500;
}

.about-glow-box.highlight-thankyou span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsiveness for glow boxes */
@media (max-width: 768px) {
    .about-image {
        margin-bottom: 2.5rem;
    }
    .about-glow-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 24px;
        align-items: center;
        text-align: center;
    }
    .about-box-text p {
        text-align: center;
    }
}

/* Align FAQ sticky assets next to title (not above) on About Us page */
.about-page .faq-sticky-left-wrapper,
.about-page .faq-sticky-right-wrapper {
    top: 140px;
    height: calc(100% - 140px);
}

/* ==========================================================================
   Disclaimer Page Specific Layout
   ========================================================================== */
.disclaimer-section {
    padding: 100px 5% 100px 5%;
    background: #0d011a;
    position: relative;
    z-index: 10;
}

.disclaimer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 4.5rem 4rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

.disclaimer-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3.5rem;
}

.disclaimer-header-accent .decor-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.4), transparent);
}

.disclaimer-header-accent .decor-symbol {
    color: var(--gold-primary);
    font-size: 1.3rem;
    text-shadow: var(--gold-glow);
    animation: pulseGlow 2s infinite ease-in-out;
}

.disclaimer-alert-box {
    display: flex;
    gap: 1.8rem;
    background: rgba(255, 208, 0, 0.03);
    border: 1px solid rgba(255, 208, 0, 0.22);
    border-radius: 16px;
    padding: 26px 32px;
    margin-bottom: 3.5rem;
    box-shadow: inset 0 0 20px rgba(255, 208, 0, 0.05), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-alert-box .alert-icon {
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(var(--gold-glow));
}

.disclaimer-alert-box p {
    font-size: 1.12rem;
    line-height: 1.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.disclaimer-body-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.disclaimer-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.disclaimer-item .item-icon {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 4px;
    text-shadow: var(--gold-glow);
    flex-shrink: 0;
}

.disclaimer-item p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    text-align: justify;
}

.disclaimer-footer-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer-footer-panel .acknowledgement-text {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    font-style: italic;
}

.disclaimer-footer-panel .panel-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.4), transparent);
    margin: 0 auto 2.5rem auto;
}

.disclaimer-footer-panel .contact-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 208, 0, 0.25);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 208, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    width: 100%;
}

.disclaimer-footer-panel .contact-text span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsiveness for disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 50px 5% 20px 5%;
    }
    .site-footer {
        padding: 30px 0 0 0;
    }
    .disclaimer-card {
        padding: 3rem 2rem;
    }
    .disclaimer-alert-box {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
        text-align: center;
    }
    .disclaimer-alert-box p {
        text-align: center;
    }
    .disclaimer-item {
        gap: 1rem;
    }
    .disclaimer-footer-panel {
        padding-top: 2.5rem;
    }
}

/* ==========================================================================
   Privacy Policy Page Specific Layout
   ========================================================================== */
.privacy-section {
    padding: 100px 5% 100px 5%;
    background: #0d011a;
    position: relative;
    z-index: 10;
}

.privacy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 4.5rem 4rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

.privacy-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3.5rem;
}

.privacy-header-accent .decor-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.4), transparent);
}

.privacy-header-accent .decor-symbol {
    color: var(--gold-primary);
    font-size: 1.3rem;
    text-shadow: var(--gold-glow);
    animation: pulseGlow 2s infinite ease-in-out;
}

.privacy-alert-box {
    display: flex;
    gap: 1.8rem;
    background: rgba(255, 208, 0, 0.03);
    border: 1px solid rgba(255, 208, 0, 0.22);
    border-radius: 16px;
    padding: 26px 32px;
    margin-bottom: 3.5rem;
    box-shadow: inset 0 0 20px rgba(255, 208, 0, 0.05), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-alert-box .alert-icon {
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(var(--gold-glow));
}

.privacy-alert-box p {
    font-size: 1.12rem;
    line-height: 1.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.privacy-consent-intro {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
    margin: 0 0 3.5rem 0;
    font-weight: 400;
    font-style: italic;
}

.privacy-body-flow {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.privacy-content-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.privacy-block-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-block-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold-btn-gradient);
}

.privacy-content-block p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    text-align: justify;
    margin: 0;
}

.privacy-subblock {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.privacy-subblock h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 0;
}

.privacy-subblock p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.privacy-list, .privacy-list-grid {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.privacy-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.privacy-list li, .privacy-list-grid li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-list li span, .privacy-list-grid li span {
    color: var(--gold-primary);
    text-shadow: var(--gold-glow);
    font-size: 0.95rem;
}

.privacy-footer-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-footer-panel .acknowledgement-text {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    font-style: italic;
}

.privacy-footer-panel .panel-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.4), transparent);
    margin: 0 auto 2.5rem auto;
}

.privacy-footer-panel .contact-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 208, 0, 0.25);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 208, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    width: 100%;
}

.privacy-footer-panel .contact-text span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsiveness for privacy page */
@media (max-width: 768px) {
    .privacy-section {
        padding: 50px 5% 20px 5%;
    }
    .site-footer {
        padding: 30px 0 0 0;
    }
    .privacy-card {
        padding: 3rem 2rem;
    }
    .privacy-alert-box {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
        text-align: center;
    }
    .privacy-alert-box p {
        text-align: center;
    }
    .privacy-list-grid {
        grid-template-columns: 1fr;
    }
    .privacy-footer-panel {
        padding-top: 2.5rem;
    }
}

/* ==========================================
   Keywords Banner Custom Styles (Antigravity Design)
   ========================================== */
.keyword-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    z-index: 5;
}

.keyword-banner-box {
    background: rgba(30, 10, 60, 0.4);
    border: 2px solid rgba(255, 208, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(138, 43, 226, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s ease-out;
}

.keyword-banner-box:hover {
    border-color: rgba(255, 208, 0, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
                inset 0 1px 2px rgba(255, 255, 255, 0.15),
                0 0 40px rgba(255, 208, 0, 0.15);
}

.keyword-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -1.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
    text-align: center;
}

.keyword-hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    text-align: center;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 0.6rem;
    line-height: 2.2;
}

.keyword-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid transparent;
}

.keyword-tag:hover {
    color: var(--gold-primary);
    background: rgba(255, 208, 0, 0.08);
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 208, 0, 0.1);
}

.keyword-divider {
    color: var(--gold-primary);
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.4;
    user-select: none;
    margin: 0 2px;
    text-shadow: 0 0 8px rgba(255, 208, 0, 0.4);
}

.keyword-cta-container {
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .keyword-hero-container {
        padding: 2rem 1rem;
    }

    .keyword-hero-title {
        font-size: 2.5rem;
    }
    
    .keyword-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
    }
    
    .keyword-banner-box {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        border: 2px solid rgba(255, 208, 0, 0.3);
        background: rgba(30, 10, 60, 0.35);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                    0 0 20px rgba(138, 43, 226, 0.15);
    }
    
    /* Paragraph-style flowing keyword cloud */
    .keyword-cloud {
        display: block;
        text-align: center;
        line-height: 2.4;
    }
    
    .keyword-tag {
        font-size: 1rem;
        font-weight: 600;
        padding: 0 2px;
        border: none;
        border-radius: 0;
        width: auto;
        display: inline;
        white-space: normal;
        color: var(--text-light);
    }
    
    .keyword-tag:hover {
        color: var(--gold-primary);
        background: none;
        border: none;
        transform: none;
        box-shadow: none;
    }
    
    .keyword-tag:last-child {
        border: none;
    }
    
    /* Show dividers inline in responsive view */
    .keyword-divider {
        display: inline;
        color: var(--gold-primary);
        font-size: 1rem;
        opacity: 0.6;
        margin: 0 2px;
    }
    
    .keyword-cta-container {
        margin-top: 2rem;
    }

    .keyword-cta-container .hero-cta {
        padding: 10px 28px;
        font-size: 1rem;
        border-radius: 30px;
    }
}