/* Base Theme and Reset */
:root {
    /* Main Colors */
    --primary-color: #ff0066;
    --secondary-color: #9900ff;
    --accent-color: #00ccff;
    --dark-bg: #0a0a15;
    --darker-bg: #050510;
    --card-bg: #12121f;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --border-color: #1e1e35;

    /* Button Colors */
    --btn-primary-bg: #ff0066;
    --btn-primary-hover: #ff3385;
    --btn-secondary-bg: #9900ff;
    --btn-secondary-hover: #b44dff;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.4);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(153, 0, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--btn-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 0, 255, 0.4);
}

/* Hero Section Styles */
.hero-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(153, 0, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-light), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-intro strong {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.main-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    max-width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(5deg);
    z-index: 10;
}

.promo-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.promo-amount {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .promo-badge {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-intro {
        font-size: 0.95rem;
    }

    .promo-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Header Styles */
.site-header {
    background-color: rgba(5, 5, 16, 0.95);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.logo-link {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 4px;
}

.logo-tagline {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}

.logo-link:hover .logo-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Navigation */
.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light);
}

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

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 102, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 102, 0.4);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.free-credit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 102, 0.3);
}

.free-credit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 102, 0.4);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 18px;
}

.line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.line:nth-child(1) {
    top: 0;
}

.line:nth-child(2) {
    top: 8px;
}

.line:nth-child(3) {
    top: 16px;
}

