/* Base Styles */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #ffb700;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --border-color: #2a2a2a;
    --card-bg: #1e1e1e;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --header-height: 80px;
    --footer-height: 300px;
    --transition-speed: 0.3s;
}

* {
    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(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

section {
    padding: 80px 0;
}

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

/* Main H1 Heading */
h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Hero Section H1 */
.hero-content h1 {
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

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

.logo span {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all var(--transition-speed);
}

.logo span:hover::after {
    width: 100%;
    left: 0;
}

nav ul {
    display: flex;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
}

.hero-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-text);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all var(--transition-speed);
    cursor: pointer;
}

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

.primary-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

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

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

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

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

.about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.features {
    margin: 50px 0;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color var(--transition-speed);
}

.features ul li:hover {
    background-color: rgba(255, 107, 0, 0.05);
}

.features ul li i {
    color: var(--primary-color);
    font-size: 20px;
    min-width: 24px;
    margin-top: 2px;
}

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

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

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--gray-text);
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

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

.social-icons a i {
    font-size: 18px;
    color: var(--light-text);
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 999;
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-speed);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

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

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

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

.free-credit-btn {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed);
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .sticky-btn {
        font-size: 14px;
        padding: 10px 5px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-content:nth-child(even) {
        flex-direction: column-reverse;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .info-icon {
        font-size: 32px;
    }
    
    .card-content h3, .info-content h3 {
        font-size: 20px;
    }
    
    .games-conclusion p {
        font-size: 16px;
    }
    
    .features ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .features ul li {
        padding: 12px 10px;
    }
    
    .games-features ul li {
        padding: 12px 10px;
    }
    
    h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .sticky-btn {
        font-size: 12px;
        padding: 8px 5px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    h1 {
        font-size: 30px;
    }
}

@media (max-width: 320px) {
    .sticky-btn {
        font-size: 11px;
        padding: 8px 2px;
    }
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 80px 0;
}

.games-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.games-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.games-image-container {
    text-align: center;
    margin: 20px 0;
}

.games-image-container img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-color);
    max-width: 100%;
    margin: 0 auto;
}

.games-features {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.games-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.games-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    position: relative;
}

.games-features ul li:hover {
    background-color: rgba(255, 183, 0, 0.05);
    transform: translateY(-3px);
}

.games-features ul li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 20px;
    min-width: 24px;
    margin-top: 2px;
}

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

.info-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.info-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
    text-align: center;
}

.games-conclusion {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.games-conclusion p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

/* Responsive styles for games section */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-features ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .games-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .info-icon {
        font-size: 32px;
    }
    
    .card-content h3, .info-content h3 {
        font-size: 20px;
    }
    
    .games-conclusion p {
        font-size: 16px;
    }
    
    .features ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .features ul li {
        padding: 12px 10px;
    }
    
    .games-features ul li {
        padding: 12px 10px;
    }
}

@media (max-width: 576px) {
    .features ul li {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 15px 10px;
    }
    
    .features ul li i {
        margin-bottom: 10px;
        font-size: 24px;
    }
    
    .games-features ul li {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 15px 10px;
    }
    
    .games-features ul li i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 24px;
    }
}

