/* Base Styles and Variables */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-bg: #0f3460;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2a2a4a;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

section {
    padding: 80px 0;
}

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

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.primary-btn:hover {
    background-color: #5649c0;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.secondary-btn:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* New Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(253, 121, 168, 0.5));
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover i {
    transform: rotate(20deg);
    color: #ff8dc7;
}

.logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.logo .logo-text span {
    color: var(--accent-color);
    font-weight: 800;
    position: relative;
}

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

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

nav ul {
    display: flex;
}

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

nav ul li a {
    font-weight: 500;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('0099_3_a-photo-of-three-very-sexy-asian-women-w_MQ5cZRXTQ3m1Xt0ioRO5lA_E-Is39EaQGK4cIImOGhCqg_cover.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--darker-bg);
    color: var(--text-color);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 1;
    backdrop-filter: blur(3px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.hero-content {
    background-color: rgba(15, 52, 96, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 8px;
    min-width: 180px;
    transition: all 0.4s ease;
}

.hero-buttons .primary-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5649c0 100%);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

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

.hero-buttons .secondary-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.feature {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

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

.game-card {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.game-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.games-image {
    margin-top: 40px;
}

/* Features Section */
.features-section {
    background-color: #0c1631;
    padding: 80px 0;
    position: relative;
}

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

.feature-box {
    background-color: #16213e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-box-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fd79a8;
}

.feature-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-box p strong {
    color: #6c5ce7;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .features-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

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

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

.promo-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border: 1px solid var(--accent-color);
}

.promo-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

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

.contact-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

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

.footer-logo h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 10px;
}

.footer-links h3, .footer-social h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(26, 26, 46, 0.95);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin: 0 5px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.register-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.register-btn:hover {
    background-color: #5649c0;
}

.free-credit-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.free-credit-btn:hover {
    background-color: #e06b96;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding: 35px 25px;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        padding: 12px 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        padding: 80px 20px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        min-width: 140px;
        font-size: 1rem;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0;
    }
    
    .sticky-buttons {
        flex-direction: row;
        padding: 8px 10px;
    }
    
    .sticky-btn {
        margin: 0 3px;
        padding: 8px 5px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* Why Chapo88 Section */
.why-chapo88-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-chapo88-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 92, 231, 0.1), transparent 60%);
    z-index: 0;
}

.why-chapo88-content {
    position: relative;
    z-index: 1;
}

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

.why-chapo88-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.why-chapo88-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.why-chapo88-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.why-chapo88-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.why-chapo88-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.why-chapo88-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-chapo88-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(145deg, var(--light-bg), var(--darker-bg));
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
    flex: 0 0 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.feature-content {
    flex: 1;
}

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

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.why-chapo88-conclusion {
    background-color: rgba(15, 52, 96, 0.3);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-chapo88-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.why-chapo88-conclusion p:last-of-type {
    margin-bottom: 30px;
}

.why-chapo88-conclusion p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    margin-top: 30px;
}

.cta-button .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-color), #e84393);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.4);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-button .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(253, 121, 168, 0.6);
}

.cta-button .btn i {
    margin-right: 10px;
}

@media screen and (max-width: 992px) {
    .why-chapo88-header h2 {
        font-size: 2.4rem;
    }
    
    .why-chapo88-body {
        grid-template-columns: 1fr;
    }
    
    .why-chapo88-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .why-chapo88-section {
        padding: 70px 0;
    }
    
    .why-chapo88-header h2 {
        font-size: 2rem;
    }
    
    .why-chapo88-conclusion {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .why-chapo88-header h2 {
        font-size: 1.8rem;
    }
    
    .why-chapo88-text p, 
    .why-chapo88-conclusion p {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-button .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Slot Features Section */
.slot-features-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.slot-features-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" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23ffffff" 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');
    opacity: 0.5;
    z-index: 0;
}

.slot-features-wrapper {
    position: relative;
    z-index: 1;
}

.slot-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.slot-features-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
}

.slot-features-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8, #6c5ce7);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
}

.slot-features-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Slot Cards */
.slot-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.slot-card {
    height: 100%;
}

.slot-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, #302b63, #24243e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.slot-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fd79a8, #6c5ce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.slot-card-icon i {
    font-size: 2.5rem;
    color: var(--text-color);
}

