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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0f0f0f;
    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;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 1281px) {
    .hero-container {
        padding: 0 40px;
    }
}

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

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

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

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

.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.cta-button i {
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    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(7px, -6px);
    background: #ff6b35;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    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: 300px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    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.2);
}

.mobile-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.mobile-nav {
    padding: 20px 0;
}

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

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

.mobile-nav-item:last-child {
    margin-bottom: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

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

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-cta-item {
    margin-top: 20px;
    padding: 0 20px;
}

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

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-cta-button i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        gap: 24px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-content {
        height: 56px;
    }
}

@media (min-width: 1281px) {
    .header-container {
        padding: 0 40px;
    }
    
    .header-content {
        gap: 60px;
    }
    
    .nav-menu {
        gap: 40px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.about-description {
    color: #cccccc;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 24px;
    font-size: 16px;
}

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

.features-list {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.features-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.features-items {
    list-style: none;
}

.features-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #ffffff;
    padding: 8px 0;
}

.features-items li:last-child {
    margin-bottom: 0;
}

.features-items li i {
    color: #ff6b35;
    width: 20px;
    text-align: center;
}

.about-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.certifications {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cert-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(8px);
}

.cert-item i {
    color: #ff6b35;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.cert-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }
    
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .certifications {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cert-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 16px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .features-list {
        padding: 24px 20px;
        margin-top: 30px;
    }
    
    .features-title {
        font-size: 16px;
    }
    
    .features-items li {
        font-size: 14px;
    }
    
    .certifications {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .cert-item {
        padding: 12px 16px;
    }
    
    .cert-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .features-list {
        padding: 20px 16px;
    }
    
    .features-items li {
        font-size: 13px;
        gap: 10px;
    }
    
    .cert-item {
        padding: 10px 14px;
    }
}

@media (min-width: 1281px) {
    .about-container {
        padding: 0 40px;
    }
}

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

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.platform-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.platform-header .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.platform-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-top: 20px;
}

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

.platform-description {
    color: #cccccc;
    line-height: 1.8;
}

.platform-description p {
    margin-bottom: 24px;
    font-size: 16px;
}

.platform-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.platform-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: fadeInRight 0.8s ease 0.2s both;
}

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

.game-providers {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.providers-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
}

.providers-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.provider-card i {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 16px;
    display: block;
}

.provider-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.provider-card p {
    color: #cccccc;
    font-size: 14px;
}

.game-categories {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.categories-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
}

.categories-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

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

.category-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(8px);
}

.category-item i {
    color: #ff6b35;
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.category-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 80px 0;
    }
    
    .platform-container {
        padding: 0 16px;
    }
    
    .platform-header {
        margin-bottom: 40px;
    }
    
    .platform-header .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .platform-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .platform-grid {
        margin-bottom: 60px;
    }
    
    .game-providers {
        margin-bottom: 50px;
    }
    
    .providers-title,
    .categories-title {
        font-size: 20px;
    }
    
    .provider-card {
        padding: 24px 16px;
    }
    
    .provider-card i {
        font-size: 28px;
    }
    
    .categories-grid {
        gap: 16px;
    }
    
    .category-item {
        padding: 16px;
    }
    
    .category-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 60px 0;
    }
    
    .platform-header .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .platform-description p {
        font-size: 14px;
    }
    
    .providers-title,
    .categories-title {
        font-size: 18px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        padding: 14px;
    }
    
    .category-item span {
        font-size: 12px;
    }
}

@media (min-width: 1281px) {
    .platform-container {
        padding: 0 40px;
    }
}

/* Experience Section */
.experience-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.experience-header .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    position: relative;
}

.experience-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.experience-image {
    position: relative;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.experience-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

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

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

.experience-text {
    animation: fadeInRight 0.8s ease 0.3s both;
}

.experience-description {
    color: #cccccc;
    line-height: 1.8;
}

.experience-description p {
    margin-bottom: 24px;
    font-size: 16px;
}

.experience-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.signup-link {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #f7931e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 80px 0;
    }
    
    .experience-container {
        padding: 0 16px;
    }
    
    .experience-header {
        margin-bottom: 40px;
    }
    
    .experience-header .section-title {
        font-size: 28px;
    }
    
    .experience-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .experience-grid {
        margin-bottom: 60px;
    }
    
    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 60px 0;
    }
    
    .experience-header .section-title {
        font-size: 24px;
    }
    
    .experience-description p {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .experience-badge {
        position: static;
        margin: 0 auto 20px;
        display: inline-flex;
    }
}

