/* Global Styles */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #3498db;
    --accent-color: #1abc9c;
    --dark-bg: #0f0f1a;
    --darker-bg: #070711;
    --light-text: #f5f5f5;
    --gray-text: #aaaaaa;
    --border-color: #222233;
    --card-bg: #161625;
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Prompt', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(142, 68, 173, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(52, 152, 219, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(26, 188, 156, 0.05) 0%, transparent 30%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(142, 68, 173, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 25%);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: var(--transition);
}

.primary-btn {
    color: var(--light-text);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.secondary-btn::before {
    opacity: 0;
}

.secondary-btn:hover::before {
    opacity: 1;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
    border-color: transparent;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 7, 17, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #f5c137;
    background: linear-gradient(135deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    animation: logoIconPulse 2s infinite alternate;
}

.logo-icon:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(245, 193, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border: 1px solid rgba(245, 193, 55, 0.3);
}

@keyframes logoIconPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(245, 193, 55, 0));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px rgba(245, 193, 55, 0.5));
    }
}

.logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #f5c137);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.logo .logo-text span {
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo .logo-text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(245, 193, 55, 0.5), rgba(255, 255, 255, 0));
    bottom: -2px;
    left: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: #f5c137;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: #f5c137;
}

.mobile-menu-btn.active i:before {
    content: "\f00d"; /* fa-times icon */
}

nav {
    transition: right 0.3s ease;
}

nav.active {
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

nav ul li a {
    transition: all 0.3s ease;
}

@media (max-width: 950px) {
    nav ul li a {
        font-size: 1.2rem;
        padding: 12px 20px;
        display: block;
        text-align: center;
        border-radius: 8px;
    }
    
    nav ul li a:hover {
        background: rgba(245, 193, 55, 0.1);
        transform: translateY(-3px);
    }
    
    nav ul li a.active {
        background: linear-gradient(90deg, rgba(245, 193, 55, 0.2), rgba(255, 157, 0, 0.2));
        color: #f5c137;
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(52, 152, 219, 0.1));
    filter: blur(40px);
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.15), transparent 70%);
    animation: float 15s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15), transparent 70%);
    animation: float 20s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1), transparent 70%);
    animation: float 12s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1::after {
    display: none;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    border-radius: 0;
    transform: scale(1);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-element {
    position: absolute;
    background-color: rgba(22, 22, 37, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-element 5s infinite alternate ease-in-out;
}

.floating-element i {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-element span {
    font-weight: 600;
    font-size: 0.9rem;
}

.element-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30px;
    right: -30px;
    animation-delay: 1s;
}

.element-3 {
    bottom: -20px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes float-element {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 10px);
    }
}

.hero-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background-color: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
}

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

