/* Reset and Base Styles */
:root {
    --primary-color: #00ffcc;
    --secondary-color: #ff00ff;
    --accent-color: #ffcc00;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: #0f0f2d;
    --light-text: #ffffff;
    --gray-text: #b3b3cc;
    --header-height: 80px;
    --footer-height: 300px;
    --transition: all 0.3s ease;
    --glow-shadow: 0 0 10px rgba(0, 255, 204, 0.5), 0 0 20px rgba(0, 255, 204, 0.3);
    --neon-border: 1px solid rgba(0, 255, 204, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.05) 0%, transparent 40%);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

.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: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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(--light-text);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
    position: relative;
    display: inline-block;
}

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

p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

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

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #00ccff);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.primary-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.secondary-btn:hover {
    background: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

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

.logo a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.logo a i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--primary-color);
    animation: logoSpin 6s linear infinite;
    filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.7));
}

.logo a span {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

.logo a .bet-text {
    background: linear-gradient(to right, var(--primary-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 2px;
    position: relative;
    padding-left: 2px;
}

.logo a .bet-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    animation: logoUnderline 3s ease-in-out infinite alternate;
}

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

@keyframes logoUnderline {
    0% {
        width: 0;
        opacity: 0.5;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

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

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

nav a {
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 80%;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: var(--transition);
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    background: rgba(0, 255, 204, 0.1);
    color: var(--primary-color);
}

.mobile-menu-btn i {
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.8), rgba(15, 15, 45, 0.8));
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('edm88bet.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.2) saturate(1.2);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    width: 100%;
    padding: 40px;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
}

.hero-content h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 0.8em;
    margin-top: 5px;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Hero Section Responsive Styles */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 35px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 25px 20px;
        border-width: 1px;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .hero-content h1 span {
        font-size: 0.75em;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-height: 700px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 20px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        margin-top: 20px;
    }
}

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

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

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

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    flex: 1;
}

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

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

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(255, 0, 255, 0.05));
    z-index: -1;
}

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

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

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--light-text);
}

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

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

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: var(--neon-border);
    position: relative;
}

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

.game-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(15, 15, 45, 0.9), rgba(10, 10, 26, 0.9));
}

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

.game-info p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.game-btn {
    background: linear-gradient(45deg, var(--primary-color), #00ccff);
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.game-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    transform: scale(1.05);
}

/* Promotions Section */
.promotions-section {
    background-color: var(--darker-bg);
    position: relative;
}

.promotion-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    transition: var(--transition);
    border: var(--neon-border);
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(255, 204, 0, 0.05));
    z-index: -1;
}

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

.promotion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.promotion-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.promotion-btn {
    background: linear-gradient(45deg, var(--accent-color), #ff9900);
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.promotion-btn:hover {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
    transform: scale(1.05);
}

.promotion-icon i {
    font-size: 5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: var(--transition);
    border: var(--neon-border);
    min-width: 200px;
}

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

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

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

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
}

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

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.footer-logo h2 i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--primary-color);
    animation: logoSpin 6s linear infinite;
    filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.7));
}

.footer-logo h2 span {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

.footer-logo h2 .bet-text {
    background: linear-gradient(to right, var(--primary-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 2px;
    position: relative;
    padding-left: 2px;
}

.footer-logo h2 .bet-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    animation: logoUnderline 3s ease-in-out infinite alternate;
}

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

.footer-links h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-text);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

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

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.social-icons a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

.social-icons a:hover i {
    color: #000;
}

.social-icons i {
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .footer-logo h2 i {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo h2 {
        justify-content: center;
    }
    
    .footer-links h3::after, 
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-links, 
    .footer-social {
        text-align: center;
    }
    
    .footer-links h3, 
    .footer-social h3 {
        display: block;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-links a:hover {
        padding-left: 20px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
    }
    
    .social-icons i {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo h2 i {
        font-size: 1.4rem;
    }
    
    .footer-links h3, 
    .footer-social h3 {
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons i {
        font-size: 1rem;
    }
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 204, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-buttons.hidden {
    transform: translateY(100%);
}

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

.sticky-btn i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
    z-index: -1;
}

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

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid rgba(0, 255, 204, 0.3);
    animation: pulseButton 3s infinite alternate;
}

.login-btn:hover {
    background-color: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    animation: none;
}

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), #00ccff);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    animation: pulseButton 3s infinite alternate 0.5s;
}

.register-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    animation: none;
}

.free-credit-btn {
    background: linear-gradient(45deg, var(--accent-color), #ff9900);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    animation: pulseButton 3s infinite alternate 1s;
}

.free-credit-btn:hover {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
    animation: none;
}

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

.bonus-cta {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3), 0 0 30px rgba(255, 204, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-cta p {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.bonus-cta strong {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.bonus-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-color), #ff9900);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.bonus-cta .btn:hover {
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.7), 0 0 40px rgba(255, 204, 0, 0.4);
    transform: translateY(-5px);
}

.bonus-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    height: 2px;
    opacity: 0.3;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 30%;
}

.line-2 {
    top: 60%;
    right: 0;
    width: 40%;
    background: linear-gradient(270deg, var(--primary-color), transparent);
}

.line-3 {
    bottom: 30%;
    left: 10%;
    width: 20%;
}

.circuit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
    opacity: 0.7;
}