@media (min-width: 1281px) {
    .experience-container {
        padding: 0 40px;
    }
}

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

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(247, 147, 30, 0.07) 0%, transparent 50%);
    z-index: 1;
}

.technology-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.technology-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.technology-header .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    position: relative;
}

.technology-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.technology-description {
    color: #cccccc;
    line-height: 1.8;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.technology-description p {
    margin-bottom: 24px;
    font-size: 16px;
}

.technology-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.technology-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.technology-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.tech-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

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

.stat-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-4px);
}

.stat-item i {
    color: #ff6b35;
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
}

.features-showcase {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.showcase-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    transition: left 0.6s ease;
}

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

.feature-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(8px);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-number {
    transform: rotate(360deg);
}

.feature-content {
    flex: 1;
}

.feature-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-text {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.banking-methods {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.banking-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
}

.banking-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

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

.bank-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
}

.bank-item i {
    color: #ff6b35;
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.bank-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .banking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .technology-section {
        padding: 80px 0;
    }
    
    .technology-container {
        padding: 0 16px;
    }
    
    .technology-header {
        margin-bottom: 40px;
    }
    
    .technology-header .section-title {
        font-size: 28px;
    }
    
    .technology-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .technology-grid {
        margin-bottom: 60px;
    }
    
    .features-showcase {
        margin-bottom: 50px;
    }
    
    .showcase-title,
    .banking-title {
        font-size: 20px;
    }
    
    .feature-item {
        gap: 16px;
        padding: 20px;
    }
    
    .feature-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .feature-heading {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .banking-grid {
        gap: 16px;
    }
    
    .bank-item {
        padding: 16px;
    }
    
    .bank-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .technology-section {
        padding: 60px 0;
    }
    
    .technology-header .section-title {
        font-size: 24px;
    }
    
    .technology-description p {
        font-size: 14px;
    }
    
    .showcase-title,
    .banking-title {
        font-size: 18px;
    }
    
    .feature-item {
        gap: 12px;
        padding: 16px;
    }
    
    .feature-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .feature-heading {
        font-size: 15px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .banking-grid {
        grid-template-columns: 1fr;
    }
    
    .bank-item {
        padding: 14px;
    }
}

@media (min-width: 1281px) {
    .technology-container {
        padding: 0 40px;
    }
}

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

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.promotions-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.promotions-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.promotions-header .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    position: relative;
    margin-bottom: 16px;
}

.promotions-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-top: 20px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.promotions-description {
    color: #cccccc;
    line-height: 1.8;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.promotions-description p {
    margin-bottom: 24px;
    font-size: 16px;
}

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

.promo-link {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: #f7931e;
}

.external-link {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #f7931e;
}

.promotions-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.promotions-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: bounce 2s infinite;
}

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

.access-links {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.links-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.access-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.access-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.access-link:hover::before {
    left: 100%;
}

.access-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
}

.primary-link {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.access-link i {
    color: #ff6b35;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.link-url {
    color: #cccccc;
    font-size: 12px;
    font-weight: 500;
}

.monthly-promos {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.promos-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
}

.promos-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: transform 0.6s ease;
    transform: rotate(0deg);
}

.promo-card:hover::before {
    transform: rotate(360deg);
}

.promo-card:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.promo-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

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

.promo-icon i {
    font-size: 24px;
    color: #ffffff;
}

.promo-name {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.promo-detail {
    position: relative;
    z-index: 2;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 80px 0;
    }
    
    .promotions-container {
        padding: 0 16px;
    }
    
    .promotions-header {
        margin-bottom: 40px;
    }
    
    .promotions-header .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .promotions-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .promotions-grid {
        margin-bottom: 60px;
    }
    
    .access-links {
        margin-bottom: 50px;
    }
    
    .links-title,
    .promos-title {
        font-size: 20px;
    }
    
    .access-link {
        gap: 12px;
        padding: 16px 20px;
    }
    
    .link-title {
        font-size: 13px;
    }
    
    .link-url {
        font-size: 11px;
    }
    
    .promo-badge {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .promo-card {
        padding: 24px 20px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .promo-icon i {
        font-size: 20px;
    }
    
    .promo-name {
        font-size: 15px;
    }
    
    .promo-detail {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 60px 0;
    }
    
    .promotions-header .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .promotions-description p {
        font-size: 14px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .links-title,
    .promos-title {
        font-size: 18px;
    }
    
    .access-link {
        padding: 14px 16px;
    }
    
    .promo-card {
        padding: 20px 16px;
    }
    
    .promo-badge {
        position: static;
        margin: 0 auto 20px;
        display: inline-flex;
    }
}

@media (min-width: 1281px) {
    .promotions-container {
        padding: 0 40px;
    }
}

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

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    max-width: 350px;
}

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

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

.footer-link i {
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

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

.social-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

.payment-methods {
    margin-top: 8px;
}

.payment-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 14px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: scale(1.1);
}

.footer-certificates {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 30px;
}

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

.certificate-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.4);
}

.certificate-item i {
    color: #ff6b35;
    font-size: 16px;
    flex-shrink: 0;
}

.certificate-item span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.disclaimer {
    color: #999999;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-certificates {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-certificates {
        flex-wrap: wrap;
        gap: 12px;
        padding: 24px 0;
    }
    
    .certificate-item {
        flex: 1;
        min-width: calc(50% - 6px);
        justify-content: center;
        padding: 10px 12px;
    }
    
    .certificate-item span {
        font-size: 11px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-about {
        text-align: left;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-certificates {
        flex-direction: column;
        gap: 8px;
    }
    
    .certificate-item {
        min-width: auto;
        padding: 8px 12px;
    }
    
    .certificate-item span {
        font-size: 10px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .disclaimer {
        font-size: 11px;
    }
    
    .footer-bottom {
        padding-bottom: 20px;
    }
}

@media (min-width: 1281px) {
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-content {
        gap: 60px;
    }
}

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

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 70px;
    gap: 4px;
}

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

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

.sticky-btn-login {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-right: 1px solid rgba(255, 107, 53, 0.2);
}

.sticky-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b35;
}

.sticky-btn-register {
    background: rgba(255, 107, 53, 0.1);
    color: #ffffff;
    border-right: 1px solid rgba(255, 107, 53, 0.2);
}

.sticky-btn-register:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    position: relative;
}

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