/* Responsive styles for hero section */
@media (max-width: 1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 0;
    }
    
    .hero-content h1 {
        text-align: center;
        font-size: 2.4rem;
    }
    
    .hero-image-container {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about .container,
    .promotion .container {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .promotion-content {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        order: 1;
    }
    
    .about-image,
    .promotion-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .about-content h2,
    .promotion-content h2 {
        text-align: center;
    }
    
    .about-content h2::after,
    .promotion-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .promotion-list li {
        justify-content: center;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-logo h2 {
        text-align: center;
    }
}

@media (max-width: 950px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .floating-element {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(7, 7, 17, 0.95);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .sticky-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-icon:before {
        width: 25px;
        height: 25px;
    }
    
    .logo .logo-text {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    section {
        padding: 50px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin: 0 5px;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .logo-icon:before {
        width: 22px;
        height: 22px;
    }
    
    .logo .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    section {
        padding: 50px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin: 0 5px;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .logo-icon:before {
        width: 22px;
        height: 22px;
    }
    
    .logo .logo-text {
        font-size: 1.5rem;
    }
}

/* About Section */
.about {
    background-color: var(--darker-bg);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature:hover::before {
    opacity: 0.1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Games Section */
.games {
    background-color: var(--dark-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.game-card i {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.game-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.game-card p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Promotion Section */
.promotion {
    background-color: var(--darker-bg);
}

.promotion .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promotion-content h2 {
    text-align: left;
}

.promotion-content p {
    margin-bottom: 30px;
}

.promotion-list {
    margin: 30px 0;
}

.promotion-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 15px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.promotion-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.promotion-list li i {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 15px;
    font-size: 1.3rem;
}

.promotion-image {
    position: relative;
}

.promotion-image::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

/* Contact Section */
.contact {
    background-color: var(--dark-bg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    text-align: center;
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.contact-item:hover::before {
    opacity: 0.1;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-item p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: #0a0a1a;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.9) 0%, rgba(20, 20, 50, 0.8) 100%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-links h3, .footer-payment h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after, .footer-payment h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    border-radius: 2px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links ul li a:before {
    content: '→';
    margin-right: 8px;
    color: #f5c137;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f5c137;
    transform: translateX(5px);
}

.footer-links ul li a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-payment {
    flex: 1;
    min-width: 200px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #f5c137;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 193, 55, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn {
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.sticky-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .sticky-btn span {
        display: none;
    }
    
    .sticky-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }
}

.login-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(245, 193, 55, 0.5);
}

.login-btn:hover {
    background-color: rgba(245, 193, 55, 0.1);
    border-color: #f5c137;
}

.register-btn {
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    color: #0a0a1a;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 193, 55, 0.3);
}

.free-credit-btn {
    background-color: rgba(245, 193, 55, 0.2);
    color: #f5c137;
    border: 1px solid rgba(245, 193, 55, 0.5);
}

.free-credit-btn:hover {
    background-color: rgba(245, 193, 55, 0.3);
}

/* Responsive Styles for Footer and Sticky Buttons */
@media (max-width: 950px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-payment {
        width: 100%;
        min-width: 100%;
    }
    
    .footer-links h3:after, .footer-payment h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h3, .footer-payment h3 {
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .sticky-buttons {
        width: 90%;
        max-width: 450px;
        justify-content: space-between;
        padding: 8px 12px;
    }
    
    .sticky-btn {
        min-width: auto;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .sticky-buttons {
        bottom: 15px;
        width: 95%;
        padding: 6px 10px;
    }
    
    .sticky-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-width: 0;
        flex: 1;
    }
    
    .sticky-btn span {
        display: none;
    }
    
    .sticky-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap');

/* Experience Section */
.experience {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.experience .container {
    position: relative;
    z-index: 1;
}

.experience-header {
    text-align: center;
    margin-bottom: 50px;
}

.experience-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.experience-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.experience-text {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
}

.experience-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

.experience-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.experience-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.exp-feature {
    display: flex;
    align-items: flex-start;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.exp-icon {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.exp-icon i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

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

.experience-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.platform-item {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--gradient);
}

.platform-tag {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .experience-text {
        order: 0;
    }
    
    .experience-features {
        order: 1;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .experience-header h2 {
        font-size: 2.2rem;
    }
    
    .exp-feature {
        padding: 20px;
    }
    
    .exp-icon {
        flex: 0 0 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .exp-icon i {
        font-size: 1.5rem;
    }
    
    .exp-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .experience-text {
        padding: 20px;
    }
    
    .experience-header h2 {
        font-size: 1.8rem;
    }
    
    .platform-item {
        padding: 10px 20px;
    }
    
    .platform-tag {
        font-size: 0.9rem;
    }
}

/* Games Variety Section */
.games-variety {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.games-variety-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(142, 68, 173, 0.12) 0%, transparent 50%);
    z-index: 0;
    opacity: 0.8;
}

.games-variety .container {
    position: relative;
    z-index: 1;
}

.games-variety-header {
    text-align: center;
    margin-bottom: 70px;
}

.games-variety-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.games-variety-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

.games-variety-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
}

.games-variety-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 300px;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(142, 68, 173, 0.5), transparent);
    transform: translateY(-50%);
}

/* Carousel Styles */
.games-variety-carousel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-right: 30px;
}

.games-variety-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(142, 68, 173, 0.3), transparent);
}

.carousel-item {
    background: rgba(22, 22, 37, 0.7);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.92);
    opacity: 0.7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(52, 152, 219, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.carousel-item.active {
    transform: scale(1);
    opacity: 1;
    background: rgba(22, 22, 37, 0.9);
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.2);
    border-left: 4px solid var(--primary-color);
}

.carousel-item.active::before {
    opacity: 1;
}

.carousel-item:hover:not(.active) {
    transform: scale(0.96);
    opacity: 0.85;
}

.carousel-icon {
    width: 70px;
    height: 70px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.carousel-item.active .carousel-icon {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2), rgba(52, 152, 219, 0.2));
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.3);
    transform: scale(1.1);
}

.carousel-icon i {
    font-size: 2.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.carousel-item.active .carousel-icon i {
    transform: scale(1.1);
}

.carousel-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-item.active h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.carousel-item.active p {
    color: var(--light-text);
}

/* Description Styles */
.games-variety-description {
    position: relative;
}

.description-content {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(22, 22, 37, 0.5);
}

.description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05), rgba(52, 152, 219, 0.05));
    z-index: -1;
}

.description-content::-webkit-scrollbar {
    width: 6px;
}

.description-content::-webkit-scrollbar-track {
    background: rgba(22, 22, 37, 0.5);
    border-radius: 6px;
}

.description-content::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
}

.description-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-left: 5px;
}

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

.description-content strong {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Highlights Styles */
.games-variety-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.15), rgba(52, 152, 219, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.highlight-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
}

.highlight-item:hover .highlight-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    font-size: 1.15rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-text {
    color: var(--accent-color);
}

/* CTA Styles */
.games-variety-cta {
    text-align: center;
    margin-top: 30px;
}

.games-variety-cta .btn {
    padding: 18px 45px;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.games-variety-cta .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.games-variety-cta .btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.4);
}

.games-variety-cta .btn:hover::after {
    opacity: 1;
}

.games-variety-cta .btn i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.games-variety-cta .btn:hover i {
    transform: scale(1.2);
}

@media (max-width: 1100px) {
    .games-variety-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .games-variety-content::before {
        display: none;
    }
    
    .games-variety-carousel {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .games-variety-carousel::after {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(142, 68, 173, 0.3), transparent);
    }
    
    .carousel-item {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
    }
    
    .highlight-item {
        min-width: 180px;
    }
    
    .games-variety-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .games-variety {
        padding: 90px 0;
    }
    
    .games-variety-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-item {
        width: 100%;
        max-width: 100%;
    }
    
    .games-variety-highlights {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .highlight-item {
        flex: 1 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .games-variety-cta .btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .description-content {
        padding: 25px;
        max-height: 450px;
    }
    
    .games-variety-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .games-variety {
        padding: 70px 0;
    }
    
    .description-content {
        padding: 20px;
        max-height: 400px;
    }
    
    .highlight-item {
        flex: 1 0 100%;
        min-width: 100%;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 1.05rem;
    }
    
    .games-variety-cta .btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .games-variety-header h2 {
        font-size: 2rem;
    }
}

/* Worry Free Section */
.worry-free {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.worry-free-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 70% 20%, rgba(26, 188, 156, 0.12) 0%, transparent 70%),
        radial-gradient(circle at 30% 80%, rgba(142, 68, 173, 0.12) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.8;
}

.worry-free .container {
    position: relative;
    z-index: 1;
}

.worry-free-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.worry-free-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.worry-free-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 4px;
}

.worry-free-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 70px;
}

.worry-free-text-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.worry-free-text-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 188, 156, 0.3), transparent);
}