/* Active state for the hamburger icon */
.nav-toggle.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Media Queries for Responsive Header */
@media (min-width: 993px) {
    .cta-item-desktop {
        display: none;
        /* Hide the navbar CTA on desktop since it's in the header controls */
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--darker-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .cta-item-desktop {
        width: 100%;
        margin-top: 1rem;
    }

    .nav-cta-btn {
        justify-content: center;
        width: 100%;
        padding: 0.8rem;
    }

    .free-credit-btn {
        display: none;
        /* Hide the free credit button in header controls on mobile */
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.9rem;
    }
}

/** Overview Section Styles **/
.overview-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 204, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.overview-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.overview-text {
    flex: 1.4;
}

.overview-image-container {
    flex: 1;
    position: relative;
}

.highlight-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.overview-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.overview-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.features-list {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-list h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.features-list ul {
    list-style: none;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.conclusion-text {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
}

.text-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
}

.cta-button {
    margin-top: 2rem;
}

.overview-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.feature-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    background: var(--card-bg);
    padding: 0.8rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.badge span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .highlight-text {
        font-size: 1.05rem;
    }

    .overview-image-container {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .overview-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .features-list {
        padding: 1rem;
    }

    .features-list h3 {
        font-size: 1.1rem;
    }
}

/* Slot Section Styles */
.slot-section {
    padding: 5rem 0;
    background: linear-gradient(0deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.slot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 0, 102, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.slot-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.slot-image {
    flex: 1;
    position: relative;
}

.slot-info {
    flex: 1.4;
}

.slot-img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    transition: all 0.5s ease;
}

.slot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.jackpot-pulse {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(153, 0, 255, 0.3);
    animation: pulse 2s infinite;
    z-index: 3;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(153, 0, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(153, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(153, 0, 255, 0);
    }
}

.pulse-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-icon i {
    font-size: 1rem;
}

.pulse-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.slot-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
}

.slot-info p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.slot-info strong {
    color: var(--accent-color);
    font-weight: 700;
}

.promotion-cards {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promotion-cards h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.promo-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.promo-card {
    background: rgba(10, 10, 21, 0.5);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.promo-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 10, 21, 0.8);
    border-color: var(--accent-color);
}

.promo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-icon i {
    color: white;
    font-size: 1.2rem;
}

.promo-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.promo-details p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

.slot-conclusion {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.slot-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-tertiary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(153, 0, 255, 0.1);
}

.btn-tertiary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 0, 255, 0.2);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--btn-primary-hover);
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.hot {
    background: var(--primary-color);
    color: white;
}

.new {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.jackpot {
    background: var(--secondary-color);
    color: white;
}

.game-info {
    padding: 1rem;
    text-align: center;
}

.game-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.rtp {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 992px) {
    .slot-content {
        flex-direction: column;
        gap: 2rem;
    }

    .slot-image {
        width: 70%;
        margin: 0 auto;
    }

    .slot-intro {
        font-size: 1.05rem;
    }

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

@media (max-width: 768px) {
    .slot-section {
        padding: 4rem 0;
    }

    .slot-image {
        width: 90%;
    }

    .promo-card-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .slot-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .slot-section {
        padding: 3rem 0;
    }

    .slot-image {
        width: 100%;
    }

    .jackpot-pulse {
        padding: 0.6rem 1rem;
    }

    .pulse-icon {
        width: 24px;
        height: 24px;
    }

    .pulse-text {
        font-size: 0.75rem;
    }

    .slot-intro {
        font-size: 1rem;
    }

    .promotion-cards {
        padding: 1rem;
    }

    .promotion-cards h3 {
        font-size: 1.1rem;
    }
}

/* Free Credit Section Styles */
.free-credit-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.free-credit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 204, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.free-credit-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.free-credit-info {
    flex: 1.4;
}

.free-credit-image {
    flex: 1;
    position: sticky;
    top: 2rem;
}

.credit-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.free-credit-info p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.free-credit-info strong {
    color: var(--accent-color);
    font-weight: 700;
}

.steps-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.steps-container h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.steps-list {
    list-style: none;
}

.steps-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
}

.steps-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.step-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 0, 102, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.final-cta {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 2rem 0;
}

.free-credit-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-glow {
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    color: white;
    animation: glowing 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

@keyframes glowing {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 102, 0.5);
}

/* Credit Card Design */
.credit-card {
    width: 100%;
    aspect-ratio: 3/2;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.credit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #121238, #1a1a4a);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.credit-card:hover .credit-card-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

.credit-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #c4b36a, #f0dc82);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.card-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.card-amount {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.card-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.card-validity {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-align: right;
}

/* Media Queries */
@media (max-width: 992px) {
    .free-credit-content {
        flex-direction: column;
        gap: 2rem;
    }

    .free-credit-image {
        position: relative;
        top: 0;
        width: 80%;
        margin: 0 auto;
    }

    .credit-card {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .testimonials {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .free-credit-section {
        padding: 4rem 0;
    }

    .credit-intro {
        font-size: 1.05rem;
    }

    .steps-container {
        padding: 1.2rem;
    }

    .steps-list li {
        gap: 0.8rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-info h4 {
        font-size: 1rem;
    }

    .free-credit-cta {
        flex-direction: column;
    }

    .free-credit-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .free-credit-section {
        padding: 3rem 0;
    }

    .steps-container {
        padding: 1rem;
    }

    .highlight-text {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .final-cta {
        font-size: 1rem;
    }

    .card-amount {
        font-size: 2rem;
    }

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

    .testimonial {
        padding: 1rem;
    }
}

.gold-section {
    padding: 5rem 0;
    background: linear-gradient(0deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gold-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.gold-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.gold-image-container {
    flex: 1;
    position: sticky;
    top: 2rem;
}

.gold-info {
    flex: 1.4;
}

.gold-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.gold-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    transition: all 0.5s ease;
}

.gold-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.gold-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #f9df74);
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 5;
}

.gold-badge i {
    font-size: 1rem;
}

.gold-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gold-feature {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.gold-feature:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(18, 18, 31, 0.8);
}

.gold-feature i {
    color: #d4af37;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-feature span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.gold-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-left: 3px solid #d4af37;
    padding-left: 1rem;
}

.gold-info p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.gold-info strong {
    color: #d4af37;
    font-weight: 700;
}

.exclusive-features {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.exclusive-features h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-list i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(249, 223, 116, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-detail h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.feature-detail p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.final-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.gold-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f9df74);
    color: #000;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e5c149, #fff5c0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid #d4af37;
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    border-color: #f9df74;
}

/* Media Queries */
@media (max-width: 992px) {
    .gold-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .gold-image-container {
        position: relative;
        top: 0;
        width: 70%;
        margin: 0 auto;
    }

    .gold-intro {
        font-size: 1.05rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gold-section {
        padding: 4rem 0;
    }

    .gold-image-container {
        width: 90%;
    }

    .gold-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .gold-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gold-feature {
        flex: 1 0 calc(50% - 0.5rem);
        padding: 0.8rem;
    }

    .exclusive-features {
        padding: 1.2rem;
    }

    .gold-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .gold-section {
        padding: 3rem 0;
    }

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

    .gold-features {
        flex-direction: column;
    }

    .gold-feature {
        flex: 1 0 100%;
    }

    .gold-intro {
        font-size: 1rem;
    }

    .final-note {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .feature-list li {
        gap: 0.8rem;
    }

    .feature-list i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .feature-detail h4 {
        font-size: 0.95rem;
    }

    .feature-detail p {
        font-size: 0.8rem;
    }
}

/* Tips Section Styles */
.tips-section {
    padding: 6rem 0;
    /* Increased padding */
    background: linear-gradient(170deg, var(--darker-bg) 10%, var(--dark-bg) 60%, var(--darker-bg) 90%);
    /* More dynamic gradient */
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    /* Add a top separator */
    border-bottom: 1px solid var(--border-color);
    /* Add a bottom separator */
}

.tips-section::before {
    content: '';
    position: absolute;
    top: -50%;
    /* Shifted and enlarged */
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(153, 0, 255, 0.08) 0%, transparent 60%);
    /* Use secondary color with adjusted opacity */
    animation: tips-background-anim 25s linear infinite;
    /* Subtle animation */
    pointer-events: none;
    z-index: 0;
    /* Behind content */
}

@keyframes tips-background-anim {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

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

.tips-section .section-header {
    /* Ensure section-header is above the new ::before */
    position: relative;
    z-index: 2;
}

.tips-section .section-header h2 {
    font-size: 2.5rem;
    /* Slightly larger */
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
    /* Enhanced shadow using accent color */
}

.tips-section .section-header h2::after {
    width: 100px;
    /* Longer underline */
    height: 4px;
    /* Thicker underline */
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    /* Different gradient for underline */
}

.tips-content {
    display: flex;
    gap: 3rem;
    /* Original gap is fine, can be adjusted if needed */
    position: relative;
    z-index: 1;
    /* Above background effect */
}

.tips-main {
    flex: 1.6;
}

.tips-sidebar {
    flex: 1;
    position: sticky;
    top: 7rem;
    /* Adjust based on header height + section padding */
    height: calc(100vh - 8rem);
    /* Example, adjust for better scroll experience */
    overflow-y: auto;
    padding-right: 1rem;
    /* Add some padding if scrollbar appears */
}

/* Custom scrollbar for sidebar */
.tips-sidebar::-webkit-scrollbar {
    width: 8px;
}

.tips-sidebar::-webkit-scrollbar-track {
    background: rgba(10, 10, 21, 0.5);
    /* --darker-bg based */
    border-radius: 4px;
}

.tips-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.tips-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


.tips-main .tips-intro {
    font-size: 1.25rem;
    /* Larger intro text */
    color: var(--text-light);
    margin-bottom: 2rem;
    /* Increased spacing */
    border-left: 4px solid var(--secondary-color);
    /* Thicker border */
    padding-left: 1.5rem;
    /* More padding */
    line-height: 1.7;
}

.tips-main p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.tips-main strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Common style for cards in tips-main */
.tips-main .secret-box,
.tips-main .alert-box,
.tips-main .pro-strategy,
.tips-main .note-box {
    background: rgba(18, 18, 31, 0.85);
    /* --card-bg: #12121f; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 30, 53, 0.6);
    /* --border-color: #1e1e35; */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(30, 30, 53, 0.4) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2.5rem;
}

.tips-main .secret-box:hover,
.tips-main .alert-box:hover,
.tips-main .pro-strategy:hover,
.tips-main .note-box:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 204, 255, 0.5) inset;
    /* accent-color for inset border */
}

.tips-main .secret-box .secret-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 30, 53, 0.5);
    /* --border-color-rgb */
}

.tips-main .secret-box .secret-header i {
    font-size: 1.5rem;
    /* Original */
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(153, 0, 255, 0.5);
    /* secondary-color-rgb */
}

.tips-main .secret-box .secret-header h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.tips-main .secret-list {
    list-style: none;
}

.tips-main .secret-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(30, 30, 53, 0.4);
    /* --border-color-rgb */
    color: var(--text-muted);
}

.tips-main .secret-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tips-main .secret-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tips-main .secret-list li:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.tips-main .alert-box {
    display: flex;
    gap: 1.5rem;
    /* background: rgba(255, 0, 102, 0.1); Original - overridden by common card style */
    border-left: 5px solid var(--primary-color);
    /* Original */
}

.tips-main .alert-box .alert-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
    /* primary-color-rgb */
    margin-top: 0.2rem;
}

.tips-main .alert-content h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tips-main .alert-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.tips-main .pro-strategy {
    /* Common card styles apply */
}

.tips-main .pro-strategy .strategy-header {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    /* Original */
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top-left-radius: 16px;
    /* Match card's new border-radius */
    border-top-right-radius: 16px;
    /* Match card's new border-radius */
    /* Adjust margin to align with new padding of the parent card */
    margin: -2rem -2rem 2rem -2rem;
}

.tips-main .pro-strategy .strategy-header i {
    color: white;
    font-size: 1.3rem;
}

.tips-main .pro-strategy .strategy-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tips-main .pro-strategy .strategy-content {
    padding-top: 0;
    /* Header already has bottom margin */
}

.tips-main .pro-strategy .strategy-content p {
    margin-bottom: 1.5rem;
}

.tips-main .pro-strategy .strategy-image {
    border-radius: 12px;
    /* Softer */
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.tips-main .pro-strategy .strategy-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* Match container */
    transition: transform 0.5s ease;
}

.tips-main .pro-strategy .strategy-img:hover {
    transform: scale(1.03);
}

.tips-main .note-box {
    display: flex;
    gap: 1.2rem;
    /* background: rgba(0, 204, 255, 0.05); Original - overridden by common card style */
    border-left: 5px solid var(--accent-color);
    /* Original */
}

.tips-main .note-box i {
    /* Direct child i, assuming this is the icon */
    color: var(--accent-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    /* accent-color-rgb */
}

.tips-main .note-box .note-content p {
    margin-bottom: 0;
}

.tips-main .final-tip {
    font-size: 1.15rem;
    color: var(--text-light);
    background: rgba(153, 0, 255, 0.15);
    /* secondary-color with more opacity */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(153, 0, 255, 0.3);
    /* secondary-color-rgb */
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
    /* Consistent spacing */
}

.tips-main .conclusion {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 3rem 0 2.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(30, 30, 53, 0.5);
    /* --border-color-rgb */
    border-bottom: 1px dashed rgba(30, 30, 53, 0.5);
    /* --border-color-rgb */
}

.tips-main .tips-cta {
    display: flex;
    gap: 1.5rem;
    /* Increased gap */
    margin-top: 2rem;
    justify-content: center;
    /* Center CTA buttons */
}

.tips-main .tips-cta .btn {
    padding: 1rem 2rem;
    /* Larger buttons */
    font-size: 1.05rem;
}

.tips-main .tips-cta .btn-glow {
    /* btn-glow is already styled well, ensure consistency */
    /* Inherits .btn sizing */
}

.tips-main .tips-cta .btn-secondary {
    /* This might be the second button */
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.tips-main .tips-cta .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(153, 0, 255, 0.5);
    /* secondary-color-rgb */
}


/* Sidebar Card Styles */
.tips-sidebar .code-card,
.tips-sidebar .timing-box,
.tips-sidebar .games-recommended {
    background: rgba(18, 18, 31, 0.8);
    /* --card-bg-rgb */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(30, 30, 53, 0.5);
    /* --border-color-rgb */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-sidebar .code-card:last-child,
.tips-sidebar .timing-box:last-child,
.tips-sidebar .games-recommended:last-child {
    margin-bottom: 1rem;
    /* Reduce margin for last item in sidebar */
}


.tips-sidebar .code-card:hover,
.tips-sidebar .timing-box:hover,
.tips-sidebar .games-recommended:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 204, 255, 0.3) inset;
    /* accent color for sidebar cards */
}

.tips-sidebar .code-header,
.tips-sidebar .timing-header,
.tips-sidebar .games-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Increased gap */
    padding-bottom: 1.2rem;
    /* Increased padding */
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 30, 53, 0.4);
    /* --border-color-rgb */
}

