/* Reset and Base Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --dark-bg: #1e272e;
    --darker-bg: #0c1218;
    --light-text: #dfe6e9;
    --gray-text: #b2bec3;
    --header-height: 70px;
    --footer-height: 300px;
    --sticky-buttons-height: 60px;
    --card-bg: rgba(44, 62, 80, 0.6);
    --card-hover: rgba(44, 62, 80, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', 'Prompt', sans-serif;
    background-color: var(--dark-bg);
    background-image: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
}

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

h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

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

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 201, 0.4);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(12, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

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

.logo .logo-wrapper {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo .logo-wrapper i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.logo:hover h1 i {
    transform: rotate(15deg);
    color: var(--accent-color);
}

.logo-text {
    letter-spacing: 1px;
    position: relative;
}

.logo-highlight {
    color: var(--accent-color);
    font-weight: 900;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 15px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--accent-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.1" d="M0,160L48,170.7C96,181,192,203,288,202.7C384,203,480,181,576,165.3C672,149,768,139,864,154.7C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    align-self: flex-start;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--light-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    animation: expandWidth 1.2s ease-out forwards;
    transform-origin: left;
}

.hero-text h1 strong {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-text h1 strong:hover {
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.hero-text h2 {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.hero-text h2::after {
    display: none;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(44, 62, 80, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
}

.hero-feature i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.hero-feature span {
    font-weight: 600;
    color: var(--light-text);
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%230c1218" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,128C672,128,768,160,864,176C960,192,1056,192,1152,176C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Slot Experience Section */
.slot-experience {
    background-color: var(--dark-bg);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.slot-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.slot-content {
    margin-bottom: 60px;
}

.slot-heading {
    text-align: center;
    margin-bottom: 40px;
}

.slot-heading h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px 15px;
}

.slot-heading h2::before,
.slot-heading h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.2;
    z-index: -1;
}

.slot-heading h2::before {
    top: -10px;
    left: -15px;
}

.slot-heading h2::after {
    bottom: 10px;
    right: -15px;
}

.slot-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.slot-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.slot-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.slot-highlight {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.slot-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.05), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

.slot-highlight p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.slot-highlight p:last-child {
    margin-bottom: 0;
}

.slot-highlight strong {
    color: var(--accent-color);
    font-weight: 600;
}

.slot-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.slot-card {
    background: rgba(44, 62, 80, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.slot-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    z-index: -1;
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.slot-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.slot-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.slot-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.slot-card p {
    color: var(--gray-text);
}

.slot-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slot-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}

.slot-decoration.left {
    top: 10%;
    left: -150px;
}

.slot-decoration.right {
    bottom: 10%;
    right: -150px;
}

/* Jackpot Strategy Section */
.jackpot-strategy {
    background-color: var(--darker-bg);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.jackpot-strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M0,32L48,58.7C96,85,192,139,288,144C384,149,480,107,576,112C672,117,768,171,864,176C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

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

.jackpot-header h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.jackpot-header h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -15px;
    left: 0;
    border-radius: 5px;
    opacity: 0.3;
}

.jackpot-content {
    margin-bottom: 50px;
}

.jackpot-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
}

.jackpot-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.jackpot-intro strong {
    color: var(--accent-color);
    font-weight: 600;
}

.jackpot-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

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

.tips-list li {
    display: flex;
    margin-bottom: 30px;
    background: rgba(44, 62, 80, 0.5);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-list li:hover {
    transform: translateX(10px);
    background: rgba(44, 62, 80, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.tip-icon i {
    font-size: 1.8rem;
    color: white;
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.tip-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

.tip-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.jackpot-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.jackpot-image img {
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

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

.jackpot-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(10deg);
}

.jackpot-badge span {
    font-size: 0.9rem;
}

.jackpot-badge .jackpot-amount {
    font-size: 1.5rem;
    font-weight: 800;
}

.jackpot-conclusion {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.05));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
}

.jackpot-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.05), transparent);
    transform: translateX(-100%);
    animation: shine 5s infinite;
}