.node-1 {
    top: 20%;
    left: 30%;
    animation: pulse 3s ease-in-out infinite;
}

.node-2 {
    top: 60%;
    right: 40%;
    animation: pulse 4s ease-in-out infinite;
}

.node-3 {
    bottom: 30%;
    left: 10%;
    animation: pulse 5s ease-in-out infinite;
}

.node-4 {
    bottom: 40%;
    right: 20%;
    animation: pulse 6s ease-in-out infinite;
}

.data-stream {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    opacity: 0;
    animation: dataStream 8s linear infinite;
}

.stream-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.stream-2 {
    bottom: 35%;
    left: 0;
    width: 100%;
    animation-delay: 4s;
}

@keyframes dataStream {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    10%, 90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Media Queries for Bonus Promotions Section */
@media (max-width: 1024px) {
    .bonus-header h2 {
        font-size: 2.4rem;
    }
    
    .bonus-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main-content"
            "cards"
            "side-content";
    }
    
    .bonus-header h2::before,
    .bonus-header h2::after {
        width: 20px;
    }
    
    .bonus-header h2::before {
        left: -30px;
    }
    
    .bonus-header h2::after {
        right: -30px;
    }
}

@media (max-width: 576px) {
    .bonus-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .bonus-card-content h3 {
        margin-top: 10px;
    }
    
    .bonus-card-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bonus-percentage,
    .bonus-tag {
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .bonus-percentage span {
        font-size: 1.1rem;
    }
    
    .bonus-tag {
        padding: 3px 10px;
    }
    
    .bonus-tag span {
        font-size: 0.9rem;
    }
    
    .bonus-header h2::before,
    .bonus-header h2::after {
        display: none;
    }
}

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

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.03) 0%, transparent 50%),
                linear-gradient(225deg, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.registration-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.registration-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    padding: 0 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.registration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.registration-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
}

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

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

.registration-intro strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.registration-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.registration-steps {
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
}

.registration-steps h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.registration-steps h3 strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 0;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.step-number span {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

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

.registration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.visual-screen {
    width: 100%;
    background: rgba(15, 15, 45, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.5);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4), 0 0 40px rgba(0, 255, 204, 0.2);
    position: relative;
    z-index: 2;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 204, 0.3);
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.screen-dots span:nth-child(1) {
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca41;
}

.screen-title {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.screen-content {
    padding: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.form-field input {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 5px;
    color: var(--light-text);
    font-size: 1rem;
}

.login-button {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 5px;
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite alternate;
}

.registration-benefits {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.benefits-content {
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
}

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

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

.benefits-content strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.benefits-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.benefit-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.5), 0 0 40px rgba(0, 255, 204, 0.3);
}

.benefit-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.benefit-icon span {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
}

.registration-conclusion {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
    text-align: center;
}

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

.registration-conclusion strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

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

.conclusion-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.registration-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    height: 2px;
    opacity: 0.3;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 30%;
}

.line-2 {
    top: 60%;
    right: 0;
    width: 40%;
    background: linear-gradient(270deg, var(--primary-color), transparent);
}

.line-3 {
    bottom: 30%;
    left: 10%;
    width: 20%;
}

.circuit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
    opacity: 0.7;
}

.node-1 {
    top: 20%;
    left: 30%;
    animation: pulse 3s ease-in-out infinite;
}

.node-2 {
    top: 60%;
    right: 40%;
    animation: pulse 4s ease-in-out infinite;
}

.node-3 {
    bottom: 30%;
    left: 10%;
    animation: pulse 5s ease-in-out infinite;
}