.tips-sidebar .code-header h3,
.tips-sidebar .timing-header h3,
.tips-sidebar .games-header h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.tips-sidebar .code-header i,
.tips-sidebar .timing-header i,
.tips-sidebar .games-header i {
    font-size: 1.4rem;
    text-shadow: 0 0 8px currentColor;
    /* Keeps original color, adds glow */
}

.tips-sidebar .code-card .code-value {
    background: rgba(5, 5, 16, 0.7);
    /* --darker-bg-rgb */
    border: 1px dashed var(--accent-color);
    border-radius: 10px;
    /* Softer */
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tips-sidebar .code-card .code-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.tips-sidebar .copy-btn {
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    /* Softer */
    font-size: 0.85rem;
    /* Slightly larger */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tips-sidebar .copy-btn:hover {
    background: var(--text-light);
    color: var(--accent-color);
    transform: scale(1.05);
}

.tips-sidebar .copy-btn i {
    text-shadow: none;
    /* Remove inherited text shadow if any */
}

.tips-sidebar .code-card .code-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tips-sidebar .code-card .code-info p {
    margin-bottom: 0.3rem;
}

.tips-sidebar .timing-box .time-slot {
    background: rgba(5, 5, 16, 0.6);
    /* --darker-bg-rgb */
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left-width: 4px;
    /* Thicker status border */
}

.tips-sidebar .timing-box .time-slot:last-child {
    margin-bottom: 0;
}

.tips-sidebar .timing-box .time-slot:hover {
    transform: translateX(5px) scale(1.02);
    background: rgba(5, 5, 16, 0.9);
    /* --darker-bg-rgb */
}

.tips-sidebar .timing-box .time-slot.hot {
    border-left-color: var(--primary-color);
}

.tips-sidebar .timing-box .time-slot.good {
    border-left-color: var(--accent-color);
}

.tips-sidebar .timing-box .time-slot.normal {
    border-left-color: #4CAF50;
}

.tips-sidebar .timing-box .time-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.tips-sidebar .timing-box .time-label i {
    font-size: 1.1rem;
    text-shadow: none;
    /* Remove inherited text shadow if any */
}

.tips-sidebar .timing-box .time-slot.hot .time-label i,
.tips-sidebar .timing-box .time-slot.hot .jackpot-chance {
    color: var(--primary-color);
}

.tips-sidebar .timing-box .time-slot.good .time-label i,
.tips-sidebar .timing-box .time-slot.good .jackpot-chance {
    color: var(--accent-color);
}

.tips-sidebar .timing-box .time-slot.normal .time-label i,
.tips-sidebar .timing-box .time-slot.normal .jackpot-chance {
    color: #4CAF50;
}

.tips-sidebar .timing-box .time-label span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
}

.tips-sidebar .timing-box .jackpot-chance {
    font-size: 0.9rem;
    font-weight: 600;
}

.tips-sidebar .games-recommended .games-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tips-sidebar .games-recommended .game-item {
    display: flex;
    gap: 1rem;
    background: rgba(5, 5, 16, 0.6);
    /* --darker-bg-rgb */
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.tips-sidebar .games-recommended .game-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(5, 5, 16, 0.9);
    /* --darker-bg-rgb */
}

.tips-sidebar .games-recommended .game-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(30, 30, 53, 0.3);
    /* --border-color-rgb */
}