.jackpot-conclusion p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.jackpot-conclusion p:last-child {
    margin-bottom: 0;
}

.jackpot-conclusion strong {
    color: var(--accent-color);
    font-weight: 600;
}

.jackpot-cta {
    text-align: center;
    margin-top: 50px;
}

.jackpot-cta .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.jackpot-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    filter: blur(150px);
    opacity: 0.05;
    z-index: -1;
}

.jackpot-decoration.top {
    top: -200px;
    right: -200px;
}

.jackpot-decoration.bottom {
    bottom: -200px;
    left: -200px;
}

/* New Games Section */
.new-games {
    background-color: var(--dark-bg);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.new-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%2300cec9" fill-opacity="0.05" d="M0,160L48,138.7C96,117,192,75,288,69.3C384,64,480,96,576,128C672,160,768,192,864,176C960,160,1056,96,1152,74.7C1248,53,1344,75,1392,85.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.new-games-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.new-games-header h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.new-games-header h2::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    bottom: -10px;
    left: -10%;
}

.new-games-content {
    margin-bottom: 50px;
}

.new-games-spotlight {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.spotlight-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    max-width: 800px;
}

.spotlight-image img {
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: transform 0.5s ease;
}

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

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.spotlight-badge {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

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

.spotlight-badge i {
    font-size: 1.2rem;
}

.spotlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.spotlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.spotlight-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.new-games-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(44, 62, 80, 0.5);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 206, 201, 0.3);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: rotate(0deg);
}

.feature-text h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--light-text);
}

.feature-text p {
    color: var(--gray-text);
    line-height: 1.7;
}

.feature-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.new-games-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.carousel-item {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

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

.carousel-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-icon i {
    font-size: 1.8rem;
    color: white;
}

.carousel-content {
    flex: 1;
}

.carousel-content p {
    margin: 0;
    line-height: 1.7;
}

.carousel-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.new-games-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.new-games-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.new-games-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    filter: blur(150px);
    opacity: 0.05;
    z-index: -1;
}

.new-games-decoration.left {
    top: 20%;
    left: -150px;
}

.new-games-decoration.right {
    bottom: 20%;
    right: -150px;
}

