/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-text .highlight {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background-color: rgba(255, 193, 7, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--darker-bg);
    z-index: 999;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--secondary-color);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    grid-column: span 3;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    grid-column: span 6;
    display: flex;
    justify-content: space-between;
}

.link-group {
    flex: 1;
    padding: 0 1rem;
}

.link-group h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.link-group a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-links i {
    color: var(--secondary-color);
}

.footer-social {
    grid-column: span 3;
}

.footer-social h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.payment-methods h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0.7;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-button i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.login-button {
    background-color: rgba(255, 255, 255, 0.05);
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.register-button {
    background-color: var(--primary-color);
    color: white;
}

.register-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

.bonus-button {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.bonus-button:hover {
    background-color: darken(var(--secondary-color), 10%);
    filter: brightness(0.9);
    color: var(--dark-bg);
}

/* Adjust main content padding for fixed header and sticky buttons */
body {
    padding-top: 70px;
    /* Height of the header */
    padding-bottom: 60px;
    /* Height of the sticky buttons */
}

/* Media Queries for Responsiveness */
@media (max-width: 1150px) {
    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .link-group {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo,
    .footer-social {
        grid-column: span 1;
    }

    .footer-links {
        grid-column: span 2;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-column: span 1;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .sticky-button {
        padding: 0.6rem 0;
    }

    .sticky-button i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .sticky-button span {
        font-size: 0.7rem;
    }
}

/* Base Theme Styles */
:root {
    /* Color palette */
    --primary-color: #8a2be2;
    /* Vibrant purple */
    --primary-dark: #6a1cb0;
    /* Darker purple for hover states */
    --secondary-color: #ffc107;
    /* Gold accent */
    --dark-bg: #111111;
    /* Main dark background */
    --darker-bg: #0a0a0a;
    /* Darker sections */
    --card-bg: #1a1a1a;
    /* Card/section background */
    --text-primary: #ffffff;
    /* Main text color */
    --text-secondary: #cccccc;
    /* Secondary text color */
    --text-muted: #999999;
    /* Less important text */
    --border-color: #333333;
    /* Border color */
    --gradient-start: #8a2be2;
    /* Gradient start */
    --gradient-end: #4b0082;
    /* Gradient end */
    /* 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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Container for content width control */
.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.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--heading-font);
    font-size: 1rem;
    gap: 0.5rem;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 43, 226, 0.5);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 100%;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, var(--text-primary), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
    opacity: 0.7;
    z-index: -1;
}

/* Features Grid */
.hero-features {
    background-color: var(--darker-bg);
    padding: 3rem 0;
    margin-top: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .hero-section .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        max-width: 55%;
    }

    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }
}