.tips-sidebar .games-recommended .game-detail {
    flex: 1;
}

.tips-sidebar .games-recommended .game-detail h4 {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tips-sidebar .games-recommended .rtp-bar {
    height: 8px;
    background: rgba(30, 30, 53, 0.5);
    /* --border-color-rgb */
    border-radius: 4px;
    /* Match fill */
    margin-bottom: 0.3rem;
    overflow: hidden;
}

.tips-sidebar .games-recommended .rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 204, 255, 0.5);
    /* accent-color-rgb */
}

.tips-sidebar .games-recommended .rtp-value {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Media Queries for Tips Section */
@media (max-width: 992px) {
    .tips-content {
        flex-direction: column;
        gap: 2rem;
    }

    .tips-sidebar {
        position: relative;
        top: 0;
        height: auto;
        overflow-y: visible;
        padding-right: 0;
    }

    .tips-main .tips-intro {
        font-size: 1.15rem;
        /* Adjust from 1.25rem base */
    }

    .tips-section .section-header h2 {
        font-size: 2.2rem;
        /* Adjust from 2.5rem base */
    }

    .tips-main .secret-box .secret-header h3,
    .tips-main .pro-strategy .strategy-header h3,
    .tips-main .alert-content h4,
    .tips-sidebar .code-header h3,
    .tips-sidebar .timing-header h3,
    .tips-sidebar .games-header h3 {
        font-size: 1.2rem;
        /* Keep headers in cards slightly smaller */
    }
}

@media (max-width: 768px) {
    .tips-section {
        padding: 4rem 0;
    }

    .tips-main .alert-box,
    .tips-main .note-box {
        /* If they have icons and text */
        flex-direction: column;
        /* Stack icon and text */
        align-items: flex-start;
        gap: 1rem;
    }

    .tips-main .tips-cta {
        flex-direction: column;
    }

    .tips-main .tips-cta .btn {
        width: 100%;
    }

    .tips-sidebar .code-card .code-value {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tips-sidebar .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .tips-main .pro-strategy .strategy-header {
        margin-left: -1.5rem;
        /* Adjust for smaller card padding */
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tips-main .secret-box,
    .tips-main .alert-box,
    .tips-main .pro-strategy,
    .tips-main .note-box,
    .tips-sidebar .code-card,
    .tips-sidebar .timing-box,
    .tips-sidebar .games-recommended,
    .tips-main .final-tip {
        padding: 1.5rem;
        /* Reduce padding on smaller screens */
    }
}

@media (max-width: 576px) {
    .tips-section {
        padding: 3rem 0;
    }

    .tips-section .section-header h2 {
        font-size: 1.9rem;
    }

    .tips-main .tips-intro {
        font-size: 1.05rem;
        padding-left: 1rem;
    }

    .tips-main .secret-box,
    .tips-main .alert-box,
    .tips-main .pro-strategy,
    .tips-main .note-box,
    .tips-sidebar .code-card,
    .tips-sidebar .timing-box,
    .tips-sidebar .games-recommended,
    .tips-main .final-tip {
        padding: 1.2rem;
        /* Further reduce padding */
        border-radius: 12px;
        /* Slightly smaller radius */
    }

    .tips-main .pro-strategy .strategy-header {
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }


    .tips-main .secret-list li {
        gap: 0.8rem;
    }

    .tips-main .pro-strategy .strategy-header {
        padding: 1rem 1.2rem;
    }

    .tips-main .final-tip {
        font-size: 1rem;
    }

    .tips-main .conclusion {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .tips-sidebar .timing-box .time-slot,
    .tips-sidebar .games-recommended .game-item {
        padding: 1rem;
        /* Adjust sidebar item padding */
    }

    .tips-sidebar .games-recommended .game-thumb {
        width: 60px;
        height: 60px;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(153, 0, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-links-column h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    text-align: center;
    margin-bottom: 1rem;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.legal-text p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .logo-text {
        font-size: 1.6rem;
    }

    .footer-links {
        justify-content: space-around;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column {
        text-align: center;
    }

    .footer-links-column ul li a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links-column {
        flex: 1 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .footer-links-column {
        flex: 1 0 100%;
    }

    .payment-methods {
        gap: 1rem;
    }

    .payment-methods i {
        font-size: 1.8rem;
    }
}

/* Sticky Action Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    /* Ensure it's above other content */
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center icon when text is hidden */
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    /* Circular buttons */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    /* Hide text initially */
    padding: 0;
    /* Reset padding */
}

.sticky-btn i {
    font-size: 1.3rem;
    transition: margin-right 0.3s ease;
    margin-right: 0;
    /* Initially no margin */
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: opacity 0.3s ease, max-width 0.3s ease 0.1s, margin-left 0.3s ease;
    margin-left: 0;
}

.sticky-btn:hover {
    width: auto;
    /* Expand to fit text */
    padding: 0 20px;
    /* Add padding when expanded */
    border-radius: 30px;
    /* Pill shape on hover */
    background: linear-gradient(135deg, var(--btn-primary-hover), var(--btn-secondary-hover));
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.sticky-btn:hover i {
    margin-right: 10px;
    /* Space between icon and text */
}

.sticky-btn:hover span {
    opacity: 1;
    max-width: 150px;
    /* Adjust as needed for longest text */
    margin-left: 0;
    /* Ensure no extra left margin if margin-right on icon is enough */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
    }

    .sticky-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        width: 45px;
        height: 45px;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }

    .sticky-btn:hover {
        padding: 0 15px;
        /* Adjust padding for smaller screens */
    }

    .sticky-btn:hover i {
        margin-right: 8px;
    }

    .sticky-btn:hover span {
        font-size: 0.85rem;
    }
}