.node-4 {
    bottom: 40%;
    right: 20%;
    animation: pulse 6s ease-in-out infinite;
}

.data-stream {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    opacity: 0;
    animation: dataStream 8s linear infinite;
}

.stream-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.stream-2 {
    bottom: 35%;
    left: 0;
    width: 100%;
    animation-delay: 4s;
}

@keyframes dataStream {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    10%, 90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Media Queries for Registration Section */
@media (max-width: 1024px) {
    .registration-header h2 {
        font-size: 2.4rem;
    }
    
    .registration-steps-container,
    .registration-benefits {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .registration-steps-container,
    .registration-benefits {
        grid-template-columns: 1fr;
    }
    
    .registration-steps {
        padding: 30px;
    }
    
    .benefits-icons {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefit-icon {
        flex: 1;
        padding: 20px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-icon span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .step-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .step-item::after {
        left: 20px;
        top: 40px;
        height: calc(100% - 20px);
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .benefits-icons {
        flex-direction: column;
    }
    
    .registration-conclusion {
        padding: 30px 20px;
    }
}

.bonus-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.05;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 12s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    right: 15%;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: float 8s ease-in-out infinite;
}

.shape-4 {
    bottom: 30%;
    left: 12%;
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 9s ease-in-out infinite alternate;
}

.shape-5 {
    top: 25%;
    left: 30%;
    width: 80px;
    height: 80px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float 11s ease-in-out infinite alternate-reverse;
}

.bonus-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.glow-1 {
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite alternate-reverse;
}

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

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.03) 0%, transparent 50%),
                linear-gradient(225deg, rgba(0, 0, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.security-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.security-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    padding: 0 20px;
    color: var(--light-text);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.security-header h2::before,
.security-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
}

.security-header h2::before {
    left: -80px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.security-header h2::after {
    right: -80px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.security-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.security-content {
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.security-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(0, 0, 255, 0.05));
    z-index: -1;
}

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

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

.security-content strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

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

.shield-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.shield-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.shield-icon i {
    font-size: 6rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite alternate;
}

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

.security-feature {
    padding: 30px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.security-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.5), 0 0 40px rgba(0, 255, 204, 0.3);
}

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

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 0, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: var(--transition);
}

.security-feature:hover .feature-content h3::after {
    width: 100%;
}

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

.security-tips {
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3), 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.security-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(0, 0, 255, 0.05));
    z-index: -1;
}

.tips-header {
    margin-bottom: 25px;
}

