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

body {
    font-family: 'Sarabun', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
}

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

.btn-secondary {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c1810 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 90%;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

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

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: #ffd700;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 12px;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-badge {
        position: static;
        margin-top: 20px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

/* Site Logo */
.site-logo {
    flex-shrink: 0;
}

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

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.7rem;
    color: #d0d0d0;
    font-weight: 400;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

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

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0;
}

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

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding-left: 30px;
}

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

/* Mobile CTA Button */
.mobile-cta-item {
    margin-top: 20px;
    padding: 0 20px;
    border-bottom: none;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.mobile-cta-btn i {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        gap: 20px;
    }
    
    .nav-list {
        gap: 30px;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 260px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .mobile-menu-header {
        padding: 18px;
    }
    
    .mobile-logo {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .mobile-nav-link:hover {
        padding-left: 28px;
    }
    
    .mobile-cta-item {
        padding: 0 18px;
    }
    
    .mobile-cta-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}

/* Header offset for fixed positioning */
body {
    padding-top: 80px;
}

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

/* Premium Platform Section */
.premium-platform-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.premium-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.premium-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.premium-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.premium-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.premium-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.premium-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.4);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.overlay-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.overlay-badge i {
    color: #ffd700;
    font-size: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.premium-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.highlight-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.highlight-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.premium-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .premium-platform-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .premium-content {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .premium-text p {
        font-size: 1.05rem;
    }
    
    .premium-highlights {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .premium-platform-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .premium-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .premium-text {
        order: 2;
    }
    
    .premium-image {
        order: 1;
    }
    
    .premium-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .premium-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
        text-align: left;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .premium-platform-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .premium-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .premium-text {
        gap: 20px;
    }
    
    .premium-text p {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 16px;
        gap: 15px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-icon i {
        font-size: 1.1rem;
    }
    
    .highlight-content h4 {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .overlay-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Login Guide Section */
.login-guide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.login-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.login-guide-content {
    position: relative;
    z-index: 2;
}

.login-intro {
    text-align: center;
    margin-bottom: 60px;
}

.login-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.login-intro strong {
    color: #ff6b35;
    font-weight: 600;
}

.login-intro a {
    color: #f7931e;
    text-decoration: underline;
    font-weight: 600;
}

.login-intro a:hover {
    color: #ff6b35;
    text-decoration: none;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

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

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.step-number i {
    position: absolute;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0.3;
}

.step-number span {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    text-align: left;
    margin: 0;
}

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

.login-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(15px);
}

.features-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.features-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.features-text a {
    color: #f7931e;
    text-decoration: underline;
    font-weight: 600;
}

.features-text a:hover {
    color: #ff6b35;
    text-decoration: none;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.features-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .login-guide-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .login-intro {
        margin-bottom: 50px;
    }
    
    .login-intro p {
        font-size: 1.1rem;
    }
    
    .login-steps {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .step-card {
        padding: 30px;
    }
    
    .login-features {
        gap: 40px;
        padding: 30px;
    }
    
    .features-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .login-guide-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .login-intro {
        margin-bottom: 40px;
    }
    
    .login-intro p {
        font-size: 1.05rem;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .step-number i {
        font-size: 1.3rem;
    }
    
    .step-number span {
        font-size: 1.6rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
        text-align: center;
    }
    
    .features-text {
        order: 2;
        text-align: left;
    }
    
    .features-image {
        order: 1;
    }
    
    .features-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-guide-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .login-intro p {
        font-size: 1rem;
    }
    
    .login-steps {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
    }
    
    .step-number i {
        font-size: 1.1rem;
    }
    
    .step-number span {
        font-size: 1.4rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .login-features {
        gap: 25px;
        padding: 20px;
    }
    
    .features-text p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Free Credit Section */
.free-credit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f0a 0%, #2c1810 50%, #1a0f0a 100%);
    position: relative;
    overflow: hidden;
}

.free-credit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.free-credit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.credit-intro {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.credit-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.credit-intro strong {
    color: #ff6b35;
    font-weight: 600;
}

.credit-intro a {
    color: #f7931e;
    text-decoration: underline;
    font-weight: 600;
}

.credit-intro a:hover {
    color: #ff6b35;
    text-decoration: none;
}

.credit-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.credit-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.credit-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.credit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: bounce 2s infinite;
}

.credit-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

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

.promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.promo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

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

.promo-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.02);
}

.promo-card.featured::before {
    opacity: 0.7;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

.promo-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.promo-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    width: fit-content;
}

.promo-amount .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
}

.promo-amount .currency {
    font-size: 1rem;
    color: #f7931e;
    font-weight: 500;
}

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

.highlights-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.highlight-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.referral-bonus {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.referral-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

.referral-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.referral-visual {
    text-align: center;
}

.referral-rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    min-width: 120px;
}

.rate-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.rate-text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.credit-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .free-credit-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .free-credit-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .credit-intro p {
        font-size: 1.1rem;
    }
    
    .promotion-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .highlights-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .free-credit-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .free-credit-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .credit-intro {
        order: 2;
        text-align: left;
    }
    
    .credit-image {
        order: 1;
    }
    
    .credit-intro p {
        font-size: 1.05rem;
    }
    
    .promotion-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .promo-card {
        padding: 25px;
    }
    
    .highlights-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .referral-bonus {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .free-credit-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .credit-intro p {
        font-size: 1rem;
    }
    
    .promotion-cards {
        margin-bottom: 40px;
    }
    
    .promo-card {
        padding: 20px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 1.3rem;
    }
    
    .promo-content h3 {
        font-size: 1.2rem;
    }
    
    .promo-content p {
        font-size: 0.9rem;
    }
    
    .promo-amount .amount {
        font-size: 1.6rem;
    }
    
    .highlights-title {
        font-size: 1.4rem;
    }
    
    .highlight-item {
        padding: 15px;
        gap: 12px;
    }
    
    .highlight-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .referral-bonus {
        padding: 25px;
    }
    
    .referral-content h3 {
        font-size: 1.3rem;
    }
    
    .referral-content p {
        font-size: 0.9rem;
    }
    
    .rate-number {
        font-size: 2rem;
    }
    
    .rate-text {
        font-size: 0.9rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .credit-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Game Providers Section */
.game-providers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2c1810 100%);
    position: relative;
    overflow: hidden;
}

.game-providers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.providers-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.intro-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.intro-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.game-count-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: rotate 20s linear infinite;
}

.count-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.count-text {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.quality-info {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.quality-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0 0 20px 0;
}

.quality-info p:last-child {
    margin-bottom: 0;
}

.quality-info strong {
    color: #ff6b35;
    font-weight: 600;
}

.popular-providers {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.providers-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.provider-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

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

.provider-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.02);
}

.provider-card.featured::before {
    opacity: 0.7;
}

.provider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.provider-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.provider-content {
    position: relative;
    z-index: 2;
}

.provider-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.provider-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0 0 20px 0;
}

.provider-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.provider-content a {
    color: #f7931e;
    text-decoration: underline;
    font-weight: 600;
}

.provider-content a:hover {
    color: #ff6b35;
    text-decoration: none;
}

.provider-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.payout-rates {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.rates-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.rate-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.rate-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

.rate-percentage {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.percentage-number {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
}

.rate-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.rate-info p {
    font-size: 0.95rem;
    color: #d0d0d0;
    margin: 0;
    line-height: 1.4;
}

.auto-system {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.auto-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auto-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

.auto-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.auto-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.auto-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.providers-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-providers-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .providers-intro {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .providers-title {
        font-size: 2rem;
    }
    
    .provider-card {
        padding: 30px;
    }
    
    .rates-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .game-providers-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .providers-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .intro-text {
        order: 2;
        text-align: left;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-text p {
        font-size: 1.05rem;
    }
    
    .quality-info {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    .quality-info p {
        font-size: 1rem;
    }
    
    .providers-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .provider-card {
        padding: 25px;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rate-card {
        padding: 25px;
        gap: 20px;
    }
    
    .auto-system {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .game-providers-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .game-count-badge {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .count-number {
        font-size: 1.6rem;
    }
    
    .count-text {
        font-size: 0.7rem;
    }
    
    .quality-info {
        padding: 25px;
    }
    
    .quality-info p {
        font-size: 0.95rem;
    }
    
    .providers-title {
        font-size: 1.6rem;
    }
    
    .provider-card {
        padding: 20px;
    }
    
    .provider-icon {
        width: 50px;
        height: 50px;
    }
    
    .provider-icon i {
        font-size: 1.3rem;
    }
    
    .provider-content h4 {
        font-size: 1.2rem;
    }
    
    .provider-content p {
        font-size: 0.9rem;
    }
    
    .rates-title {
        font-size: 1.5rem;
    }
    
    .rate-card {
        padding: 20px;
        gap: 15px;
    }
    
    .rate-percentage {
        width: 70px;
        height: 70px;
    }
    
    .percentage-number {
        font-size: 0.9rem;
    }
    
    .rate-info h4 {
        font-size: 1.1rem;
    }
    
    .rate-info p {
        font-size: 0.85rem;
    }
    
    .auto-system {
        padding: 25px;
    }
    
    .auto-content h3 {
        font-size: 1.4rem;
    }
    
    .auto-content p {
        font-size: 0.95rem;
    }
    
    .auto-icon {
        width: 70px;
        height: 70px;
    }
    
    .auto-icon i {
        font-size: 1.8rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Professional Guide Section */
.professional-guide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.professional-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.guide-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.intro-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.guide-img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: glow 3s ease-in-out infinite alternate;
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

@keyframes glow {
    from {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    to {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 107, 53, 0.3);
    }
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.technique-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.technique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

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

.technique-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.02);
}

.technique-card.featured::before {
    opacity: 0.7;
}

.technique-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.technique-content {
    position: relative;
    z-index: 2;
}

.technique-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technique-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

.technique-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.money-split {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.split-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.split-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.split-label {
    font-size: 0.8rem;
    color: #d0d0d0;
    margin-top: 3px;
    text-align: center;
}

.accuracy-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    width: fit-content;
}

.rate-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.rate-label {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.pro-tips {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tips-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tip-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tip-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.tip-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

.final-advice {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.advice-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advice-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

.advice-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.patience-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.meter-bar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #ff6b35 0% 33%,
        #f7931e 33% 66%, 
        #ffd700 66% 100%,
        #333 100%
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-fill {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-labels {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #d0d0d0;
    text-align: center;
}

.guide-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .professional-guide-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .guide-intro {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .techniques-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .tips-title {
        font-size: 2rem;
    }
    
    .final-advice {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .professional-guide-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .guide-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .intro-text {
        order: 2;
        text-align: left;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-text p {
        font-size: 1.05rem;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .technique-card {
        padding: 25px;
    }
    
    .tips-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .tips-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tip-item {
        padding: 20px;
        gap: 15px;
    }
    
    .final-advice {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }
    
    .patience-meter {
        order: 1;
    }
    
    .advice-content {
        order: 2;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .professional-guide-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .experience-badge {
        padding: 12px 16px;
        top: 15px;
        right: 15px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 0.7rem;
    }
    
    .technique-card {
        padding: 20px;
    }
    
    .technique-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .technique-content h3 {
        font-size: 1.2rem;
    }
    
    .technique-content p {
        font-size: 0.9rem;
    }
    
    .money-split {
        gap: 10px;
    }
    
    .split-item {
        padding: 8px 12px;
        min-width: 70px;
    }
    
    .split-percent {
        font-size: 1.1rem;
    }
    
    .split-label {
        font-size: 0.7rem;
    }
    
    .accuracy-rate {
        padding: 8px 12px;
    }
    
    .rate-number {
        font-size: 1.2rem;
    }
    
    .rate-label {
        font-size: 0.8rem;
    }
    
    .tips-title {
        font-size: 1.6rem;
    }
    
    .tip-item {
        padding: 16px;
        gap: 12px;
    }
    
    .tip-icon {
        width: 45px;
        height: 45px;
    }
    
    .tip-icon i {
        font-size: 1.1rem;
    }
    
    .tip-content p {
        font-size: 0.9rem;
    }
    
    .final-advice {
        padding: 25px;
    }
    
    .advice-content h3 {
        font-size: 1.4rem;
    }
    
    .advice-content p {
        font-size: 0.95rem;
    }
    
    .meter-bar {
        width: 100px;
        height: 100px;
    }
    
    .meter-fill {
        width: 70px;
        height: 70px;
    }
    
    .meter-labels {
        gap: 10px;
        font-size: 0.7rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding: 60px 0 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-subtitle {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.8rem;
    color: #d0d0d0;
    font-weight: 400;
    margin-top: 5px;
}

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

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

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

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

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b35;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    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(90deg, #ff6b35, #f7931e);
}

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

.footer-nav li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 2px 0;
    display: block;
}

.footer-nav li a:hover {
    color: #ff6b35;
    padding-left: 8px;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.security-badge i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

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

.badge-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #d0d0d0;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    margin: 0 0 8px 0;
    color: #d0d0d0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.disclaimer {
    color: #999999 !important;
    font-size: 0.75rem !important;
    max-width: 500px;
    margin-top: 8px !important;
}

/* Social Links */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .site-footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-services {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-links,
    .footer-info {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .security-badges {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .footer-copyright {
        order: 2;
    }
    
    .footer-social {
        order: 1;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-logo-subtitle {
        font-size: 0.75rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-nav li a {
        font-size: 0.85rem;
    }
    
    .security-badge {
        padding: 10px;
    }
    
    .badge-title {
        font-size: 0.8rem;
    }
    
    .badge-subtitle {
        font-size: 0.7rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.7rem !important;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 12px;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 -2px 10px 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-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child {
    border-right: none;
}

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

.btn-text {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
}

/* Individual Button Styles */
.sticky-login {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.sticky-login:hover {
    background: linear-gradient(135deg, #34495e 0%, #4a6741 100%);
    transform: translateY(-2px);
}

.sticky-login i {
    color: #3498db;
}

.sticky-register {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.sticky-register:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #58d68d 100%);
    transform: translateY(-2px);
}

.sticky-register i {
    color: #ffffff;
}

.sticky-bonus {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
    overflow: hidden;
}

.sticky-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

.sticky-bonus:hover {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-bonus i {
    color: #ffd700;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover Effects */
.sticky-btn:hover i {
    transform: scale(1.1) translateY(-2px);
}

.sticky-btn:active {
    transform: scale(0.98);
}

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

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 50px;
        font-size: 0.75rem;
        gap: 2px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .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: 65px;
}

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

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

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

/* Login Section */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c1810 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 1rem;
    color: #d0d0d0;
    margin: 0;
    line-height: 1.5;
}

/* Login Form Wrapper */
.login-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.login-form-wrapper:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Error Message */
.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: errorSlideIn 0.3s ease;
}

.error-message i {
    flex-shrink: 0;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #ff6b35;
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:focus + .password-toggle,
.form-input:focus ~ .input-icon {
    color: #f7931e;
}

.form-input.error {
    border-color: rgba(231, 76, 60, 0.5);
    background: rgba(231, 76, 60, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #ff6b35;
}

/* Field Errors */
.field-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.field-error.show {
    opacity: 1;
    min-height: 20px;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.login-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: opacity 0.3s ease;
}

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

.btn-loader {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Footer */
.login-footer {
    margin-top: 30px;
    text-align: center;
}

.divider {
    position: relative;
    margin-bottom: 25px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text {
    background: rgba(26, 26, 26, 0.9);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.register-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.register-btn i {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 0;
        min-height: calc(100vh - 140px);
    }
    
    .login-container {
        max-width: 400px;
    }
    
    .login-form-wrapper {
        padding: 35px;
        margin: 0 20px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 60px 0;
    }
    
    .login-form-wrapper {
        padding: 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 14px 45px 14px 45px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 14px;
    }
    
    .password-toggle {
        right: 14px;
    }
}

@media (max-width: 360px) {
    .login-form-wrapper {
        padding: 20px;
        margin: 0 10px;
    }
    
    .login-title {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 12px 40px 12px 40px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 1rem;
    }
    
    .password-toggle {
        right: 12px;
    }
}

/* Register Section */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c1810 100%);
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.register-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Register Header */
.register-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.register-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    font-size: 1rem;
    color: #d0d0d0;
    margin: 0;
    line-height: 1.5;
}

/* Register Form Wrapper */
.register-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.register-form-wrapper:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Error Message */
.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: messageSlideIn 0.3s ease;
}

.error-message i {
    flex-shrink: 0;
}

/* Success Message */
.success-message {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: messageSlideIn 0.3s ease;
}

.success-message i {
    flex-shrink: 0;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #ff6b35;
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:focus ~ .input-icon {
    color: #f7931e;
}

.form-input.error {
    border-color: rgba(231, 76, 60, 0.5);
    background: rgba(231, 76, 60, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input.success {
    border-color: rgba(39, 174, 96, 0.5);
    background: rgba(39, 174, 96, 0.05);
}

.form-input.success:focus {
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Field Errors */
.field-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.field-error.show {
    opacity: 1;
    min-height: 20px;
}

/* Register Button */
.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.register-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: opacity 0.3s ease;
}

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

.btn-loader {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Register Footer */
.register-footer {
    margin-top: 30px;
    text-align: center;
}

.divider {
    position: relative;
    margin-bottom: 25px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text {
    background: rgba(26, 26, 26, 0.9);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    color: #ffffff;
}

.login-btn i {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 80px 0;
        min-height: calc(100vh - 140px);
    }
    
    .register-container {
        max-width: 400px;
    }
    
    .register-form-wrapper {
        padding: 35px;
        margin: 0 20px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 60px 0;
    }
    
    .register-form-wrapper {
        padding: 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 14px 18px 14px 45px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 14px;
    }
}

@media (max-width: 360px) {
    .register-form-wrapper {
        padding: 20px;
        margin: 0 10px;
    }
    
    .register-title {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 12px 16px 12px 40px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: heroTitleSlide 0.8s ease-out;
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    animation: heroCTASlide 0.8s ease-out 0.3s both;
}

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

/* Promotion Sections */
.welcome-bonus-section,
.no-deposit-bonus-section,
.weekly-cashback-section,
.birthday-special-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 50%, #1a1a1a 100%);
}

.no-deposit-bonus-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 50%, #0f0f0f 100%);
}

.weekly-cashback-section {
    background: linear-gradient(135deg, #1a0f0a 0%, #2c1810 50%, #1a0f0a 100%);
}

.birthday-special-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.welcome-bonus-section::before,
.no-deposit-bonus-section::before,
.weekly-cashback-section::before,
.birthday-special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Promotion Features */
.promotion-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.feature-content {
    flex: 1;
}

.feature-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Promotion CTA */
.promotion-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #ff8555 0%, #ffb13e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
}

.btn i {
    font-size: 1.1rem;
    color: #ffffff;
}

.btn-large i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .welcome-bonus-section,
    .no-deposit-bonus-section,
    .weekly-cashback-section,
    .birthday-special-section {
        padding: 80px 0;
    }
    
    .feature-item {
        padding: 20px;
        gap: 18px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .welcome-bonus-section,
    .no-deposit-bonus-section,
    .weekly-cashback-section,
    .birthday-special-section {
        padding: 60px 0;
    }
    
    .promotion-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 18px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .btn-large i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-bonus-section,
    .no-deposit-bonus-section,
    .weekly-cashback-section,
    .birthday-special-section {
        padding: 50px 0;
    }
    
    .promotion-features {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .btn-large i {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}