.slot-card-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.slot-card-inner p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.slot-card-inner p strong {
    color: #fd79a8;
    font-weight: 600;
}

/* Image Section */
.slot-features-image {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.slot-features-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, #fd79a8, #6c5ce7);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.slot-features-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Info Items */
.slot-features-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-item {
    display: flex;
    background: rgba(48, 43, 99, 0.5);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(253, 121, 168, 0.3);
}

.info-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd79a8, #6c5ce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.info-content {
    flex: 1;
}

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

.info-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.info-content p strong {
    color: #fd79a8;
    font-weight: 600;
}

/* CTA Section */
.slot-features-cta {
    text-align: center;
    background: rgba(48, 43, 99, 0.5);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slot-features-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slot-features-cta p strong {
    color: #fd79a8;
    font-weight: 600;
}

.glow-btn {
    background: linear-gradient(135deg, #fd79a8, #6c5ce7);
    color: var(--text-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    transition: all 0.5s ease;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.glow-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.6);
}

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

.glow-btn i {
    margin-right: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .slot-features-header h2 {
        font-size: 2.4rem;
    }
    
    .slot-features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slot-features-info {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .slot-features-section {
        padding: 70px 0;
    }
    
    .slot-features-header h2 {
        font-size: 2rem;
    }
    
    .slot-features-cards {
        grid-template-columns: 1fr;
    }
    
    .slot-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slot-features-cta {
        padding: 30px 20px;
    }
    
    .demo-play-section {
        padding: 70px 0;
    }
    
    .demo-play-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .demo-play-conclusion {
        padding: 30px 20px;
    }
    
    .slot-tips-section {
        padding: 70px 0;
    }
    
    .slot-tips-header h2 {
        font-size: 2rem;
    }
    
    .slot-tips-intro p {
        font-size: 1.1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-content {
        padding: 0 20px 15px;
    }
    
    .slot-tips-conclusion {
        padding: 30px 20px;
    }
    
    .security-section {
        padding: 70px 0;
    }
    
    .security-header h2 {
        font-size: 2rem;
    }
    
    .security-intro p {
        font-size: 1.1rem;
    }
    
    .shield-icon {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon::before {
        width: 120px;
        height: 120px;
    }
    
    .shield-icon i {
        font-size: 4rem;
    }
    
    .tabs-content {
        padding: 20px;
    }
    
    .security-conclusion {
        padding: 30px 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .sticky-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .why-chapo88-section {
        padding: 70px 0;
    }
    
    .why-chapo88-header h2 {
        font-size: 2rem;
    }
    
    .why-chapo88-conclusion {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .slot-features-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-card-inner {
        padding: 20px;
    }
    
    .slot-features-cta p {
        font-size: 1rem;
    }
    
    .glow-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .sticky-buttons {
        flex-direction: row;
        padding: 8px 10px;
    }
    
    .sticky-btn {
        margin: 0 3px;
        padding: 8px 5px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* Demo Play Section */
.demo-play-section {
    background: linear-gradient(135deg, #24243e, #0f0c29);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.demo-play-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 512 512"%3E%3Cpath fill="%23ffffff" fill-opacity="0.03" d="M74.5 36A38.5 38.5 0 0 0 36 74.5v363A38.5 38.5 0 0 0 74.5 476h363a38.5 38.5 0 0 0 38.5-38.5v-363A38.5 38.5 0 0 0 437.5 36h-363zm316.97 36.03A50 50 0 0 1 440 122a50 50 0 0 1-100 0 50 50 0 0 1 51.47-49.97zM256 206a50 50 0 0 1 0 100 50 50 0 0 1 0-100zM123 290a50 50 0 0 1 0 100 50 50 0 0 1 0-100zm133 0a50 50 0 0 1 0 100 50 50 0 0 1 0-100zm133.5 0a50 50 0 0 1 0 100 50 50 0 0 1 0-100z"%3E%3C/path%3E%3C/svg%3E');
    background-size: 150px;
    opacity: 0.5;
    z-index: 0;
}

.demo-play-wrapper {
    position: relative;
    z-index: 1;
}

.demo-play-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-play-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
}

.demo-play-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
}

.demo-play-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.demo-play-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.demo-play-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.demo-play-text p strong {
    color: #6c5ce7;
    font-weight: 600;
}

.demo-play-steps {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-header h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    background: rgba(48, 43, 99, 0.5);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.step-content p strong {
    color: #fd79a8;
    font-weight: 600;
}

.demo-play-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.benefit-content p strong {
    color: #6c5ce7;
    font-weight: 600;
}

.demo-play-conclusion {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-play-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-play-conclusion p strong {
    color: #6c5ce7;
    font-weight: 600;
}

.demo-play-cta {
    margin-top: 30px;
}

.pulse-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    color: var(--text-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(108, 92, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

.pulse-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.6);
    animation: none;
}

.pulse-btn i {
    margin-right: 10px;
}

/* Responsive Styles for Demo Play Section */
@media screen and (max-width: 992px) {
    .demo-play-header h2 {
        font-size: 2.4rem;
    }
    
    .demo-play-main {
        grid-template-columns: 1fr;
    }
    
    .demo-play-benefits {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .demo-play-section {
        padding: 70px 0;
    }
    
    .demo-play-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .demo-play-conclusion {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .demo-play-header h2 {
        font-size: 1.8rem;
    }
    
    .demo-play-text p, 
    .demo-play-conclusion p {
        font-size: 1rem;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .pulse-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Slot Tips Section */
.slot-tips-section {
    background: linear-gradient(135deg, #0f0c29, #302b63);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.slot-tips-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 80 80"%3E%3Cpath fill="%23ffffff" fill-opacity="0.03" d="M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56zm-39 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm40-40a2 2 0 1 1 0-4 2 2 0 0 1 0 4zM15 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm40 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"%3E%3C/path%3E%3C/svg%3E');
    opacity: 0.4;
    z-index: 0;
}

.slot-tips-wrapper {
    position: relative;
    z-index: 1;
}

.slot-tips-header {
    text-align: center;
    margin-bottom: 60px;
}

.slot-tips-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(253, 121, 168, 0.5);
}

.slot-tips-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8, #6c5ce7);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(253, 121, 168, 0.5);
}

.slot-tips-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.slot-tips-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slot-tips-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.slot-tips-intro p strong {
    color: #fd79a8;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    background: rgba(15, 12, 41, 0.5);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(253, 121, 168, 0.3);
}

.tip-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(253, 121, 168, 0.15);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.tip-content h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tip-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.tip-content p strong {
    color: #fd79a8;
    font-weight: 600;
}

.tips-highlight {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(253, 121, 168, 0.2));
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--text-color);
}

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

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tips-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(15, 12, 41, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(108, 92, 231, 0.1);
}

.accordion-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-icon i {
    font-size: 0.9rem;
    color: var(--text-color);
}

.accordion-content {
    padding: 0 30px 20px;
    display: none;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.accordion-content p strong {
    color: #fd79a8;
    font-weight: 600;
}

.slot-tips-conclusion {
    background: rgba(15, 12, 41, 0.5);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slot-tips-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 30px;
}

.slot-tips-conclusion p strong {
    color: #fd79a8;
    font-weight: 600;
}

.tips-action {
    margin-top: 30px;
}

.gradient-btn {
    display: inline-block;
    background: linear-gradient(45deg, #fd79a8, #6c5ce7);
    color: var(--text-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
    transition: all 0.3s ease;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6c5ce7, #fd79a8);
    transition: all 0.5s ease;
    z-index: -1;
}

.gradient-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(253, 121, 168, 0.6);
}

.gradient-btn:hover::before {
    left: 0;
}

.gradient-btn i {
    margin-right: 10px;
}

/* Responsive Styles for Slot Tips Section */
@media screen and (max-width: 992px) {
    .slot-tips-header h2 {
        font-size: 2.4rem;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .highlight-icon {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .slot-tips-section {
        padding: 70px 0;
    }
    
    .slot-tips-header h2 {
        font-size: 2rem;
    }
    
    .slot-tips-intro p {
        font-size: 1.1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-content {
        padding: 0 20px 15px;
    }
    
    .slot-tips-conclusion {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .slot-tips-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-tips-intro p {
        font-size: 1rem;
    }
    
    .tip-number {
        font-size: 2.5rem;
    }
    
    .tip-content h3 {
        font-size: 1.2rem;
    }
    
    .highlight-content h3 {
        font-size: 1.3rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .gradient-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.security-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 100 100"%3E%3Cpath fill="%23ffffff" fill-opacity="0.03" d="M50,3l12,36h38l-30,22l11,36l-31-21l-31,21l11-36l-30-22h38L50,3z"%3E%3C/path%3E%3C/svg%3E');
    background-size: 100px;
    opacity: 0.3;
    z-index: 0;
}

.security-wrapper {
    position: relative;
    z-index: 1;
}

.security-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(41, 128, 185, 0.5);
}

.security-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(41, 128, 185, 0.5);
}

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

.security-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.security-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.security-intro p strong {
    color: #3498db;
    font-weight: 600;
}

.security-features {
    display: flex;
    align-items: center;
    gap: 40px;
}

.security-shield {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.1) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-shield 3s infinite;
}

@keyframes pulse-shield {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.shield-icon::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, rgba(41, 128, 185, 0.2) 70%);
    border-radius: 50%;
    z-index: -1;
}

.shield-icon i {
    font-size: 5rem;
    color: #3498db;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
}

.security-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.card-header {
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.2));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 1.5rem;
    color: #3498db;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
}

.card-body {
    padding: 20px;
}

.card-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.card-body p strong {
    color: #3498db;
    font-weight: 600;
}

.security-tabs {
    margin-top: 20px;
}

.tabs-nav {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tab-item i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tab-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tab-item:hover {
    background: rgba(52, 152, 219, 0.1);
}

.tab-item:hover i,
.tab-item:hover span {
    color: #3498db;
}

.tab-item.active {
    background: rgba(52, 152, 219, 0.2);
}

.tab-item.active i,
.tab-item.active span {
    color: #3498db;
}

.tabs-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    min-height: 150px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.tab-content p strong {
    color: #3498db;
    font-weight: 600;
}

.security-conclusion {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.1) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.conclusion-icon i {
    font-size: 2.5rem;
    color: #3498db;
}

.conclusion-text {
    max-width: 800px;
    margin-bottom: 30px;
}

.conclusion-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.conclusion-text p strong {
    color: #3498db;
    font-weight: 600;
}

.security-cta {
    margin-top: 20px;
}

.security-btn {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: var(--text-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.security-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2980b9, #3498db);
    transition: all 0.5s ease;
    z-index: -1;
}

.security-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.6);
}

.security-btn:hover::before {
    left: 0;
}

.security-btn i {
    margin-right: 10px;
}

/* Responsive Styles for Security Section */
@media screen and (max-width: 992px) {
    .security-header h2 {
        font-size: 2.4rem;
    }
    
    .security-features {
        flex-direction: column;
    }
    
    .security-shield {
        margin-bottom: 20px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-item {
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
    }
}

@media screen and (max-width: 768px) {
    .security-section {
        padding: 70px 0;
    }
    
    .security-header h2 {
        font-size: 2rem;
    }
    
    .security-intro p {
        font-size: 1.1rem;
    }
    
    .shield-icon {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon::before {
        width: 120px;
        height: 120px;
    }
    
    .shield-icon i {
        font-size: 4rem;
    }
    
    .tabs-content {
        padding: 20px;
    }
    
    .security-conclusion {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .security-header h2 {
        font-size: 1.8rem;
    }
    
    .security-intro p {
        font-size: 1rem;
    }
    
    .shield-icon {
        width: 120px;
        height: 120px;
    }
    
    .shield-icon::before {
        width: 100px;
        height: 100px;
    }
    
    .shield-icon i {
        font-size: 3rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .tab-item {
        flex: 0 0 100%;
    }
    
    .tab-content p {
        font-size: 1rem;
    }
    
    .security-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1100px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Move other responsive styles that were previously in the 768px breakpoint but should remain there */
@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
}

/* Additional media query for very small screens */
@media screen and (max-width: 360px) {
    .sticky-btn {
        font-size: 0.7rem;
        padding: 8px 3px;
        margin: 0 2px;
    }
}

/* Footer Logo Styles */
.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(253, 121, 168, 0.5));
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo h2 span {
    color: var(--accent-color);
    font-weight: 800;
}