.worry-free-text {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.worry-free-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05), rgba(142, 68, 173, 0.05));
    z-index: -1;
}

.worry-free-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
}

.worry-free-text p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
}

.worry-free-text p:last-child {
    margin-bottom: 0;
}

.worry-free-text strong {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Cards */
.worry-free-features {
    position: relative;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(142, 68, 173, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.2), rgba(142, 68, 173, 0.2));
    box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .feature-content h3 {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.feature-card:hover .feature-content p {
    color: var(--light-text);
}

/* CTA Section */
.worry-free-cta {
    background: rgba(22, 22, 37, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.worry-free-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(142, 68, 173, 0.1));
    z-index: -1;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.worry-free-cta .btn {
    padding: 16px 30px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.worry-free-cta .primary-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.worry-free-cta .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 188, 156, 0.4);
}

.worry-free-cta .secondary-btn {
    border-color: var(--accent-color);
}

.worry-free-cta .secondary-btn::before {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.worry-free-cta .secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 188, 156, 0.3);
    border-color: transparent;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .worry-free-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-text {
        margin-bottom: 10px;
    }
    
    .worry-free-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .worry-free {
        padding: 90px 0;
    }
    
    .worry-free-text {
        padding: 30px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .worry-free-cta .btn {
        width: 100%;
    }
    
    .worry-free-header h2 {
        font-size: 2.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-icon:before {
        width: 25px;
        height: 25px;
    }
    
    .logo .logo-text {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .worry-free {
        padding: 70px 0;
    }
    
    .worry-free-text {
        padding: 25px;
    }
    
    .feature-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .worry-free-cta {
        padding: 30px 20px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .worry-free-header h2 {
        font-size: 2rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .logo-icon:before {
        width: 22px;
        height: 22px;
    }
    
    .logo .logo-text {
        font-size: 1.5rem;
    }
}

/* Promotions Section */
.promotions {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.promotions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(142, 68, 173, 0.12) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.8;
}

.promotions .container {
    position: relative;
    z-index: 1;
}

.promotions-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.promotions-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.promotions-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #ffc107);
    border-radius: 4px;
}

.promotions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.promotions-main {
    position: relative;
}

.promotions-text {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(22, 22, 37, 0.5);
}

.promotions-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(142, 68, 173, 0.05));
    z-index: -1;
}

.promotions-text::-webkit-scrollbar {
    width: 6px;
}

.promotions-text::-webkit-scrollbar-track {
    background: rgba(22, 22, 37, 0.5);
    border-radius: 6px;
}

.promotions-text::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), #ffc107);
    border-radius: 6px;
}

.promotions-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
}