.tips-header h3 {
    font-size: 1.8rem;
    color: var(--light-text);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tips-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.tips-content {
    max-width: 800px;
    margin: 0 auto 30px;
}

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

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

.tips-content strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

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

.tips-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.security-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.security-grid {
    position: absolute;
    background: linear-gradient(rgba(0, 255, 204, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 204, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

.grid-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    transform: perspective(500px) rotateX(30deg) rotateZ(15deg);
}

.grid-2 {
    bottom: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    transform: perspective(500px) rotateX(30deg) rotateZ(-15deg);
}

.grid-3 {
    top: 40%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: perspective(500px) rotateX(45deg) rotateZ(45deg);
}

.security-pulse {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: securityPulse 4s ease-in-out infinite;
}

.pulse-1 {
    top: 30%;
    left: 20%;
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-color);
    animation-delay: 0s;
}

.pulse-2 {
    bottom: 25%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 1px solid var(--primary-color);
    animation-delay: 2s;
}

.security-scan {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
    animation: securityScan 8s linear infinite;
}

.scan-line {
    top: 0;
}

.security-code {
    position: absolute;
    font-family: monospace;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
}

.code-1 {
    top: 20%;
    right: 10%;
    animation: typeCode 10s steps(40) infinite;
}

.code-2 {
    bottom: 15%;
    left: 8%;
    animation: typeCode 8s steps(30) infinite;
    animation-delay: 2s;
}

@keyframes securityPulse {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes securityScan {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

@keyframes typeCode {
    0% {
        width: 0;
    }
    50% {
        width: 15ch;
    }
    100% {
        width: 0;
    }
}

/* Media Queries for Security Section */
@media (max-width: 1024px) {
    .security-header h2 {
        font-size: 2.4rem;
    }
    
    .security-main {
        gap: 30px;
    }
    
    .security-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .security-main {
        grid-template-columns: 1fr;
    }
    
    .shield-container {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon i {
        font-size: 4rem;
    }
    
    .shield-glow {
        width: 200px;
        height: 200px;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .security-header h2::before,
    .security-header h2::after {
        width: 30px;
    }
    
    .security-header h2::before {
        left: -40px;
    }
    
    .security-header h2::after {
        right: -40px;
    }
}

@media (max-width: 576px) {
    .security-content,
    .security-feature,
    .security-tips {
        padding: 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .tips-header h3 {
        font-size: 1.5rem;
    }
    
    .security-header h2::before,
    .security-header h2::after {
        display: none;
    }
}

@media (max-width: 1100px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive Styles for Sticky Buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 12px 15px;
    }
    
    .sticky-btn {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .sticky-btn i {
        margin-right: 4px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sticky-buttons {
        padding: 10px;
    }
    
    .sticky-btn {
        padding: 8px 5px;
        font-size: 0.8rem;
        margin: 0 3px;
    }
    
    .sticky-btn i {
        margin-right: 3px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .sticky-btn {
        padding: 8px 4px;
        font-size: 0.75rem;
        margin: 0 2px;
    }
    
    .sticky-btn i {
        margin-right: 2px;
        font-size: 0.85rem;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: rgba(0, 255, 204, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .scroll-top {
        bottom: 65px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    height: calc(100vh - var(--header-height));
    visibility: visible;
    overflow-y: auto;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active ul {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: rgba(0, 255, 204, 0.05);
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
}

.mobile-menu a:hover::before {
    width: 80%;
}

.mobile-menu a.active {
    color: var(--primary-color);
    background: rgba(0, 255, 204, 0.05);
}

.mobile-menu a.active::before {
    width: 80%;
}

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

.trending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 0, 255, 0.1), transparent 70%),
                radial-gradient(ellipse at bottom left, rgba(0, 255, 204, 0.1), transparent 70%);
    z-index: 0;
}

.trending-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.trending-content h2 {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 30px;
    color: var(--light-text);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
    position: relative;
    display: inline-block;
}

.trending-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transform: none;
}

.trending-text {
    position: relative;
    padding: 30px;
    background: rgba(15, 15, 45, 0.5);
    border-radius: 10px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    backdrop-filter: blur(5px);
}

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

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

.trending-text strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.trending-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trending-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(15, 15, 45, 0.5);
    border-radius: 10px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trending-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(255, 0, 255, 0.05));
    z-index: -1;
}

.trending-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6), 0 0 30px rgba(0, 255, 204, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.trending-cta {
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 10px;
    border: var(--neon-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trending-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.trending-cta p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.trending-cta strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.trending-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.trending-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circle-element {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.circle-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(0, 255, 204, 0.2);
    animation: pulse 4s ease-in-out infinite alternate;
}

.circle-2 {
    bottom: 15%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 1px dashed rgba(255, 0, 255, 0.2);
    animation: pulse 5s ease-in-out infinite alternate-reverse;
}

.line-element {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
}

.line-1 {
    top: 30%;
    left: 0;
    width: 100%;
    opacity: 0.2;
}

.line-2 {
    bottom: 20%;
    left: 0;
    width: 100%;
    opacity: 0.2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

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

/* Media Queries for Trending Section */
@media (max-width: 1024px) {
    .trending-grid {
        gap: 30px;
    }
    
    .trending-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-content h2 {
        text-align: center;
    }
    
    .trending-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .trending-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-content h3 {
        margin-top: 10px;
    }
}

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

.casino-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
                linear-gradient(225deg, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    padding: 0 20px;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.section-header h2::before {
    left: -60px;
}

.section-header h2::after {
    right: -60px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.casino-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 2;
}

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

.casino-text {
    position: relative;
    padding: 40px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

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

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

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

.casino-text strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

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

.casino-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6), 0 0 40px rgba(0, 255, 204, 0.3);
}

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

.card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.casino-card:hover .card-icon::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

.card-icon i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 1;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.casino-card:hover .card-content h3::after {
    width: 100%;
}

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

.casino-highlight {
    position: relative;
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
    border: var(--neon-border);
    box-shadow: var(--glow-shadow);
    overflow: hidden;
}

.highlight-content {
    flex: 1;
    padding: 40px;
    position: relative;
    z-index: 2;
}

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

.highlight-content strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.highlight-cta {
    margin-top: 30px;
    text-align: center;
}

.highlight-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.highlight-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-item {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
}

.item-1 {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite alternate;
}

.item-2 {
    bottom: -30px;
    right: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate-reverse;
}

.item-3 {
    top: 40%;
    right: 10%;
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
    animation: float 10s ease-in-out infinite alternate;
}

.casino-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hexagon {
    position: absolute;
    width: 100px;
    height: 115px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.05;
}

.hex-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 173px;
    animation: float 8s ease-in-out infinite;
}

.hex-2 {
    top: 20%;
    right: 8%;
    width: 120px;
    height: 138px;
    animation: float 12s ease-in-out infinite alternate;
}

.hex-3 {
    bottom: 15%;
    left: 10%;
    width: 100px;
    height: 115px;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

.hex-4 {
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 92px;
    animation: float 7s ease-in-out infinite;
}

.hex-5 {
    top: 50%;
    left: 20%;
    width: 60px;
    height: 69px;
    animation: float 9s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Media Queries for Casino Games Section */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .casino-cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .casino-cards {
        grid-template-columns: 1fr;
    }
    
    .section-header h2::before,
    .section-header h2::after {
        width: 20px;
    }
    
    .section-header h2::before {
        left: -30px;
    }
    
    .section-header h2::after {
        right: -30px;
    }
    
    .casino-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .casino-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-content h3 {
        margin-top: 15px;
    }
    
    .card-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

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

.bonus-promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
                linear-gradient(225deg, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.bonus-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.bonus-header h2 {
    display: inline-block;
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 20px;
    padding: 0 20px;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.bonus-header h2::before,
.bonus-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.bonus-header h2::before {
    left: -60px;
}

.bonus-header h2::after {
    right: -60px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "main-content cards"
        "side-content cards";
    gap: 40px;
    position: relative;
    z-index: 2;
}

.bonus-main-content {
    grid-area: main-content;
}

.bonus-side-content {
    grid-area: side-content;
}

.bonus-cards {
    grid-area: cards;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-text {
    position: relative;
    padding: 30px;
    background: rgba(15, 15, 45, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.1);
    backdrop-filter: blur(5px);
    height: 100%;
}

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

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

.bonus-text strong {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.bonus-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 0, 255, 0.1));
    z-index: 0;
}

.bonus-card-inner {
    position: relative;
    padding: 30px;
    background: rgba(15, 15, 45, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4), 0 0 30px rgba(255, 204, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    height: 100%;
    transition: var(--transition);
}

.bonus-card:hover .bonus-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.3);
}

.bonus-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(255, 204, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.bonus-card:hover .bonus-icon::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

.bonus-icon i {
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 1;
}

.bonus-card-content {
    flex: 1;
}

.bonus-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.bonus-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: var(--transition);
}

.bonus-card:hover .bonus-card-content h3::after {
    width: 100%;
}

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

.bonus-percentage {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 50%;
    border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.bonus-percentage span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.bonus-tag span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.bonus-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.05;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 15s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
    animation: float 10s ease-in-out infinite alternate;
}

.shape-4 {
    bottom: 30%;
    left: 15%;
    width: 120px;
    height: 120px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

.shape-5 {
    top: 20%;
    right: 40%;
    width: 80px;
    height: 80px;
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    animation: float 13s ease-in-out infinite alternate;
}

.bonus-glow {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.glow-1 {
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: 20%;
    right: 15%;
    width: 250px;
    height: 250px;
    opacity: 0.2;
    animation: pulse 10s ease-in-out infinite alternate-reverse;
}

/* Media Queries for Bonus Promotions Section */
@media (max-width: 1024px) {
    .bonus-header h2 {
        font-size: 2.4rem;
    }
    
    .bonus-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main-content"
            "cards"
            "side-content";
    }
    
    .bonus-header h2::before,
    .bonus-header h2::after {
        width: 20px;
    }
    
    .bonus-header h2::before {
        left: -30px;
    }
    
    .bonus-header h2::after {
        right: -30px;
    }
}

@media (max-width: 576px) {
    .bonus-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .bonus-card-content h3 {
        margin-top: 15px;
    }
    
    .bonus-card-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bonus-percentage,
    .bonus-tag {
        top: 10px;
        right: 10px;
    }
    
    .bonus-percentage span {
        font-size: 1.1rem;
    }
    
    .bonus-tag {
        padding: 3px 10px;
    }
    
    .bonus-tag span {
        font-size: 0.9rem;
    }
    
    .bonus-header h2::before,
    .bonus-header h2::after {
        display: none;
    }
}