/* Promotion Section */
.promotion-section {
    background: linear-gradient(45deg, var(--darker-bg), var(--dark-bg));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.promotion-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.promotion-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.promotion-subtitle {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.promotion-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.promotion-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.promotion-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

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

.promotion-card:hover::after {
    transform: scaleX(1);
}

.promotion-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promotion-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.promotion-card p {
    font-size: 16px;
    color: var(--gray-text);
}

.promotion-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-icon {
    font-size: 50px;
    color: var(--light-text);
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-size: 28px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.promotion-details {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.details-image {
    flex: 1;
}

.details-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    width: 100%;
}

.details-content {
    flex: 1;
}

.details-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.promotion-cta {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.promotion-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.promotion-cta p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-text);
}

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

/* Responsive styles for promotion section */
@media (max-width: 992px) {
    .promotion-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotion-details {
        flex-direction: column;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .promotion-subtitle {
        font-size: 22px;
    }
    
    .promotion-text p {
        font-size: 16px;
    }
    
    .promotion-card h4 {
        font-size: 18px;
    }
    
    .banner-text h3 {
        font-size: 24px;
    }
    
    .banner-text p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .promotion-cards {
        grid-template-columns: 1fr;
    }
    
    .promotion-cta {
        padding: 30px 20px;
    }
}

/* Security Section */
.security-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(255, 183, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.security-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.security-shield {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    z-index: 2;
}

.shield-icon {
    font-size: 60px;
    color: var(--light-text);
}

.security-content {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px 40px 40px 140px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-left: 60px;
}

.security-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.security-intro p:last-child {
    margin-bottom: 0;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height var(--transition-speed);
}

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

.feature-item:hover::after {
    height: 100%;
}

.feature-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-text p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

.security-image-text {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.security-image {
    flex: 1;
    position: relative;
}

.security-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--border-color);
    width: 100%;
}

.security-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.security-badge i {
    margin-right: 10px;
    font-size: 20px;
}

.security-text-block {
    flex: 1;
}

.security-text-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.security-text-block p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.security-conclusion {
    background: linear-gradient(to right, var(--card-bg), rgba(30, 30, 30, 0.8));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.conclusion-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.conclusion-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.security-actions {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Responsive styles for security section */
@media (max-width: 992px) {
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .security-image-text {
        flex-direction: column;
    }
    
    .security-badge {
        bottom: -15px;
        right: -15px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .security-shield {
        width: 100px;
        height: 100px;
    }
    
    .shield-icon {
        font-size: 50px;
    }
    
    .security-content {
        padding: 30px 30px 30px 120px;
        margin-left: 50px;
    }
    
    .security-intro p {
        font-size: 16px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-text h3 {
        font-size: 18px;
    }
    
    .security-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .security-wrapper {
        flex-direction: column;
    }
    
    .security-shield {
        position: relative;
        top: 0;
        transform: none;
        margin-bottom: 30px;
    }
    
    .security-content {
        padding: 30px;
        margin-left: 0;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .security-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-flex;
    }
    
    .security-text-block p {
        padding-left: 15px;
    }
}

/* Fun and Profit Section */
.fun-profit-section {
    background-color: var(--darker-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.fun-profit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.03),
        rgba(255, 107, 0, 0.03) 10px,
        rgba(255, 183, 0, 0.03) 10px,
        rgba(255, 183, 0, 0.03) 20px
    );
    z-index: 0;
}

.fun-profit-section .container {
    position: relative;
    z-index: 1;
}

.fun-profit-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.fun-profit-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fun-profit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

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

.fun-profit-highlight {
    position: relative;
    padding: 20px 0;
}

.fun-profit-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    border-radius: 50px;
    z-index: 0;
}

.highlight-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.highlight-icon {
    font-size: 50px;
    color: var(--primary-color);
    min-width: 70px;
    text-align: center;
}

.highlight-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
}

.fun-profit-benefits {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fun-profit-benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 183, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.benefits-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--light-text);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.benefits-header h3 {
    font-size: 24px;
    color: var(--light-text);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 25px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 107, 0, 0.1), transparent);
    transition: width var(--transition-speed);
    z-index: 0;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefits-list li:hover::before {
    width: 100%;
}

.benefit-icon {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
    position: relative;
    z-index: 1;
}

.benefit-text {
    position: relative;
    z-index: 1;
}

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.benefit-text p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

.fun-profit-conclusion {
    display: flex;
    gap: 40px;
    align-items: center;
}

.conclusion-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.conclusion-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

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

.overlay-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--light-text);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.conclusion-text {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.conclusion-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.conclusion-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.conclusion-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Responsive styles for fun-profit section */
@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .fun-profit-conclusion {
        flex-direction: column;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .benefits-header {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
    
    .conclusion-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .fun-profit-highlight::before {
        width: 100%;
    }
    
    .highlight-content {
        padding: 0 15px;
    }
    
    .fun-profit-benefits {
        padding: 30px 20px;
    }
}