.promotions-text p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
}

.promotions-text p:last-child {
    margin-bottom: 0;
}

.promotions-text strong {
    color: #ffc107;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Promotion Cards */
.promotions-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    perspective: 1000px;
}

.promo-card {
    background: transparent;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.promo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.promo-card:hover .promo-card-inner {
    transform: rotateY(180deg);
}

.promo-card-front, .promo-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.promo-card-front {
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
}

.promo-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(142, 68, 173, 0.1));
    z-index: -1;
    border-radius: 20px;
}

.promo-card-back {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(142, 68, 173, 0.9));
    color: white;
    transform: rotateY(180deg);
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.promo-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffc107, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card-front p {
    color: var(--gray-text);
    font-size: 1rem;
}

.promo-card-back h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.promo-card-back p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.promo-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Ticker */
.promotions-ticker {
    margin: 50px 0;
    background: rgba(22, 22, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 60px;
}

.ticker-title {
    background: linear-gradient(135deg, var(--primary-color), #ffc107);
    color: white;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ticker-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent #ffc107;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: ticker 20s linear infinite;
    padding-left: 20px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    white-space: nowrap;
    margin-right: 50px;
    color: var(--light-text);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.ticker-item::before {
    content: '•';
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.5rem;
}

/* CTA */
.promotions-cta {
    text-align: center;
    margin-top: 30px;
}

.promotions-cta .btn {
    padding: 18px 45px;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.25);
    background: linear-gradient(135deg, var(--primary-color), #ffc107);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promotions-cta .btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4);
}

.promotions-cta .btn i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.promotions-cta .btn:hover i {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .promotions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promotions-text {
        max-height: 400px;
    }
    
    .promotions-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
    
    .promo-card {
        height: 100%;
    }
    
    .promotions-header h2 {
        font-size: 2.4rem;
    }
    
    .ticker-wrapper {
        height: 50px;
    }
    
    .ticker-title::after {
        border-width: 25px 0 25px 15px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .promotions {
        padding: 90px 0;
    }
    
    .promotions-text {
        padding: 30px;
    }
    
    .promotions-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }
    
    .promo-card {
        height: 200px;
    }
    
    .promo-card-front, .promo-card-back {
        padding: 20px;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .promo-icon i {
        font-size: 2rem;
    }
    
    .promo-card-front h3 {
        font-size: 1.3rem;
    }
    
    .promo-card-back h4 {
        font-size: 1.5rem;
    }
    
    .ticker-wrapper {
        height: 40px;
    }
    
    .ticker-title {
        padding: 0 15px;
        font-size: 0.9rem;
    }
    
    .ticker-title::after {
        border-width: 20px 0 20px 12px;
        right: -12px;
    }
    
    .ticker-item {
        font-size: 0.9rem;
    }
    
    .promotions-cta .btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .promotions-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .promotions {
        padding: 70px 0;
    }
    
    .promotions-text {
        padding: 25px;
    }
    
    .promo-card {
        height: 180px;
    }
    
    .promo-card-front, .promo-card-back {
        padding: 15px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .promo-icon i {
        font-size: 1.5rem;
    }
    
    .promotions-cta {
        padding: 30px 20px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .promotions-header h2 {
        font-size: 2rem;
    }
}

/* Tablet-specific styles for promotions */
@media (min-width: 769px) and (max-width: 1100px) {
    .promotions-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 220px);
        gap: 30px;
    }
    
    .promo-card-front, .promo-card-back {
        padding: 25px;
    }
    
    .promo-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .promo-card-front h3 {
        font-size: 1.4rem;
    }
    
    .promo-card-back h4 {
        font-size: 1.6rem;
    }
}

/* Why Choose Section Styles */
.why-choose {
    position: relative;
    padding: 80px 0;
    background-color: #0a0a1a;
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.9) 0%, rgba(20, 20, 50, 0.8) 100%);
    z-index: 0;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.header-accent:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #ff9d00, #f5c137);
    left: -50px;
    border-radius: 2px;
}

.header-accent:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    right: -50px;
    border-radius: 2px;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-choose-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.why-choose-image {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 193, 55, 0.2) 0%, rgba(255, 157, 0, 0.4) 100%);
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid rgba(245, 193, 55, 0.3);
    border-radius: 30px;
    z-index: 0;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    color: #0a0a1a;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

.floating-badge:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #c27c00;
    border-right: 10px solid transparent;
}