/* Media Queries for New Games Section */
@media (max-width: 992px) {
    .new-games-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-item {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .new-games-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-item {
        flex: 1 1 100%;
    }
    
    .new-games-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .spotlight-content {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .spotlight-badge {
        padding: 6px 12px;
    }
    
    .spotlight-badge i {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .carousel-item {
        padding: 20px;
    }
    
    .carousel-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .carousel-icon i {
        font-size: 1.5rem;
    }
}

/* Slot Tips Section */
.slot-tips {
    background-color: var(--darker-bg);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.slot-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"%3E%3C/path%3E%3C/svg%3E');
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.tips-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.tips-header h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.tips-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tips-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.tips-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.tips-intro strong {
    color: var(--accent-color);
    font-weight: 600;
}

.tips-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.tips-visual {
    flex: 0 0 40%;
    position: relative;
}

.tips-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.tips-image img {
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: all 0.5s ease;
    filter: brightness(0.9);
    width: 100%;
    height: auto;
    display: block;
}

.tips-image:hover img {
    filter: brightness(1.1);
}

.tips-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tips-counter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.tips-counter::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tips-counter span:first-child {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.tips-counter span:last-child {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.tips-progress {
    padding: 0 20px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.tips-list-container {
    flex: 1;
}

.strategy-list {
    list-style: none;
    counter-reset: strategy-counter;
}

.strategy-list li {
    display: flex;
    margin-bottom: 30px;
    background: rgba(44, 62, 80, 0.3);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

.strategy-list li:hover {
    transform: translateX(10px);
    background: rgba(44, 62, 80, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.strategy-number {
    flex: 0 0 60px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.strategy-content {
    flex: 1;
}

.strategy-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.strategy-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

.strategy-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.tips-conclusion {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.conclusion-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.conclusion-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.05));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 100%;
}

.conclusion-card p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.conclusion-card p:last-child {
    margin-bottom: 0;
}

.conclusion-card strong {
    color: var(--accent-color);
    font-weight: 600;
}

.conclusion-decoration {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.decoration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.decoration-icon i {
    font-size: 2.5rem;
    color: white;
}

.tips-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tips-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.tips-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    z-index: -1;
}

.tips-shape.top {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%);
}

.tips-shape.bottom {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, rgba(0, 206, 201, 0) 70%);
}

/* Media Queries for Slot Tips Section */
@media (max-width: 1200px) {
    .tips-content {
        gap: 30px;
    }
    
    .strategy-list li {
        padding: 20px;
    }
    
    .conclusion-decoration {
        right: -20px;
    }
    
    .decoration-icon {
        width: 70px;
        height: 70px;
    }
    
    .decoration-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .slot-tips {
        padding: 80px 0 70px;
    }
    
    .tips-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .tips-visual {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tips-counter {
        width: 100px;
        height: 100px;
    }
    
    .tips-counter span:first-child {
        font-size: 2.5rem;
    }
    
    .conclusion-decoration {
        right: 20px;
        top: -40px;
        transform: translateY(0);
    }
    
    .conclusion-card {
        padding: 25px;
    }
    
    .conclusion-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .slot-tips {
        padding: 60px 0 50px;
    }
    
    .tips-intro {
        margin-bottom: 40px;
    }
    
    .tips-intro p {
        font-size: 1rem;
    }
    
    .strategy-list li {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .strategy-number {
        flex: 0 0 40px;
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .strategy-content h3 {
        font-size: 1.1rem;
    }
    
    .tips-counter {
        width: 90px;
        height: 90px;
    }
    
    .tips-counter span:first-child {
        font-size: 2.2rem;
    }
    
    .tips-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .tips-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .conclusion-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .slot-tips {
        padding: 50px 0 40px;
    }
    
    .tips-header h2 {
        font-size: 1.5rem;
    }
    
    .tips-header h2::after {
        width: 40px;
        height: 3px;
        bottom: -10px;
    }
    
    .tips-intro {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .tips-counter {
        width: 80px;
        height: 80px;
    }
    
    .tips-counter::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
    }
    
    .tips-counter span:first-child {
        font-size: 2rem;
    }
    
    .tips-counter span:last-child {
        font-size: 0.8rem;
    }
    
    .strategy-list li {
        padding: 15px 12px;
        margin-bottom: 15px;
        flex-direction: column;
    }
    
    .strategy-number {
        flex: 0 0 auto;
        font-size: 1.2rem;
        margin-right: 0;
        margin-bottom: 5px;
        text-align: left;
    }
    
    .strategy-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .strategy-content p {
        font-size: 0.9rem;
    }
    
    .conclusion-card {
        padding: 20px 15px;
    }
    
    .conclusion-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .tips-cta .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

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

.about .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

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

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category:hover {
    transform: translateY(-10px) scale(1.03);
    background-color: var(--card-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.games-image {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.games-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

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

.promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

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

.promo-card:hover::before {
    left: 100%;
}

.promo-card i {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,202.7C1248,213,1344,171,1392,149.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo h2::after {
    display: none;
}

.footer-links h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.footer-links ul li a {
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.social-icons i {
    font-size: 1.2rem;
    color: white;
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(12, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.sticky-btn:hover::before {
    width: 100%;
}

.login-btn {
    background: linear-gradient(45deg, #00cec9, #81ecec);
    color: #2d3436;
}

.register-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
}

.free-credit-btn {
    background: linear-gradient(45deg, #fd79a8, #e84393);
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        text-align: center;
    }
    
    .hero-cta {
        order: 0;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 80px 0;
    }
    
    .slot-text-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slot-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jackpot-tips {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .jackpot-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(12, 18, 24, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-features {
        padding: 20px 15px;
    }
    
    .slot-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slot-highlight {
        padding: 25px;
    }
    
    .jackpot-intro p,
    .jackpot-conclusion p {
        font-size: 1rem;
    }
    
    .tips-list li {
        padding: 15px;
    }
    
    .tip-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .tip-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .hero-feature i {
        margin-bottom: 0;
    }
    
    .sticky-btn {
        font-size: 0.8rem;
        padding: 10px 5px;
    }
    
    .slot-cards {
        grid-template-columns: 1fr;
    }
    
    .slot-cta {
        flex-direction: column;
    }
    
    .slot-highlight {
        padding: 20px;
    }
    
    .tips-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tip-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jackpot-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
    }
    
    .jackpot-badge .jackpot-amount {
        font-size: 1.2rem;
    }
    
    .jackpot-conclusion {
        padding: 20px;
    }
}

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

/* Services Section */
.services {
    background-color: var(--dark-bg);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%236c5ce7" fill-opacity="0.05" d="M0,224L48,218.7C96,213,192,203,288,181.3C384,160,480,128,576,138.7C672,149,768,203,864,208C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

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

.services-header h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

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

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.services-intro strong {
    color: var(--accent-color);
    font-weight: 600;
}

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

.services-hexagrid {
    width: 100%;
    position: relative;
}

.hex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hex-item {
    position: relative;
    width: 100%;
    padding-bottom: 115%; /* Aspect ratio for hexagon */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
    transition: all 0.4s ease;
    cursor: pointer;
}

.hex-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(0, 206, 201, 0.2));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hex-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15%;
    text-align: center;
}

.hex-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hex-item:hover .hex-icon {
    transform: rotate(360deg);
}

.hex-icon i {
    font-size: 2rem;
    color: white;
}

.hex-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.hex-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-text);
}

.hex-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.services-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

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

.services-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.badge-content span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-content span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.services-details {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.details-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.details-content {
    flex: 1;
    background: rgba(44, 62, 80, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

.details-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.details-timeline {
    flex: 0 0 200px;
    position: relative;
}

.details-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: 1;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(108, 92, 231, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.services-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    filter: blur(150px);
    opacity: 0.05;
    z-index: -1;
}

.services-decoration.left {
    top: 30%;
    left: -150px;
}

.services-decoration.right {
    bottom: 20%;
    right: -150px;
}

/* Media Queries for Services Section */
@media (max-width: 1200px) {
    .hex-container {
        gap: 20px;
    }
    
    .hex-icon {
        width: 60px;
        height: 60px;
    }
    
    .hex-icon i {
        font-size: 1.8rem;
    }
    
    .details-wrapper {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 80px 0 70px;
    }
    
    .hex-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .hex-item {
        padding-bottom: 100%;
    }
    
    .details-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .details-timeline {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .details-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 0;
        flex: 1;
        text-align: center;
    }
    
    .timeline-dot {
        position: static;
        margin: 0 auto 10px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0 50px;
    }
    
    .services-intro p {
        font-size: 1rem;
    }
    
    .hex-content h3 {
        font-size: 1.1rem;
    }
    
    .hex-content p {
        font-size: 0.85rem;
    }
    
    .services-badge {
        width: 80px;
        height: 80px;
    }
    
    .badge-content span:first-child {
        font-size: 1.5rem;
    }
    
    .badge-content span:last-child {
        font-size: 0.8rem;
    }
    
    .details-content {
        padding: 20px;
    }
    
    .details-content p {
        font-size: 1rem;
    }
    
    .details-timeline {
        flex-wrap: wrap;
    }
    
    .timeline-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 50px 0 40px;
    }
    
    .services-header h2 {
        font-size: 1.5rem;
    }
    
    .services-intro {
        margin-bottom: 40px;
    }
    
    .hex-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .hex-icon i {
        font-size: 1.5rem;
    }
    
    .services-badge {
        width: 70px;
        height: 70px;
        top: 10px;
        right: 10px;
    }
    
    .badge-content span:first-child {
        font-size: 1.3rem;
    }
    
    .badge-content span:last-child {
        font-size: 0.7rem;
    }
    
    .timeline-item {
        flex: 0 0 100%;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transform: rotate(-15deg);
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.5rem;
        padding-bottom: 12px;
    }
    
    .hero-text h1::after {
        width: 60px;
        height: 2px;
    }
}
