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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0d1117;
    color: #f0f6fc;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

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

/* Container Styles */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: #c9d1d9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 160, 67, 0.4);
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.4);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 12px 16px;
    }
    
    .hero-badge {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-tagline {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.75rem;
    color: #58a6ff;
    font-weight: 600;
    margin-top: -2px;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link i {
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button i {
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    margin: 2px 0;
    border-radius: 1px;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(248, 81, 73, 0.2);
    border: 1px solid rgba(248, 81, 73, 0.5);
    border-radius: 50%;
    color: #f85149;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(248, 81, 73, 0.3);
    transform: scale(1.05);
}

.mobile-menu-close i {
    font-size: 1.2rem;
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-item.cta-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    border: 1px solid transparent;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-cta-button i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .site-header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-nav {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Body padding to account for fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* About Section Styles */
.about-section {
    background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 160, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.about-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-description strong {
    color: #ffd700;
    font-weight: 700;
}

.lottery-types {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.lottery-types-title {
    font-size: 1.3rem;
    color: #58a6ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lottery-types-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.lottery-types-title strong {
    color: #ffd700;
}

.lottery-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lottery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lottery-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.lottery-item i {
    color: #58a6ff;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.lottery-item span {
    color: #f0f6fc;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.about-img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 160, 67, 0.3);
}

.badge-item i {
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description p {
        text-align: left;
    }
    
    .lottery-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 1.9rem;
        line-height: 1.4;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .lottery-types {
        padding: 20px;
    }
    
    .lottery-types-title {
        font-size: 1.1rem;
    }
    
    .lottery-item {
        padding: 10px 12px;
    }
    
    .lottery-item span {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .badge-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .lottery-types {
        padding: 15px;
    }
    
    .lottery-types-title {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .lottery-item {
        justify-content: center;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Payout Section Styles */
.payout-section {
    background: linear-gradient(135deg, #0d1117 0%, #21262d 50%, #161b22 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.payout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.payout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.payout-image {
    position: relative;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.payout-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.payout-img:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

.payout-highlight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

.payout-highlight i {
    font-size: 1.2rem;
}

.payout-text {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.payout-title {
    font-size: 2.3rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.payout-title strong {
    color: #58a6ff;
}

.payout-description {
    margin-bottom: 40px;
}

.payout-description p {
    font-size: 1.05rem;
    color: #c9d1d9;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.payout-description strong {
    color: #ffd700;
    font-weight: 700;
}

.payout-description a {
    color: #58a6ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.payout-description a:hover {
    color: #ffd700;
}

.payout-features {
    margin-top: 40px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #0d1117;
}

.feature-card h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.feature-card p {
    font-size: 0.9rem;
    color: #8b949e;
    line-height: 1.4;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .payout-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .payout-title {
        font-size: 2.1rem;
    }
    
    .payout-description p {
        text-align: left;
    }
    
    .feature-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .payout-section {
        padding: 80px 0;
    }
    
    .payout-container {
        padding: 0 15px;
    }
    
    .payout-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .payout-description p {
        font-size: 1rem;
    }
    
    .payout-highlight {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .payout-title {
        font-size: 1.5rem;
    }
    
    .payout-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .payout-highlight {
        position: static;
        transform: none;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

/* Security Section Styles */
.security-section {
    background: linear-gradient(180deg, #21262d 0%, #0d1117 50%, #161b22 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-text {
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.security-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.security-title strong:first-child {
    color: #58a6ff;
}

.security-title strong:nth-child(2) {
    color: #2ea043;
}

.security-title strong:last-child {
    color: #f85149;
}

.security-description {
    margin-bottom: 40px;
}

.security-description p {
    font-size: 1.05rem;
    color: #c9d1d9;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.security-description strong {
    color: #ffd700;
    font-weight: 700;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(88, 166, 255, 0.08);
    border-color: rgba(88, 166, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #0d1117;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: #58a6ff;
    margin-bottom: 5px;
    font-family: 'Prompt', sans-serif;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-info h4 {
    color: #ffd700;
}

.feature-info p {
    font-size: 0.9rem;
    color: #8b949e;
    line-height: 1.4;
    margin: 0;
}

.transaction-times {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.time-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.time-item.deposit {
    background: linear-gradient(135deg, rgba(46, 160, 67, 0.1) 0%, rgba(46, 160, 67, 0.05) 100%);
    border: 1px solid rgba(46, 160, 67, 0.3);
}

.time-item.withdraw {
    background: linear-gradient(135deg, rgba(248, 81, 73, 0.1) 0%, rgba(248, 81, 73, 0.05) 100%);
    border: 1px solid rgba(248, 81, 73, 0.3);
}

.time-item:hover {
    transform: translateY(-2px);
}

.time-item.deposit:hover {
    background: linear-gradient(135deg, rgba(46, 160, 67, 0.15) 0%, rgba(46, 160, 67, 0.08) 100%);
    box-shadow: 0 8px 25px rgba(46, 160, 67, 0.2);
}

.time-item.withdraw:hover {
    background: linear-gradient(135deg, rgba(248, 81, 73, 0.15) 0%, rgba(248, 81, 73, 0.08) 100%);
    box-shadow: 0 8px 25px rgba(248, 81, 73, 0.2);
}

.time-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-item.deposit i {
    background: #2ea043;
    color: #ffffff;
}

.time-item.withdraw i {
    background: #f85149;
    color: #ffffff;
}

.time-info {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 2px;
}

.time-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
}

.security-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.security-img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(88, 166, 255, 0.3);
    transition: all 0.4s ease;
}

.security-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
    border-color: rgba(88, 166, 255, 0.5);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateX(-5px) scale(1.05);
}

.ssl-badge {
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
}

.auto-badge {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
}

.time-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
}

.badge i {
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .security-text {
        text-align: center;
    }
    
    .security-title {
        font-size: 2rem;
    }
    
    .security-description p {
        text-align: left;
    }
    
    .security-features {
        max-width: 600px;
        margin: 40px auto;
    }
    
    .transaction-times {
        max-width: 500px;
        margin: 30px auto 0;
    }
    
    .security-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 80px 0;
    }
    
    .security-container {
        padding: 0 15px;
    }
    
    .security-title {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    
    .security-description p {
        font-size: 1rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .transaction-times {
        flex-direction: column;
    }
    
    .security-badges {
        gap: 8px;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .security-title {
        font-size: 1.4rem;
    }
    
    .security-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-info h4 {
        font-size: 1rem;
    }
    
    .feature-info p {
        font-size: 0.85rem;
    }
    
    .time-item {
        padding: 15px;
        gap: 12px;
    }
    
    .time-item i {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .time-value {
        font-size: 1rem;
    }
    
    .security-badges {
        flex-wrap: wrap;
    }
}

/* Promotions Section Styles */
.promotions-section {
    background: linear-gradient(135deg, #161b22 0%, #0d1117 50%, #21262d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.promotions-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 160, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.promotions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promotions-text {
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.promotions-title {
    font-size: 2.3rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promotions-title strong {
    color: #58a6ff;
}

.promotions-description {
    margin-bottom: 40px;
}

.promotions-description p {
    font-size: 1.05rem;
    color: #c9d1d9;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.promotions-description strong {
    color: #ffd700;
    font-weight: 700;
}

.promotions-description a {
    color: #2ea043;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.promotions-description a:hover {
    color: #58a6ff;
}

.signup-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.process-title {
    font-size: 1.3rem;
    color: #58a6ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Prompt', sans-serif;
}

.process-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.process-title strong {
    color: #ffd700;
}

.signup-steps {
    list-style: none;
    display: grid;
    gap: 15px;
    counter-reset: step;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    transform: scale(1.1);
}

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

.step-text {
    font-size: 0.95rem;
    color: #f0f6fc;
    font-weight: 500;
}

.step-text strong {
    color: #ffd700;
}

.step-content i {
    color: #8b949e;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-item:hover .step-content i {
    color: #58a6ff;
    transform: scale(1.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 160, 67, 0.4);
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
}

.promotions-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.promotions-img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.promotions-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.promo-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-card.welcome-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.promo-card.daily-promo {
    background: linear-gradient(135deg, rgba(46, 160, 67, 0.15) 0%, rgba(46, 160, 67, 0.05) 100%);
}

.promo-card.quick-signup {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.15) 0%, rgba(88, 166, 255, 0.05) 100%);
}

.promo-card:hover {
    transform: translateY(-3px) translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.promo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.welcome-bonus .promo-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.daily-promo .promo-icon {
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
}

.quick-signup .promo-icon {
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
}

.promo-card:hover .promo-icon {
    transform: scale(1.1) rotate(5deg);
}

.promo-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.welcome-bonus .promo-icon i {
    color: #0d1117;
}

.promo-info h4 {
    font-size: 1rem;
    color: #f0f6fc;
    margin-bottom: 2px;
    font-family: 'Prompt', sans-serif;
}

.promo-info p {
    font-size: 0.85rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .promotions-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .promotions-text {
        text-align: center;
    }
    
    .promotions-title {
        font-size: 2.1rem;
    }
    
    .promotions-description p {
        text-align: left;
    }
    
    .signup-process {
        max-width: 600px;
        margin: 40px auto;
    }
    
    .cta-buttons {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .promo-cards {
        max-width: 400px;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 80px 0;
    }
    
    .promotions-container {
        padding: 0 15px;
    }
    
    .promotions-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .promotions-description p {
        font-size: 1rem;
    }
    
    .signup-process {
        padding: 20px;
    }
    
    .process-title {
        font-size: 1.1rem;
    }
    
    .signup-steps {
        gap: 12px;
    }
    
    .step-item {
        padding: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-card {
        padding: 12px 15px;
    }
    
    .promo-icon {
        width: 40px;
        height: 40px;
    }
    
    .promo-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .promotions-title {
        font-size: 1.5rem;
    }
    
    .promotions-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .signup-process {
        padding: 15px;
    }
    
    .process-title {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .step-item {
        padding: 10px;
        gap: 10px;
    }
    
    .step-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .promo-card {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .promo-info h4 {
        font-size: 0.9rem;
    }
    
    .promo-info p {
        font-size: 0.8rem;
    }
}

/* Advantages Section Styles */
.advantages-section {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.advantages-image {
    position: relative;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.advantages-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.advantages-img:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

.advantage-highlights {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px) scale(1.05);
}

.highlight-item.casino {
    background: linear-gradient(135deg, #f85149 0%, #da3633 100%);
}

.highlight-item.payout {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
}

.highlight-item.trust {
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
}

.highlight-item i {
    font-size: 0.9rem;
}

.advantages-text {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.advantages-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.advantages-title strong {
    color: #58a6ff;
}

.advantages-description {
    margin-bottom: 40px;
}

.advantages-description p {
    font-size: 1.05rem;
    color: #c9d1d9;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.advantages-description strong {
    color: #ffd700;
    font-weight: 700;
}

.advantages-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.list-title {
    font-size: 1.3rem;
    color: #58a6ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Prompt', sans-serif;
}

.list-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.list-title strong {
    color: #ffd700;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(88, 166, 255, 0.08);
    border-color: rgba(88, 166, 255, 0.3);
    transform: translateX(5px);
}

.benefit-item i {
    color: #58a6ff;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    color: #ffd700;
    transform: scale(1.2);
}

.benefit-item span {
    font-size: 1rem;
    color: #f0f6fc;
    font-weight: 500;
    line-height: 1.4;
}

.final-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.final-section p {
    font-size: 1.05rem;
    color: #c9d1d9;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

.final-section strong {
    color: #ffd700;
    font-weight: 700;
}

.final-section a {
    color: #2ea043;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.final-section a:hover {
    color: #58a6ff;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .advantages-text {
        text-align: center;
    }
    
    .advantages-title {
        font-size: 2rem;
    }
    
    .advantages-description p {
        text-align: left;
    }
    
    .advantages-list {
        max-width: 600px;
        margin: 40px auto;
    }
    
    .final-section {
        max-width: 700px;
        margin: 30px auto 0;
    }
    
    .advantage-highlights {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantages-container {
        padding: 0 15px;
    }
    
    .advantages-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .advantages-description p {
        font-size: 1rem;
    }
    
    .advantages-list {
        padding: 20px;
    }
    
    .list-title {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .final-section {
        padding: 20px;
    }
    
    .final-section p {
        font-size: 1rem;
    }
    
    .advantage-highlights {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .highlight-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .advantages-title {
        font-size: 1.5rem;
    }
    
    .advantages-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .advantages-list {
        padding: 15px;
    }
    
    .list-title {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .benefit-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .final-section {
        padding: 15px;
    }
    
    .final-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .advantage-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    color: #c9d1d9;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.brand-section {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-logo-tagline {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    color: #58a6ff;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #8b949e;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #c9d1d9;
}

.contact-item i {
    color: #58a6ff;
    width: 16px;
    text-align: center;
}

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.footer-link:hover {
    color: #58a6ff;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    color: #ffd700;
    transform: scale(1.2);
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 1.5rem;
    color: #58a6ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-badge:hover i {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    color: #f0f6fc;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.badge-desc {
    font-size: 0.8rem;
    color: #8b949e;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #8b949e;
    margin: 0;
}

.footer-disclaimer {
    text-align: center;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #f85149;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disclaimer-text i {
    color: #f85149;
    flex-shrink: 0;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 0.9rem;
    color: #c9d1d9;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(46, 160, 67, 0.1);
    border: 1px solid rgba(46, 160, 67, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(46, 160, 67, 0.2);
    transform: translateY(-2px);
}

.payment-icon i {
    color: #2ea043;
    font-size: 0.9rem;
}

.payment-icon span {
    color: #c9d1d9;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .brand-section {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 20px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .feature-badge {
        padding: 15px;
    }
    
    .footer-bottom {
        gap: 12px;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .disclaimer-text {
        text-align: center;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .feature-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .feature-badge i {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
    
    .footer-payment-methods {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-icons {
        gap: 8px;
    }
    
    .payment-icon {
        padding: 6px 8px;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Prompt', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s ease;
}

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

.btn-login {
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-register:hover {
    background: linear-gradient(135deg, #1f6feb 0%, #58a6ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

.btn-free-credit {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    position: relative;
}

.btn-free-credit::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #f85149;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-free-credit:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.sticky-btn:hover i {
    transform: scale(1.2);
}

.btn-text {
    font-size: 0.75rem;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Pulse animation for free credit button */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        min-height: 55px;
        font-size: 0.75rem;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .btn-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 50px;
        font-size: 0.7rem;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .btn-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
    
    .btn-text {
        font-size: 0.6rem;
    }
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 70px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 360px) {
    body {
        padding-bottom: 55px;
    }
}

/* Login Section Styles */
.login-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.login-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #58a6ff 50%, #2ea043 100%);
    border-radius: 20px 20px 0 0;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.login-subtitle {
    font-size: 1rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.4;
}

.error-message {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: 8px;
    color: #f85149;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

.error-message.show {
    display: flex;
}

.error-message i {
    color: #f85149;
    font-size: 1rem;
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c9d1d9;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.form-label i {
    color: #58a6ff;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #f0f6fc;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

.form-input::placeholder {
    color: #8b949e;
}

.form-input:focus {
    outline: none;
    border-color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.form-input.error {
    border-color: #f85149;
    background: rgba(248, 81, 73, 0.1);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.2);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #58a6ff;
}

.input-error {
    display: none;
    color: #f85149;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
}

.input-error.show {
    display: block;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #c9d1d9;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-custom {
    background: #58a6ff;
    border-color: #58a6ff;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 2px;
    top: -1px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    user-select: none;
}

.forgot-password {
    color: #58a6ff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #ffd700;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    margin-top: 10px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #1f6feb 0%, #58a6ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn.loading {
    pointer-events: none;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loader {
    display: flex;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.register-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 10px;
    color: #0d1117;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    text-transform: uppercase;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-info,
.support-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #8b949e;
    justify-content: center;
    text-align: center;
}

.security-info i {
    color: #2ea043;
}

.support-info i {
    color: #58a6ff;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 80px;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-content {
        padding: 30px 25px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .login-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 10px 12px;
    }
    
    .login-btn,
    .register-btn {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .login-footer {
        margin-top: 25px;
    }
    
    .security-info,
    .support-info {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* Register Section Styles */
.register-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(46, 160, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.register-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 160, 67, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.register-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2ea043 0%, #ffd700 50%, #58a6ff 100%);
    border-radius: 20px 20px 0 0;
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(46, 160, 67, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(46, 160, 67, 0.4);
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2ea043;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.register-subtitle {
    font-size: 1rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.4;
}

.error-message {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: 8px;
    color: #f85149;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

.error-message.show {
    display: flex;
}

.error-message i {
    color: #f85149;
    font-size: 1rem;
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c9d1d9;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.form-label i {
    color: #2ea043;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #f0f6fc;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

.form-input::placeholder {
    color: #8b949e;
}

.form-input:focus {
    outline: none;
    border-color: #2ea043;
    background: rgba(46, 160, 67, 0.1);
    box-shadow: 0 0 0 3px rgba(46, 160, 67, 0.2);
}

.form-input.error {
    border-color: #f85149;
    background: rgba(248, 81, 73, 0.1);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.2);
}

.input-error {
    display: none;
    color: #f85149;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
}

.input-error.show {
    display: block;
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #8b949e;
    margin-left: 5px;
}

.input-hint i {
    color: #58a6ff;
    font-size: 0.75rem;
}

.form-notice {
    background: rgba(46, 160, 67, 0.05);
    border: 1px solid rgba(46, 160, 67, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #c9d1d9;
}

.notice-item i {
    color: #2ea043;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.terms-agreement {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #c9d1d9;
    line-height: 1.4;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-input:checked + .checkbox-custom {
    background: #2ea043;
    border-color: #2ea043;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 2px;
    top: -1px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    user-select: none;
}

.terms-link {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.register-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    margin-top: 10px;
}

.register-btn:hover {
    background: linear-gradient(135deg, #238636 0%, #1a5d29 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 160, 67, 0.4);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn.loading {
    pointer-events: none;
}

.register-btn.loading .btn-text {
    opacity: 0;
}

.register-btn.loading .btn-loader {
    display: flex;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.login-btn {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid #58a6ff;
    border-radius: 10px;
    color: #58a6ff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    text-transform: uppercase;
}

.login-btn:hover {
    background: rgba(88, 166, 255, 0.1);
    border-color: #79c0ff;
    color: #79c0ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.2);
}

.register-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-info,
.support-info,
.age-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #8b949e;
    justify-content: center;
    text-align: center;
}

.security-info i {
    color: #2ea043;
}

.support-info i {
    color: #58a6ff;
}

.age-notice {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    color: #f85149;
}

.age-notice i {
    color: #f85149;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 80px;
    }
    
    .register-container {
        padding: 0 15px;
    }
    
    .register-content {
        padding: 30px 25px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-notice {
        padding: 12px;
    }
    
    .terms-agreement {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .register-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 10px 12px;
    }
    
    .register-btn,
    .login-btn {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .register-footer {
        margin-top: 25px;
    }
    
    .security-info,
    .support-info {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .age-notice {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .notice-item {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c9d1d9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.8rem;
    color: #ffd700;
    width: 40px;
    text-align: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #58a6ff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #8b949e;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.hero-cta i {
    font-size: 1.1rem;
}

/* Promotion Sections */
.promotion-section {
    background: linear-gradient(180deg, #161b22 0%, #0d1117 50%, #161b22 100%);
    padding: 80px 0;
    position: relative;
}

.promotion-section:nth-child(even) {
    background: linear-gradient(180deg, #0d1117 0%, #21262d 50%, #0d1117 100%);
}

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

.promotion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.promotion-header {
    margin-bottom: 30px;
}

.promotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.promotion-badge.new-member {
    background: linear-gradient(135deg, #2ea043 0%, #238636 100%);
    color: #ffffff;
}

.promotion-badge.first-deposit {
    background: linear-gradient(135deg, #58a6ff 0%, #1f6feb 100%);
    color: #ffffff;
}

.promotion-badge.referral {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1117;
}

.promotion-badge.monthly {
    background: linear-gradient(135deg, #f85149 0%, #da3633 100%);
    color: #ffffff;
}

.promotion-badge i {
    font-size: 0.9rem;
}

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promotion-benefits {
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.benefit-item i {
    color: #2ea043;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    color: #c9d1d9;
    line-height: 1.5;
}

.promotion-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.highlight-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.amount {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.currency {
    font-size: 1.2rem;
    color: #58a6ff;
    font-weight: 600;
}

.highlight-text {
    font-size: 1rem;
    color: #c9d1d9;
    font-weight: 600;
}

.promotion-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 166, 255, 0.3);
    text-transform: uppercase;
}

.promotion-cta:hover {
    background: linear-gradient(135deg, #1f6feb 0%, #58a6ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 166, 255, 0.4);
}

.promotion-cta i {
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .promotion-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        padding: 15px 20px;
    }
    
    .hero-cta {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .promotion-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .benefit-item {
        padding: 12px 15px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .promotion-highlight {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .promotion-title {
        font-size: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
    }
    
    .benefit-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .promotion-cta {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}