/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-tagline {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    margin-left: 2rem;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.login-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.register-btn {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.register-btn:hover {
    background-color: #e6af00;
    transform: translateY(-2px);
}

.header-btn i {
    margin-right: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 1100;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-navigation {
    padding: 1.5rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    color: var(--text-primary);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    padding: 4rem 0 1rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
}

.footer-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-menu {
    flex: 1;
    min-width: 150px;
}

.footer-menu h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-menu h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-item span {
    font-size: 0.95rem;
}

.footer-middle {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods, .security-badges {
    flex: 1;
    min-width: 280px;
}

.payment-methods h4, .security-badges h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.payment-icons, .badge-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon, .badge-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-icon i, .badge-icon i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-icon:hover i, .badge-icon:hover i {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

.payment-icon span, .badge-icon span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.copyright p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media screen and (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-brand {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }

    .footer-nav {
        width: 100%;
    }
    
    .footer-middle {
        gap: 2rem;
    }
    
    main {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-menu {
        min-width: 100%;
    }
    
    .footer-menu h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-menu li {
        margin-bottom: 0;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .payment-icons, .badge-icons {
        justify-content: center;
    }
    
    .payment-methods, .security-badges {
        text-align: center;
        flex: 0 0 100%;
    }
    
    .payment-methods h4, .security-badges h4 {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
        width: 100%;
    }
    
    .sticky-buttons a {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }

    .sticky-buttons a i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .header-wrapper {
        padding: 0.6rem 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-tagline {
        display: none;
    }

    .footer-menu ul {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .payment-icons, .badge-icons {
        gap: 1rem;
    }
    
    .payment-icon i, .badge-icon i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .payment-icon span, .badge-icon span {
        font-size: 0.75rem;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .sticky-buttons a {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }

    .sticky-buttons a i {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
}

/* Sticky Bottom Buttons - Additional/Refined Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-buttons a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.sticky-buttons a i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.sticky-buttons a:nth-child(1) {
    background-color: var(--secondary-color);
}

.sticky-buttons a:nth-child(2) {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.sticky-buttons a:nth-child(3) {
    background-color: #2196f3;
}

.sticky-buttons a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media screen and (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo-text,
    .footer-tagline {
        text-align: center;
    }

    .footer-links {
        flex: 0 0 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    main {
        padding-bottom: 70px;
        /* Space for sticky buttons */
    }
}

@media screen and (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-column {
        flex: 0 0 100%;
    }

    .footer-links-column h3 {
        text-align: center;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column ul {
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .sticky-buttons a {
        font-size: 0.8rem;
    }

    .sticky-buttons a i {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .header-wrapper {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.8rem;
    }

    .sticky-buttons a {
        padding: 0.6rem 0;
        font-size: 0.7rem;
    }

    .sticky-buttons a i {
        font-size: 1rem;
    }
}

/* Base Theme Styles */
:root {
    /* Color palette - Dark Theme */
    --primary-color: #ffc107;
    /* Gold accent color */
    --secondary-color: #e91e63;
    /* Pink accent for CTAs */
    --dark-bg: #121212;
    /* Main dark background */
    --darker-bg: #0a0a0a;
    /* Darker sections */
    --card-bg: #1e1e1e;
    /* Card backgrounds */
    --text-primary: #ffffff;
    /* Main text color */
    --text-secondary: #bbbbbb;
    /* Secondary text color */
    --text-muted: #888888;
    /* Muted text color */
    --border-color: #333333;
    /* Border color */
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Spacing */
    --section-padding: 4rem 1rem;
    --container-width: 1280px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-primary:hover {
    background-color: #e6af00;
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: #d81557;
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-buttons a {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sticky-buttons a:last-child {
    border-right: none;
}

.sticky-buttons a:nth-child(1) {
    background-color: var(--secondary-color);
}

.sticky-buttons a:nth-child(2) {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.sticky-buttons a:nth-child(3) {
    background-color: #2196f3;
    /* Blue accent for third button */
}

.sticky-buttons a:hover {
    background-color: var(--card-bg);
    color: var(--primary-color);
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+CjxyZWN0IHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgZmlsbD0ibm9uZSIvPgo8Y2lyY2xlIGN4PSIzIiBjeT0iNCIgcj0iMC40IiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+CjxjaXJjbGUgY3g9IjEwIiBjeT0iMjAiIHI9IjAuNCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA3KSIvPgo8Y2lyY2xlIGN4PSIyNSIgY3k9IjM1IiByPSIwLjQiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNikiLz4KPGNpcmNsZSBjeD0iNDAiIGN5PSIxNSIgcj0iMC40IiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDQpIi8+Cjwvc3ZnPg==');
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --section-padding: 2.5rem 1rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
    }
}

/* Experience Section Styles */
.experience-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
}

.experience-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSIvPgo8Y2lyY2xlIGN4PSIyIiBjeT0iMiIgcj0iMC41IiBmaWxsPSJyZ2JhKDI1NSwgMTkzLCA3LCAwLjA4KSIvPgo8L3N2Zz4=');
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    display: inline-block;
    position: relative;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--border-color);
}

.section-divider::before {
    right: 30px;
}

.section-divider::after {
    left: 30px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 0 15px;
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-text {
    margin-bottom: 3rem;
}

.experience-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.experience-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.btn-text i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary-color);
}

.btn-text:hover i {
    transform: translateX(5px);
}

.experience-cta {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-image {
    flex: 1;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
    border-radius: 10px 0 0 10px;
}

.cta-content {
    flex: 1;
    padding: 2rem;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    margin-bottom: 1.5rem;
}

/* Media Queries for Experience Section */
@media screen and (max-width: 992px) {
    .experience-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-cta {
        flex-direction: column;
    }

    .experience-image {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-divider::before,
    .section-divider::after {
        width: 40px;
    }

    .section-divider::before {
        right: 20px;
    }

    .section-divider::after {
        left: 20px;
    }
}

@media screen and (max-width: 576px) {
    .experience-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }
}

/* Trust Section Styles */
.trust-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(30, 30, 30, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.trust-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.trust-image-container {
    flex: 0 0 40%;
    position: sticky;
    top: 2rem;
}

.trust-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.security-img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.trust-image:hover .security-img {
    transform: scale(1.03);
}

.security-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-primary);
}

.badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

.trust-info {
    flex: 1;
}

.trust-points {
    margin-bottom: 2rem;
}

.trust-point {
    display: flex;
    margin-bottom: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.point-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.point-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.trust-point:hover .point-icon i {
    transform: scale(1.2);
}

.point-content {
    flex: 1;
}

.point-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.point-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.point-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.additional-info {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.additional-info p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.additional-info p:last-child {
    margin-bottom: 0;
}

.additional-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trust-cta {
    text-align: center;
}

/* Media Queries for Trust Section */
@media screen and (max-width: 1100px) {
    .trust-content {
        flex-direction: column;
    }

    .trust-image-container {
        flex: 0 0 100%;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .trust-point {
        flex-direction: column;
        align-items: flex-start;
    }

    .point-icon {
        margin-bottom: 1rem;
    }

    .security-badges {
        padding: 0.5rem;
    }

    .badge i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .badge span {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 576px) {
    .trust-point {
        padding: 1.2rem;
    }

    .point-content h3 {
        font-size: 1.1rem;
    }

    .additional-info {
        padding: 1.2rem;
    }

    .security-badges {
        flex-wrap: wrap;
    }

    .badge {
        width: 50%;
        margin-bottom: 0.5rem;
    }
}

/* Promotions Section Styles */
.promotions-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.promotions-content {
    position: relative;
    z-index: 2;
}

.promotions-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.promotions-intro p {
    font-size: 1.1rem;
}

.promotions-intro strong {
    color: var(--primary-color);
}

.promotions-cards {
    margin-bottom: 3rem;
}

.promo-cards-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.promo-card {
    flex: 1;
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(20, 20, 20, 1) 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promo-card-header {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-card-header i {
    font-size: 2rem;
    color: var(--darker-bg);
}

.promo-card-header h3 {
    color: var(--darker-bg);
    margin-bottom: 0;
    font-size: 1.3rem;
}

.promo-card-body {
    padding: 1.5rem;
}

.promo-card-body p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.promo-card-body strong {
    color: var(--primary-color);
}

.promo-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 0 10px 0 10px;
    z-index: 3;
}

.promotions-slots {
    display: flex;
    gap: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.slots-content {
    flex: 1;
    padding: 2rem;
}

.slots-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.slots-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.slots-content strong {
    color: var(--primary-color);
}

.slots-content .btn {
    margin-top: 1rem;
}

.slots-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.slot-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotions-slots:hover .slot-promo-img {
    transform: scale(1.05);
}

.slots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.slots-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 193, 7, 0.9);
    color: var(--darker-bg);
    padding: 1rem 2rem;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-text {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
}

.bonus-amount {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.bonus-desc {
    font-size: 0.9rem;
}

.promotions-cta {
    background: linear-gradient(90deg, var(--card-bg) 0%, rgba(30, 30, 30, 1) 100%);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Media Queries for Promotions Section */
@media screen and (max-width: 992px) {
    .promo-cards-row {
        flex-direction: column;
    }

    .promotions-slots {
        flex-direction: column;
    }

    .slots-image {
        flex: 0 0 300px;
    }

    .promotions-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .promotions-intro p {
        font-size: 1rem;
    }

    .slots-content h3 {
        font-size: 1.3rem;
    }

    .cta-text h3 {
        font-size: 1.3rem;
    }

    .slots-bonus {
        padding: 0.8rem 1.5rem;
    }

    .bonus-amount {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .promo-card-header {
        padding: 1.2rem;
    }

    .promo-card-body {
        padding: 1.2rem;
    }

    .promo-card-header i {
        font-size: 1.5rem;
    }

    .promo-card-header h3 {
        font-size: 1.1rem;
    }

    .slots-content {
        padding: 1.5rem;
    }

    .slots-bonus {
        transform: rotate(0);
    }

    .promotions-cta {
        padding: 1.5rem;
    }
}


/* Casino Games Section Styles */
.casino-games-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
}

.casino-games-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.casino-games-content {
    position: relative;
    z-index: 2;
}

.games-showcase {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.games-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.game-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(15, 15, 15, 1) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.game-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.game-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

.game-platform {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
}

.platform-inner {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.platform-device {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.platform-device:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.platform-device i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.platform-device span {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-primary);
}

.games-description {
    margin-bottom: 3rem;
}

.description-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.description-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.description-card p:last-child {
    margin-bottom: 0;
}

.description-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-image {
    flex: 0 0 40%;
    position: relative;
}

.game-feature-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-list {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-banner {
    background: linear-gradient(135deg, var(--card-bg) 0%, #0a0a0a 100%);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.banner-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    opacity: 0.2;
    animation: float 8s infinite linear;
}

.floating-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 40%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, 10px) rotate(90deg);
    }

    50% {
        transform: translate(0, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-10px, 10px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Media Queries for Casino Games Section */
@media screen and (max-width: 1100px) {
    .games-showcase {
        flex-direction: column;
    }

    .game-platform {
        flex: 0 0 auto;
    }

    .platform-inner {
        display: flex;
        justify-content: space-around;
        padding: 1.5rem;
    }

    .platform-device {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        margin-right: 1rem;
    }

    .platform-device i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .features-section {
        flex-direction: column;
    }

    .feature-image {
        flex: 0 0 auto;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .platform-inner {
        flex-direction: column;
    }

    .platform-device {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .platform-device:last-child {
        margin-bottom: 0;
    }

    .cta-banner {
        padding: 2rem 1rem;
    }
}


/* Tips Section Styles */
.tips-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CjxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0ibm9uZSIvPgo8cGF0aCBkPSJNMzAgMTAgTDM2IDE5IDQ2IDIxIEw0MiAzMCA0NiAzOSAzNiA0MSAzMCA1MCAyNCA0MSAxNCAzOSAxOCAzMCAxNCAyMSAyNCAxOSAzMCAxMHoiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsIDE5MywgNywgMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4=');
    opacity: 0.3;
    z-index: 1;
}

.tips-content {
    position: relative;
    z-index: 2;
}

.tips-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tips-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.tips-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.tips-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tips-sidebar {
    flex: 0 0 300px;
}

.tips-image-container {
    margin-bottom: 2rem;
}

.tips-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-cta {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-cta h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tips-list {
    flex: 1;
}

.tip-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tip-card:last-child {
    margin-bottom: 0;
}

.tip-icon {
    flex: 0 0 60px;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-icon i {
    transform: scale(1.2);
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.tip-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.tip-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.final-cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.final-cta strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Media Queries for Tips Section */
@media screen and (max-width: 992px) {
    .tips-wrapper {
        flex-direction: column;
    }

    .tips-sidebar {
        flex: 0 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .tips-image-container {
        flex: 1;
        margin-bottom: 0;
    }

    .sidebar-cta {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {
    .tips-sidebar {
        flex-direction: column;
    }

    .tips-image-container {
        margin-bottom: 1.5rem;
    }

    .tip-card {
        flex-direction: column;
    }

    .tip-icon {
        margin-bottom: 1rem;
    }

    .tips-intro p {
        font-size: 1rem;
    }

    .final-cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .tip-card {
        padding: 1.2rem;
    }

    .sidebar-cta {
        padding: 1.2rem;
    }

    .final-cta {
        padding: 1.5rem;
    }

    .tip-content h3 {
        font-size: 1.1rem;
    }
}