.sticky-btn-bonus::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

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

.btn-text {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 14px 6px;
        min-height: 65px;
    }
    
    .sticky-btn i {
        font-size: 16px;
    }
    
    .btn-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 12px 4px;
        min-height: 60px;
        gap: 2px;
    }
    
    .sticky-btn i {
        font-size: 14px;
    }
    
    .btn-text {
        font-size: 10px;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .btn-text {
        font-size: 9px;
    }
    
    .sticky-btn {
        padding: 10px 2px;
        min-height: 55px;
    }
    
    .sticky-btn i {
        font-size: 13px;
    }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
    padding-bottom: 70px;
}

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

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

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

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.login-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-content {
    width: 100%;
    max-width: 450px;
    animation: fadeInUp 0.8s ease;
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

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

.login-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.error-message {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: shake 0.5s ease-in-out;
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-label i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-input:invalid {
    border-color: rgba(220, 53, 69, 0.5);
}

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

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.input-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: -4px;
    margin-bottom: 4px;
    display: none;
}

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

.login-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

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

.login-button.loading .loading-spinner {
    display: block;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

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

.login-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

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

.login-divider span {
    background: rgba(26, 26, 26, 0.9);
    color: #cccccc;
    padding: 0 16px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

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

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

.footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999999;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.footer-text i {
    color: #ff6b35;
    flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 70px 0 30px;
    }
    
    .login-container {
        padding: 0 16px;
    }
    
    .login-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .login-subtitle {
        font-size: 13px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .login-button,
    .register-button {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 60px 0 20px;
    }
    
    .login-card {
        padding: 24px 20px;
        margin: 0 8px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .login-subtitle {
        font-size: 12px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-logo {
        margin-bottom: 30px;
    }
    
    .login-header {
        margin-bottom: 24px;
    }
    
    .form-input {
        padding: 12px;
    }
    
    .footer-text {
        font-size: 11px;
    }
}

@media (min-width: 1281px) {
    .login-container {
        padding: 0 40px;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.register-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-content {
    width: 100%;
    max-width: 450px;
    animation: fadeInUp 0.8s ease;
}

.register-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

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

.register-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-subtitle {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.error-message {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: shake 0.5s ease-in-out;
}

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

.success-message {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: slideInDown 0.5s ease;
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

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

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-label i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-input:invalid {
    border-color: rgba(220, 53, 69, 0.5);
}

.input-helper {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 12px;
    margin-top: -4px;
}

.input-helper i {
    color: #ff6b35;
    font-size: 10px;
    flex-shrink: 0;
}

.input-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: -4px;
    margin-bottom: 4px;
    display: none;
}

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

.register-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

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

.register-button.loading .loading-spinner {
    display: block;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

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

.register-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

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

.register-divider span {
    background: rgba(26, 26, 26, 0.9);
    color: #cccccc;
    padding: 0 16px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.login-button:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.register-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-text,
.terms-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999999;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.footer-text i,
.terms-text i {
    color: #ff6b35;
    flex-shrink: 0;
    font-size: 11px;
}

.terms-text {
    color: #888888;
    font-size: 11px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 70px 0 30px;
    }
    
    .register-container {
        padding: 0 16px;
    }
    
    .register-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .register-title {
        font-size: 24px;
    }
    
    .register-subtitle {
        font-size: 13px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .register-button,
    .login-button {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 60px 0 20px;
    }
    
    .register-card {
        padding: 24px 20px;
        margin: 0 8px;
    }
    
    .register-title {
        font-size: 22px;
    }
    
    .register-subtitle {
        font-size: 12px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-logo {
        margin-bottom: 30px;
    }
    
    .register-header {
        margin-bottom: 24px;
    }
    
    .form-input {
        padding: 12px;
    }
    
    .footer-text,
    .terms-text {
        font-size: 11px;
    }
    
    .terms-text {
        font-size: 10px;
    }
}

@media (min-width: 1281px) {
    .register-container {
        padding: 0 40px;
    }
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.hero-cta-button i {
    font-size: 20px;
}

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

/* Promo Sections */
.promo-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-section:nth-child(odd) {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.promo-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.promo-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.promo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease;
}

.promo-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    border-radius: 20px;
    color: #ff6b35;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-badge-welcome {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    color: #28a745;
}

.promo-badge-vip {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
    border-color: #8a2be2;
    color: #da70d6;
}

.promo-badge-referral {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    color: #ffc107;
}

.promo-badge i {
    font-size: 14px;
}

.promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
    margin: 0;
    position: relative;
}

.promo-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.promo-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.promo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%;
}

.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    transition: left 0.6s ease;
}

.promo-item:hover::before {
    left: 100%;
}

.promo-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(8px);
}

.promo-item i {
    color: #ff6b35;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.promo-item span {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.promo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.promo-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.promo-cta-button i {
    font-size: 16px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .promo-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-container,
    .promo-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .promo-section {
        padding: 60px 0;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-content {
        gap: 32px;
    }
    
    .promo-details {
        gap: 24px;
    }
    
    .promo-item {
        padding: 16px;
    }
    
    .promo-item span {
        font-size: 15px;
    }
    
    .promo-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .promo-section {
        padding: 50px 0;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .promo-item {
        padding: 14px;
        gap: 12px;
    }
    
    .promo-item span {
        font-size: 14px;
    }
    
    .promo-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (min-width: 1281px) {
    .hero-container,
    .promo-container {
        padding: 0 40px;
    }
}