/* Features Section Styles */
.features-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138, 43, 226, 0.5), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.section-divider span {
    padding: 0 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.features-text {
    flex: 1;
}

.features-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.features-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-button {
    margin-top: 2rem;
}

.features-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.floating-animation {
    width: 100%;
    display: block;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

.badge-inner {
    text-align: center;
    color: white;
}

.badge-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.3rem;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.game-types {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.game-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.game-type:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.game-type i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.game-type span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Feature Cards Grid */
.features-cards {
    background-color: var(--darker-bg);
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26, 26, 26, 0.6));
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .features-content {
        flex-direction: row;
    }

    .features-text {
        max-width: 55%;
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .game-types {
        flex-wrap: wrap;
    }

    .game-type {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .features-text p {
        font-size: 1rem;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .game-type {
        flex: 0 0 100%;
    }
}

/* Live Betting Section Styles */
.live-betting-section {
    padding: var(--section-padding);
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.live-betting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.15), transparent 60%);
    pointer-events: none;
}

.live-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.live-image {
    position: relative;
    flex: 1;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.main-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-badge::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.live-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.stat i {
    color: var(--secondary-color);
}

.live-platforms {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.platform {
    flex: 1;
    background: linear-gradient(145deg, var(--darker-bg), rgba(10, 10, 10, 0.9));
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.platform i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.platform span {
    font-size: 0.9rem;
    font-weight: 600;
}

.live-text {
    flex: 1;
}

.live-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.live-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.betting-options {
    list-style: none;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.betting-options li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.betting-options li:last-child {
    border-bottom: none;
}

.betting-options li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Betting Types Styles */
.betting-types {
    background-color: var(--darker-bg);
    padding: 4rem 0;
}

.type-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.type-heading h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.type-heading p {
    color: var(--text-muted);
    font-size: 1rem;
}

.betting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.betting-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.betting-type:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.type-icon i {
    color: white;
    font-size: 1.3rem;
}

.type-content {
    flex: 1;
}

.type-content h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.type-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.baccarat-link {
    margin-top: 3rem;
    text-align: center;
}

.baccarat-link p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.baccarat-link a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.baccarat-link a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .live-content {
        flex-direction: row-reverse;
    }

    .live-text {
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .betting-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .type-heading h3 {
        font-size: 1.6rem;
    }

    .live-platforms {
        flex-wrap: wrap;
    }

    .platform {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 767px) {
    .betting-grid {
        grid-template-columns: 1fr;
    }

    .live-stats {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 0.8rem;
    }

    .cta-container .btn {
        width: 100%;
    }

    .type-heading h3 {
        font-size: 1.4rem;
    }

    .live-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .platform {
        flex: 0 0 100%;
    }

    .live-badge {
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }

    .betting-options {
        padding: 1rem;
    }

    .betting-options li {
        padding: 0.5rem 0;
    }
}

/* Trustworthy Section Styles */
.trustworthy-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.trustworthy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(138, 43, 226, 0.1), transparent 60%);
    pointer-events: none;
}

.trustworthy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.trustworthy-text {
    flex: 1;
}

.trustworthy-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.trustworthy-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trustworthy-cta {
    margin-top: 2rem;
}

.trustworthy-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26, 26, 26, 0.6));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-header h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.card-body {
    padding: 1.5rem;
}

.card-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.card-body ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.payment-methods,
.contact-methods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.payment-methods i,
.contact-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover,
.contact-methods i:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.certifications {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 250px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certifications:hover .certificate-image {
    transform: scale(1.1);
}

.certifications-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.overlay-content {
    text-align: center;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.certification-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.7rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: rgba(138, 43, 226, 0.3);
}

.badge i {
    color: var(--secondary-color);
}

/* Security Highlights Styles */
.security-highlights {
    background-color: var(--darker-bg);
    padding: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.highlight-icon i {
    color: white;
    font-size: 1.3rem;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .trustworthy-content {
        flex-direction: row;
    }

    .trustworthy-text {
        max-width: 50%;
        padding-right: 2rem;
    }

    .trustworthy-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .trustworthy-text p {
        font-size: 1rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .certification-badges {
        grid-template-columns: 1fr;
    }

    .payment-methods,
    .contact-methods {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trustworthy-features {
        grid-template-columns: 1fr;
    }

    .certifications {
        grid-column: span 1;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        margin-bottom: 1.5rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Casino Experience Section Styles */
.casino-experience-section {
    padding: var(--section-padding);
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.casino-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.08), transparent 70%);
    pointer-events: none;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.experience-image {
    flex: 1;
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.game-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-badge {
    flex: 1;
    min-width: calc(25% - 1rem);
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.game-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.game-badge i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.game-badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

.casino-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-text {
    flex: 1;
}

.experience-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.experience-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.experience-text a {
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.experience-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.game-list {
    list-style: none;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.game-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.game-list li:last-child {
    border-bottom: none;
}

.game-list li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.experience-cta {
    margin-top: 2rem;
}

/* Game Categories Styles */
.game-categories {
    background-color: var(--darker-bg);
    padding: 4rem 0;
}

.categories-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-heading h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.categories-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26, 26, 26, 0.6));
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.category-card h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .experience-content {
        flex-direction: row-reverse;
    }

    .experience-image {
        max-width: 45%;
    }

    .experience-text {
        padding-right: 2rem;
    }
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .categories-heading h3 {
        font-size: 1.6rem;
    }

    .casino-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .game-badges {
        flex-wrap: wrap;
    }

    .game-badge {
        min-width: calc(50% - 0.5rem);
    }

    .experience-text p {
        font-size: 1rem;
    }

    .game-list li {
        padding: 0.8rem 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-heading h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .game-badge {
        min-width: 100%;
    }

    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-card h4 {
        font-size: 1.2rem;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(138, 43, 226, 0.1), transparent 60%);
    pointer-events: none;
}

.promotions-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.promotions-text {
    flex: 1;
}

.promotions-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.promotions-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-cta {
    margin-top: 2rem;
}

.social-media-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26, 26, 26, 0.6));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.facebook-header {
    background: linear-gradient(45deg, #3b5998, #1877f2);
}

.twitter-header {
    background: linear-gradient(45deg, #1da1f2, #0077b5);
}

.instagram-header {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.line-header {
    background: linear-gradient(45deg, #06c755, #00b900);
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.card-content {
    padding: 1.5rem;
}

.content-preview {
    margin-bottom: 1.5rem;
}

.content-preview h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.preview-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.preview-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.preview-actions span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.preview-actions i {
    color: var(--secondary-color);
}

.follow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.facebook-button {
    background-color: #1877f2;
}

.facebook-button:hover {
    background-color: #3b5998;
    color: white;
}

.twitter-button {
    background-color: #1da1f2;
}

.twitter-button:hover {
    background-color: #0077b5;
    color: white;
}

.instagram-button {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram-button:hover {
    background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045);
    color: white;
}

.line-button {
    background-color: #06c755;
}

.line-button:hover {
    background-color: #00b900;
    color: white;
}

/* Latest Promotions Styles */
.latest-promotions {
    background-color: var(--darker-bg);
    padding: 4rem 0;
}

.promotions-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.promotions-heading h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promotions-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.promo-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26, 26, 26, 0.6));
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.promo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.promo-card h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.promo-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.promo-button:hover {
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 43, 226, 0.4);
    color: white;
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .promotions-content {
        flex-direction: row;
    }

    .promotions-text {
        max-width: 50%;
        padding-right: 2rem;
    }
}

@media (max-width: 1200px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .social-media-container {
        grid-template-columns: 1fr;
    }

    .promotions-heading h3 {
        font-size: 1.6rem;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .promotions-text p {
        font-size: 1rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotions-heading h3 {
        font-size: 1.4rem;
    }

    .promo-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .preview-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .promo-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .card-header {
        padding: 1rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }
}