.why-choose-text {
    color: #fff;
}

.text-wrapper {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
    scrollbar-width: thin;
    scrollbar-color: #f5c137 #1a1a3a;
}

.text-wrapper::-webkit-scrollbar {
    width: 6px;
}

.text-wrapper::-webkit-scrollbar-track {
    background: #1a1a3a;
    border-radius: 3px;
}

.text-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f5c137, #ff9d00);
    border-radius: 3px;
}

.why-choose-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose-text strong {
    color: #f5c137;
    font-weight: 600;
}

.why-choose-reasons {
    margin-top: 30px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reason-item {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 193, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reason-item:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 80, 0.6);
    border-color: rgba(245, 193, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.reason-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reason-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reason-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.reason-icon {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #f5c137;
    background: rgba(245, 193, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 193, 55, 0.2);
}

.reason-item:hover .reason-icon {
    background: linear-gradient(135deg, #f5c137, #ff9d00);
    color: #0a0a1a;
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(245, 193, 55, 0.3);
}

.why-choose-cta {
    margin-top: 60px;
    text-align: center;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(245, 193, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    color: #0a0a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.why-choose-cta h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.why-choose-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

.pulse-btn {
    position: relative;
    overflow: hidden;
}

.pulse-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-choose-main {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        height: 300px;
    }
    
    .text-wrapper {
        max-height: 300px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-cta {
        padding: 30px 20px;
    }
    
    .why-choose-cta h3 {
        font-size: 1.5rem;
    }
}

.why-choose-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-counter {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    margin: 0 10px 20px;
    border: 1px solid rgba(245, 193, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-counter:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 80, 0.6);
    border-color: rgba(245, 193, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
}

.counter-value::after {
    content: '+';
    position: absolute;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f5c137, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 5px;
}

.counter-label {
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .why-choose-stats {
        justify-content: center;
    }
    
    .stat-counter {
        min-width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

.testimonials {
    margin-top: 60px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.header-accent.small {
    width: 60px;
    height: 3px;
}

.header-accent.small:before,
.header-accent.small:after {
    width: 30px;
    height: 3px;
    left: -40px;
}

.header-accent.small:after {
    right: -40px;
    left: auto;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #f5c137 #1a1a3a;
}

.testimonials-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: #1a1a3a;
    border-radius: 3px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f5c137, #ff9d00);
    border-radius: 3px;
}

.testimonial-item {
    flex: 0 0 350px;
    min-width: 350px;
}

.testimonial-content {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(245, 193, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 80, 0.6);
    border-color: rgba(245, 193, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    color: rgba(245, 193, 55, 0.3);
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(245, 193, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c137;
    font-size: 1.2rem;
    border: 1px solid rgba(245, 193, 55, 0.2);
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info span {
    color: #ccc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 300px;
        min-width: 300px;
    }
}
