<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo i {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-right: 0.75rem;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

.site-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a:hover {
    color: var(--text-primary);
}

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

.nav-menu li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.btn-login {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(110, 0, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(110, 0, 255, 0.5);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 20px;
    justify-content: space-between;
    position: relative;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Active state for mobile menu toggle */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(110, 0, 255, 0.1) 0%, transparent 30%), radial-gradient(circle at 80% 20%, rgba(255, 64, 129, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

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

.footer-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.footer-logo span {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links-column h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-links-column ul li {
    margin-bottom: 0.75rem;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-disclaimer {
    background: rgba(30, 30, 30, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    flex: 1;
    max-width: 120px;
}

.sticky-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sticky-btn.btn-login {
    color: var(--accent-color);
    border: none;
    background: transparent;
}

.sticky-btn.btn-login i {
    color: var(--accent-color);
}

.sticky-btn.btn-register {
    color: var(--secondary-color);
    box-shadow: none;
    background: transparent;
}

.sticky-btn.btn-register i {
    color: var(--secondary-color);
}

.sticky-btn.btn-bonus {
    color: var(--primary-color);
    border: none;
    background: transparent;
}

.sticky-btn.btn-bonus i {
    color: var(--primary-color);
}

.sticky-btn:hover {
    transform: translateY(-5px);
}

/* Adjust main content to make room for header and sticky buttons */
main {
    margin-top: 72px;
    /* Height of header */
    padding-bottom: 70px;
    /* Height of sticky buttons */
}

/* Media Queries for Header and Footer */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 1150px) {
    .main-navigation,
    .header-actions {
        display: none;
    }

    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-actions.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        margin-left: 0;
    }

    .header-actions.active .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 992px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo i {
        font-size: 1.5rem;
    }

    .site-name {
        font-size: 1.25rem;
    }

    .footer-logo i {
        font-size: 2rem;
    }

    .footer-logo span {
        font-size: 1.5rem;
    }

    .sticky-btn span {
        font-size: 0.75rem;
    }
}

/* Base Theme Styles */
:root {
    /* Color Scheme */
    --primary-color: #6e00ff;
    --secondary-color: #ff4081;
    --accent-color: #00e5ff;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #737373;
    --border-color: #333333;
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #9500ff);
    color: white;
    box-shadow: 0 4px 15px rgba(110, 0, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9500ff, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 0, 255, 0.6);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b9b);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6b9b, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6);
    color: white;
}

/* Hero Section Styles */
.hero-section {
    background: radial-gradient(circle at center, #1a0033, var(--darker-bg));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;rect fill="rgba(255,255,255,0.03)" width="1" height="1" x="0" y="0"/&gt;&lt;/svg&gt;');
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.hero-image .main-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 2px solid rgba(110, 0, 255, 0.3);
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.8;
    animation: float 3s infinite ease-in-out;
}

.floating-coin-1 {
    top: 15%;
    left: -5%;
    color: gold;
    animation-delay: 0.5s;
}

.floating-diamond {
    top: 50%;
    right: -5%;
    color: var(--secondary-color);
    font-size: 3rem;
    animation-delay: 0.2s;
}

.floating-coin-2 {
    bottom: 20%;
    left: 10%;
    color: gold;
    animation-delay: 0.8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .hero-section h1 {
        font-size: 1.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Features Section Styles */
.features-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(110, 0, 255, 0.15) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(255, 64, 129, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

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

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-text {
    color: var(--text-secondary);
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(40, 40, 40, 0.8));
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(110, 0, 255, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.5);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(110, 0, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 0, 255, 0.6);
    color: white;
}

.btn-cta i {
    font-size: 1.25rem;
}

/* Media Queries for Features Section */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .features-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-content {
        grid-template-columns: 1fr;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Why Choose Section Styles */
.why-choose-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"&gt;&lt;circle cx="1" cy="1" r="1" fill="rgba(110, 0, 255, 0.1)"/&gt;&lt;/svg&gt;');
    opacity: 0.5;
    pointer-events: none;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

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

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(110, 0, 255, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 0.9;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    font-size: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.why-choose-text {
    color: var(--text-secondary);
}

.why-choose-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.why-choose-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    background: rgba(40, 40, 40, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(110, 0, 255, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.benefit-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(110, 0, 255, 0.1);
    box-shadow: 0 8px 20px rgba(110, 0, 255, 0.3);
    color: var(--accent-color);
}

/* Media Queries for Why Choose Section */
@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .benefits-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .overlay-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

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

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(110, 0, 255, 0.15) 0%, transparent 35%), radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 35%);
    pointer-events: none;
}

.security-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.security-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.security-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.security-shields {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.security-shield {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2c1a4d, #0a0a0a);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.4);
    border: 2px solid rgba(110, 0, 255, 0.3);
}

.shield-icon i {
    font-size: 3.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 60px 30px rgba(110, 0, 255, 0.3);
    animation: pulse-glow 3s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.security-features {
    margin-top: 4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.feature-item {
    display: flex;
    margin-bottom: 2rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 229, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.feature-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.feature-details strong {
    color: var(--accent-color);
    font-weight: 700;
}

.login-guidance {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(110, 0, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.guidance-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.guidance-header i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.guidance-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.login-guidance p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.login-guidance p:last-child {
    margin-bottom: 0;
}

.login-guidance strong {
    color: var(--accent-color);
    font-weight: 700;
}

.security-cta {
    text-align: center;
}

.btn-security {
    background: linear-gradient(135deg, #00c2ff, var(--primary-color));
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-security:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.6);
    color: white;
}

.btn-security i {
    font-size: 1.25rem;
}

/* Media Queries for Security Section */
@media (max-width: 992px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-shields {
        order: -1;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .login-guidance {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .shield-icon {
        width: 100px;
        height: 100px;
    }

    .shield-icon i {
        font-size: 2.5rem;
    }

    .shield-glow {
        width: 150px;
        height: 150px;
    }

    .guidance-header {
        flex-direction: column;
        text-align: center;
    }

    .guidance-header i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .feature-item {
        align-items: center;
        text-align: center;
    }
}

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

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(110, 0, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(110, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.games-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.game-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.game-preview:hover .game-image {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-preview:hover .game-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.game-preview:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.category-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-item:hover {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(50, 50, 50, 0.8));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(110, 0, 255, 0.3);
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.category-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.games-description {
    color: var(--text-secondary);
}

.games-description p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.games-description strong {
    color: var(--accent-color);
    font-weight: 700;
}

.games-description a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.games-description a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.features-list i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.features-list span {
    color: var(--text-secondary);
}

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

/* Popular Games */
.popular-games {
    margin-top: 4rem;
}

.sub-heading {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(110, 0, 255, 0.3);
}

.game-card-img {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
}

.game-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 0, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay span {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.game-card:hover .card-overlay span {
    transform: translateY(0);
}

.game-card-info {
    padding: 1rem;
}

.game-card-info h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.game-provider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-provider span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rating {
    color: gold;
    font-size: 0.75rem;
}

.see-more {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-outline-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    gap: 0.75rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.btn-outline-accent:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-3px);
    color: var(--accent-color);
}

.btn-outline-accent i {
    font-size: 1.125rem;
}

/* Media Queries for Games Section */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .games-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-showcase {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-categories {
        grid-template-columns: 1fr;
    }

    .sub-heading {
        font-size: 1.5rem;
        text-align: center;
    }

    .sub-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 2rem;
    }

    .category-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .category-icon {
        margin-bottom: 0.5rem;
    }

    .features-list li {
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .features-list i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Registration Section Styles */
.registration-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 90%, rgba(255, 64, 129, 0.1) 0%, transparent 30%), radial-gradient(circle at 90% 10%, rgba(110, 0, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Registration Steps */
.registration-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-container {
    position: relative;
}

.step-item {
    display: flex;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(50, 50, 50, 0.8));
    border-color: rgba(110, 0, 255, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.step-number span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-info h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.step-info strong {
    color: var(--accent-color);
}

.step-connector {
    position: absolute;
    top: 100%;
    left: 25px;
    height: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    z-index: 1;
}

/* Registration Details */
.registration-details {
    display: flex;
    flex-direction: column;
}

.registration-text {
    color: var(--text-secondary);
}

.registration-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.registration-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.highlighted-box {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(40, 40, 40, 0.9));
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlighted-box h3 {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.highlighted-box h3 i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.info-list span {
    color: var(--text-secondary);
}

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

/* Device Mockup */
.device-mockup {
    margin-top: 2rem;
    position: relative;
    max-width: 320px;
    align-self: center;
    perspective: 1000px;
}

.device-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 30px;
    background: linear-gradient(145deg, #333, #222);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.device-mockup:hover .device-frame {
    transform: rotateY(0deg) rotateX(0deg);
}

.device-screen {
    position: relative;
    background-color: var(--darker-bg);
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 180%;
    /* Aspect ratio for mobile screen */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.device-details {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #222;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.device-camera {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-left: 10px;
}

.device-button {
    width: 40px;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.login-interface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.login-logo i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.login-logo span {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.input-field {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-field i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.input-mock {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    flex-grow: 1;
}

.login-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 0.5rem;
    display: block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 0, 255, 0.5);
    color: white;
}

.register-link {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.register-link span {
    color: var(--text-muted);
}

.register-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
}

.register-link a:hover {
    text-decoration: underline;
}

/* CTA Section */
.registration-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    min-width: 200px;
}

/* Media Queries for Registration Section */
@media (max-width: 1200px) {
    .registration-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .registration-steps {
        max-width: 600px;
        margin: 0 auto;
    }

    .device-mockup {
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .step-item {
        padding: 1.25rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-right: 1rem;
    }

    .step-number span {
        font-size: 1rem;
    }

    .step-connector {
        left: 20px;
    }

    .highlighted-box {
        padding: 1.25rem;
    }

    .registration-cta {
        flex-direction: column;
        align-items: center;
    }

    .registration-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .step-connector {
        display: none;
    }

    .info-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-list i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}</pre></body></html>