/* HEADER STYLES */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .highlight {
    color: var(--accent-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 2px;
}

.nav-list a:hover {
    color: var(--text-primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn-login,
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--accent-color);
}

.btn-login:hover {
    background: rgba(255, 78, 80, 0.1);
}

.btn-register {
    color: white;
    background: var(--accent-color);
}

.btn-register:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-login i,
.btn-register i {
    margin-right: 5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* FOOTER STYLES */
.site-footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 30px;
    position: relative;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.age-restriction {
    margin-top: 5px !important;
    color: #ff9800 !important;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* STICKY BUTTONS */
.sticky-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.sticky-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.login-btn {
    background-color: #2e2e3a;
}

.login-btn:hover {
    background-color: #3a3a4a;
}

.register-btn {
    background-color: var(--secondary-accent);
}

.register-btn:hover {
    background-color: #5b52d6;
}

.bonus-btn {
    background-color: var(--accent-color);
}

.bonus-btn:hover {
    background-color: var(--accent-hover);
}

/* RESPONSIVE STYLES */
@media (max-width: 1100px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .nav-list li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-login,
    .btn-register {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(3px);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-column {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        margin-bottom: 20px;
    }

    .sticky-btn span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .sticky-btn i {
        margin-right: 5px;
        font-size: 1rem;
    }

    .sticky-btn span {
        font-size: 0.85rem;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Adjust main content to account for header and sticky buttons */
    main {
        margin-top: 70px;
        margin-bottom: 50px;
    }
}

/* Hero Section CSS */

/* Base Dark Theme Variables */
:root {
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --accent-color: #ff4e50;
    --accent-hover: #ff6b6b;
    --secondary-accent: #4e44ce;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --card-bg: #252525;
    --border-color: #333333;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMTYyMTNlIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMyNjMxNGUiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #ff7676);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 78, 80, 0.5);
    background: linear-gradient(45deg, #ff5a5b, #ff8787);
}

.btn-secondary {
    background: rgba(78, 68, 206, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--secondary-accent);
    box-shadow: 0 4px 15px rgba(78, 68, 206, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(78, 68, 206, 0.3);
    background: rgba(78, 68, 206, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-coin,
.floating-element {
    position: absolute;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-coin {
    color: gold;
    font-size: 2rem;
    opacity: 0.9;
}

.coin-1 {
    top: 20%;
    left: 15%;
    animation-name: float-1;
}

.coin-2 {
    top: 70%;
    right: 15%;
    animation-name: float-2;
}

.floating-element.jackpot {
    bottom: 25%;
    left: 10%;
    color: var(--warning-color);
    font-size: 2.5rem;
    animation-name: float-3;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.1) translateX(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Featured Games Section */
.featured-games-section {
    padding: 80px 20px;
    background-color: var(--primary-bg);
    position: relative;
}

.featured-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(90, 92, 106, 0.1) 0%, rgba(32, 45, 58, 0.01) 81.3%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight {
    color: var(--accent-color);
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumbnail {
    transform: scale(1.08);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

.play-btn i {
    margin-right: 5px;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    z-index: 3;
}

.game-badge i {
    margin-right: 5px;
}

.game-badge.popular {
    background: var(--secondary-accent);
}

.game-badge.new {
    background: var(--success-color);
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.game-meta span {
    display: flex;
    align-items: center;
}

.game-meta i {
    margin-right: 5px;
}

.rtp i {
    color: var(--success-color);
}

.jackpot i {
    color: var(--warning-color);
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .games-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .games-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .featured-games-section {
        padding: 60px 20px;
    }
}

@media (max-width: 576px) {
    .games-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .featured-games-section {
        padding: 50px 15px;
    }

    .game-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Tips & Strategies Section */
.tips-section {
    padding: 80px 20px;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CiAgICA8cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9IiMxZTFlMWUiPjwvcmVjdD4KICAgIDxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEiIGZpbGw9IiMyNjI2MjYiPjwvY2lyY2xlPgo8L3N2Zz4=');
    opacity: 0.3;
    z-index: 1;
}

.tips-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.tips-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.tips-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-chip {
    position: absolute;
    font-size: 2rem;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.chip-1 {
    top: -5%;
    right: 10%;
    color: var(--accent-color);
    animation-name: float-chip-1;
}

.chip-2 {
    bottom: 20%;
    left: -5%;
    color: var(--secondary-accent);
    animation-name: float-chip-2;
}

.chip-3 {
    bottom: -8%;
    right: 15%;
    color: var(--success-color);
    animation-name: float-chip-3;
}

@keyframes float-chip-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@keyframes float-chip-2 {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    50% {
        transform: translateX(15px) rotate(-10deg);
    }
}

@keyframes float-chip-3 {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-10px);
    }
}

.tips-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tips-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    background: rgba(37, 37, 37, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 78, 80, 0.3);
}

.tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff7676 100%);
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 78, 80, 0.3);
}

.tip-text {
    flex-grow: 1;
}

.tip-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tip-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tip-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.tips-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.tips-stat {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(37, 37, 37, 0.7);
    border-radius: 10px;
    flex: 1;
    border: 1px solid var(--border-color);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-family: 'Prompt', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tips-action .btn {
    align-self: center;
    width: 100%;
    max-width: 300px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .tips-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .tips-container {
        flex-direction: column;
    }

    .tips-image-container {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    .floating-chip {
        display: none;
    }
}

@media (max-width: 768px) {
    .tips-section {
        padding: 60px 20px;
    }

    .tips-cards {
        grid-template-columns: 1fr;
    }

    .tips-stat {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .tips-section {
        padding: 50px 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .tip-card {
        padding: 15px;
    }

    .tip-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .tip-text h3 {
        font-size: 1rem;
    }

    .tip-text p {
        font-size: 0.9rem;
    }
}

/* Promotions & Bonuses Section */
.promotions-section {
    padding: 80px 20px;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.promo-container {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.promo-feature {
    display: flex;
    background: linear-gradient(135deg, rgba(80, 50, 80, 0.2) 0%, rgba(48, 30, 103, 0.2) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-feature-content {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 78, 80, 0.3);
}

.promo-badge i {
    margin-right: 7px;
}

.promo-feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #ffa3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-features {
    list-style: none;
    margin-bottom: 30px;
}

.promo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.promo-features li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1.1rem;
    max-width: 250px;
}

.promo-feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.promo-shape {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff7676 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.promo-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 78, 80, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

.promo-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 78, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card-icon {
    transform: rotateY(180deg);
}

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.promo-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.promo-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.promo-link i {
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.promo-link:hover {
    color: var(--accent-hover);
}

.promo-link:hover i {
    transform: translateX(5px);
}

.promo-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
}

.note-icon {
    font-size: 1.5rem;
    color: var(--warning-color);
    flex-shrink: 0;
}

.promo-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.promo-note strong {
    color: var(--accent-color);
}

.promo-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.promo-shape-1,
.promo-shape-2,
.promo-shape-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.promo-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(70px);
}

.promo-shape-2 {
    bottom: 20%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: var(--secondary-accent);
    filter: blur(60px);
}

.promo-shape-3 {
    top: 60%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: var(--warning-color);
    filter: blur(50px);
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .promo-feature {
        flex-direction: column;
    }

    .promo-feature-content {
        padding: 30px;
        order: 2;
    }

    .promo-feature-image {
        min-height: 250px;
        order: 1;
    }

    .promo-feature-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 20px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .btn-lg {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .promotions-section {
        padding: 50px 15px;
    }

    .promo-feature-content {
        padding: 25px 20px;
    }

    .promo-feature-content h3 {
        font-size: 1.5rem;
    }

    .promo-description {
        font-size: 1rem;
    }

    .promo-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .promo-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

/* Community & Resources Section */
.community-section {
    padding: 80px 20px;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(20, 20, 30, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 20, 30, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

.community-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

/* Community Feature */
.community-feature {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.community-feature:hover .feature-img {
    transform: scale(1.05);
}

.social-media-icons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
}

.feature-text {
    padding: 25px;
}

.feature-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.feature-text .btn {
    margin-top: 10px;
}

/* Strategy Cards */
.strategy-cards {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.strategy-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.strategy-title i {
    color: var(--warning-color);
    margin-right: 10px;
}

.strategy-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.strategy-card {
    background: rgba(30, 30, 40, 0.5);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 78, 80, 0.2);
}

.strategy-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.strategy-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff7676 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
}

.strategy-author h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 2px;
}

.strategy-level {
    font-size: 0.8rem;
    color: var(--secondary-accent);
}

.strategy-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.strategy-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-stars {
    color: var(--warning-color);
    font-size: 0.9rem;
}

.upvotes {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.upvotes i {
    margin-right: 5px;
    color: var(--success-color);
}

/* Sidebar Styles */
.community-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.resources-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.resources-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.resources-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.resource-list {
    list-style: none;
}

.resource-list li {
    margin-bottom: 15px;
}

.resource-list li:last-child {
    margin-bottom: 0;
}

.resource-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 12px;
    transition: background 0.3s ease;
    border: 1px solid transparent;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 78, 80, 0.2);
}

.resource-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 78, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.resource-text {
    flex-grow: 1;
}

.resource-text h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 3px;
}

.resource-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.resource-arrow {
    margin-left: 10px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.resource-link:hover .resource-arrow {
    transform: translateX(5px);
}

.community-stats {
    background: linear-gradient(135deg, rgba(80, 50, 80, 0.2) 0%, rgba(48, 30, 103, 0.2) 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-block {
    text-align: center;
    padding: 15px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Prompt', sans-serif;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.join-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff7676 100%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 78, 80, 0.2);
}

.join-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.join-banner h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.join-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .strategy-card-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .community-layout {
        grid-template-columns: 1fr;
    }

    .community-sidebar {
        grid-row: 1;
        margin-bottom: 30px;
    }

    .resources-card {
        order: 2;
    }

    .community-stats {
        order: 3;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
    }

    .stat-block {
        flex: 1;
    }

    .join-banner {
        order: 1;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 60px 20px;
    }

    .feature-text h3 {
        font-size: 1.3rem;
    }

    .strategy-card-container {
        grid-template-columns: 1fr;
    }

    .community-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .community-section {
        padding: 50px 15px;
    }

    .social-media-icons {
        bottom: 10px;
        left: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .feature-text {
        padding: 20px;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .strategy-cards,
    .resources-card {
        padding: 20px;
    }

    .strategy-title,
    .resources-card h3 {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Trusted Site Section */
.trusted-section {
    padding: 80px 20px;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(78, 68, 206, 0.15) 0%, transparent 70%), radial-gradient(circle at 80% 70%, rgba(255, 78, 80, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.trusted-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Trust Factors Cards */
.trust-factors {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-factor-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.trust-factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(78, 68, 206, 0.3);
}

.card-header {
    background: linear-gradient(135deg, rgba(80, 50, 80, 0.2) 0%, rgba(48, 30, 103, 0.2) 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-accent) 0%, #6e64e7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(78, 68, 206, 0.3);
}

.card-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.card-body {
    padding: 20px;
}

.card-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* Trust Verification Section */
.trust-verification {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.verification-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.verification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {
    background: rgba(30, 30, 40, 0.5);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge i {
    color: var(--success-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.badge span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.payment-methods {
    margin-bottom: 25px;
}

.payment-methods h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    background: rgba(30, 30, 40, 0.5);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(78, 68, 206, 0.3);
}

.payment-icon i {
    margin-right: 8px;
    font-size: 1rem;
    color: var(--secondary-accent);
}

.trust-rating {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rating-header h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Prompt', sans-serif;
}

.rating-value span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.rating-stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(to right, var(--success-color), #4caf50);
    border-radius: 4px;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
    margin: 0;
}

.trust-cta {
    background: linear-gradient(135deg, rgba(80, 50, 80, 0.2) 0%, rgba(48, 30, 103, 0.2) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.trust-cta h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.trust-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-outline i {
    margin-right: 8px;
}

.btn-outline:hover {
    background: rgba(78, 68, 206, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(78, 68, 206, 0.2);
}

.trust-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0.2;
}

.badge-1 {
    top: 15%;
    left: 8%;
    background: var(--secondary-accent);
    animation-name: float-badge-1;
}

.badge-2 {
    bottom: 20%;
    right: 8%;
    background: var(--accent-color);
    animation-name: float-badge-2;
}

@keyframes float-badge-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float-badge-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .card-header h3 {
        font-size: 1.2rem;
    }

    .trust-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .trusted-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-verification {
        order: 1;
    }

    .trust-factors {
        order: 2;
    }

    .verification-badges {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 20px;
    }

    .verification-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rating-stars,
    .rating-count {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .trusted-section {
        padding: 50px 15px;
    }

    .card-header {
        padding: 15px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .card-body {
        padding: 15px;
    }

    .verification-card,
    .trust-cta {
        padding: 20px 15px;
    }

    .payment-icons {
        flex-direction: column;
    }

    .payment-icon {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn,
    .cta-buttons .btn-outline {
        width: 100%;
    }
}