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

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

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

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

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

.btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #667eea);
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 20px;
    color: #ff6b35;
}

.feature-item span {
    font-weight: 600;
    font-size: 16px;
}

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

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

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-badge i {
    font-size: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 28px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .btn {
        font-size: 14px;
        padding: 14px 24px;
    }
}

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

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.header-logo .logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.header-logo .logo-link:hover .logo-text {
    background: linear-gradient(135deg, #e55a2b, #e0821a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Styles */
.header-nav {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

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

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

.nav-link:hover {
    color: #ff6b35;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    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-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-top: 30px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    padding-left: 10px;
}

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

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

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

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

.mobile-cta-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    .mobile-menu-content {
        padding: 15px;
    }
    
    .mobile-menu-header {
        padding: 15px 0;
        margin-bottom: 30px;
    }
    
    .mobile-logo {
        font-size: 20px;
    }
    
    .mobile-menu-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .mobile-nav-link {
        font-size: 16px;
        padding: 18px 0;
    }
    
    .mobile-nav-link i {
        font-size: 18px;
    }
    
    .mobile-cta-btn {
        padding: 16px 25px;
        font-size: 14px;
    }
    
    .mobile-cta-btn i {
        font-size: 16px;
    }
}

/* Ensure content doesn't get hidden behind fixed header */
body {
    padding-top: 70px;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 70% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 30% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.about-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
}

.about-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 25px;
}

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Prompt', sans-serif;
}

.feature-card p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

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

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.security-badge i {
    font-size: 18px;
}

.technology-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tech-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

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

.tech-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 25px;
}

.tech-description strong {
    color: #667eea;
    font-weight: 700;
}

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

.security-list h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Prompt', sans-serif;
}

.security-items {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.security-items li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #cccccc;
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.security-items li i {
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

.smart-features {
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.smart-features p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.smart-features strong {
    color: #ff6b35;
    font-weight: 700;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technology-info {
        padding: 50px 30px;
    }
    
    .security-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 15px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description p {
        font-size: 16px;
    }
    
    .tech-description p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card i {
        font-size: 35px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .tech-title {
        font-size: 24px;
    }
    
    .technology-info {
        padding: 40px 20px;
    }
    
    .security-list h4 {
        font-size: 20px;
    }
    
    .security-items li {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .smart-features {
        padding: 25px 20px;
    }
    
    .smart-features p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 10px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description p {
        font-size: 15px;
    }
    
    .tech-description p {
        font-size: 15px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-card i {
        font-size: 30px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .tech-title {
        font-size: 22px;
    }
    
    .technology-info {
        padding: 30px 15px;
    }
    
    .security-list h4 {
        font-size: 18px;
    }
    
    .security-items li {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .smart-features {
        padding: 20px 15px;
    }
    
    .smart-features p {
        font-size: 15px;
    }
}

/* Techniques Section Styles */
.techniques-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.techniques-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
                      radial-gradient(circle at 20% 70%, rgba(102, 126, 234, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.techniques-header {
    text-align: center;
    margin-bottom: 80px;
}

.techniques-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.technique-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

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

.analysis-tools {
    margin-top: 50px;
}

.analysis-tools h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Prompt', sans-serif;
}

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

.tool-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.tool-item i {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.tool-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.tool-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

.techniques-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.accuracy-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.accuracy-badge i {
    font-size: 18px;
}

.advanced-features {
    display: grid;
    gap: 50px;
}

.feature-section,
.trend-analysis,
.smart-picker,
.numerology-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-section h3,
.trend-analysis h3,
.smart-picker h3,
.numerology-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Prompt', sans-serif;
}

.feature-section p,
.trend-analysis p,
.smart-picker p,
.numerology-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 25px;
}

.feature-section strong,
.trend-analysis strong,
.smart-picker strong,
.numerology-section strong {
    color: #667eea;
    font-weight: 700;
}

.fibonacci-info {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.fib-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.fib-item i {
    color: #667eea;
    font-size: 18px;
}

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

.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.smart-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.smart-feature:hover {
    background: rgba(255, 107, 53, 0.12);
    transform: translateY(-3px);
}

.smart-feature i {
    font-size: 28px;
    color: #ff6b35;
}

.smart-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

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

.num-tool {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.num-tool:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

.num-tool i {
    font-size: 32px;
    color: #ffd700;
    flex-shrink: 0;
}

.num-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.num-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .techniques-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .techniques-title {
        font-size: 36px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .smart-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fibonacci-info {
        justify-content: center;
    }
    
    .numerology-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .techniques-section {
        padding: 80px 15px;
    }
    
    .techniques-title {
        font-size: 32px;
    }
    
    .technique-description p {
        font-size: 16px;
    }
    
    .analysis-tools h3 {
        font-size: 22px;
    }
    
    .tool-item {
        padding: 20px 15px;
    }
    
    .tool-item i {
        font-size: 28px;
    }
    
    .tool-item h4 {
        font-size: 16px;
    }
    
    .feature-section,
    .trend-analysis,
    .smart-picker,
    .numerology-section {
        padding: 30px 20px;
    }
    
    .feature-section h3,
    .trend-analysis h3,
    .smart-picker h3,
    .numerology-section h3 {
        font-size: 20px;
    }
    
    .feature-section p,
    .trend-analysis p,
    .smart-picker p,
    .numerology-section p {
        font-size: 16px;
    }
    
    .fibonacci-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .fib-item {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .smart-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .smart-feature {
        padding: 20px 15px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .num-tool {
        padding: 20px;
    }
    
    .num-tool i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .techniques-section {
        padding: 60px 10px;
    }
    
    .techniques-title {
        font-size: 28px;
    }
    
    .technique-description p {
        font-size: 15px;
    }
    
    .analysis-tools h3 {
        font-size: 20px;
    }
    
    .tool-item {
        padding: 18px 12px;
    }
    
    .tool-item i {
        font-size: 24px;
    }
    
    .tool-item h4 {
        font-size: 15px;
    }
    
    .tool-item p {
        font-size: 13px;
    }
    
    .feature-section,
    .trend-analysis,
    .smart-picker,
    .numerology-section {
        padding: 25px 15px;
    }
    
    .feature-section h3,
    .trend-analysis h3,
    .smart-picker h3,
    .numerology-section h3 {
        font-size: 18px;
    }
    
    .feature-section p,
    .trend-analysis p,
    .smart-picker p,
    .numerology-section p {
        font-size: 15px;
    }
    
    .fib-item {
        padding: 10px 15px;
    }
    
    .fib-item span {
        font-size: 14px;
    }
    
    .smart-feature {
        padding: 15px 12px;
    }
    
    .smart-feature i {
        font-size: 24px;
    }
    
    .smart-feature span {
        font-size: 13px;
    }
    
    .num-tool {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .num-tool i {
        font-size: 24px;
    }
    
    .num-content h4 {
        font-size: 16px;
    }
    
    .num-content p {
        font-size: 13px;
    }
}

/* Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 50%, #1a1a1a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.service-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.service-description strong {
    color: #667eea;
    font-weight: 700;
}

.contact-channels {
    margin-top: 50px;
}

.contact-channels h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Prompt', sans-serif;
}

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

.channel-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.channel-item i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.channel-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.channel-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

.services-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-badge i {
    font-size: 20px;
}

.lottery-types {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.lottery-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.lottery-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.lottery-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lottery-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.lottery-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.lottery-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Prompt', sans-serif;
}

.lottery-card p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lottery-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lottery-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.lottery-features span i {
    color: #28a745;
    font-size: 16px;
}

.notification-system {
    background: rgba(102, 126, 234, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.notification-system h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.notification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.notification-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.notification-text strong {
    color: #667eea;
    font-weight: 700;
}

.notification-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.feature-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.technology-infrastructure {
    background: rgba(255, 107, 53, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.technology-infrastructure h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.tech-content {
    display: grid;
    gap: 50px;
}

.tech-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 25px;
}

.tech-info strong {
    color: #ff6b35;
    font-weight: 700;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.tech-feature i {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.tech-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.tech-feature p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lottery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .notification-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 15px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .service-description p {
        font-size: 16px;
    }
    
    .contact-channels h3 {
        font-size: 22px;
    }
    
    .channel-item {
        padding: 20px 15px;
    }
    
    .channel-item i {
        font-size: 28px;
    }
    
    .lottery-types,
    .notification-system,
    .technology-infrastructure {
        padding: 50px 30px;
    }
    
    .lottery-title,
    .notification-system h3,
    .technology-infrastructure h3 {
        font-size: 28px;
    }
    
    .lottery-description p,
    .notification-text p,
    .tech-info p {
        font-size: 16px;
    }
    
    .lottery-card {
        padding: 25px 20px;
    }
    
    .lottery-card i {
        font-size: 35px;
    }
    
    .lottery-card h4 {
        font-size: 20px;
    }
    
    .feature-list {
        padding: 15px;
    }
    
    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .tech-feature {
        padding: 25px 15px;
    }
    
    .tech-feature i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 10px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .service-description p {
        font-size: 15px;
    }
    
    .contact-channels h3 {
        font-size: 20px;
    }
    
    .channel-item {
        padding: 18px 12px;
    }
    
    .channel-item i {
        font-size: 24px;
    }
    
    .channel-item h4 {
        font-size: 16px;
    }
    
    .lottery-types,
    .notification-system,
    .technology-infrastructure {
        padding: 40px 20px;
    }
    
    .lottery-title,
    .notification-system h3,
    .technology-infrastructure h3 {
        font-size: 24px;
    }
    
    .lottery-description p,
    .notification-text p,
    .tech-info p {
        font-size: 15px;
    }
    
    .lottery-card {
        padding: 20px 15px;
    }
    
    .lottery-card i {
        font-size: 30px;
    }
    
    .lottery-card h4 {
        font-size: 18px;
    }
    
    .lottery-card p {
        font-size: 14px;
    }
    
    .lottery-features span {
        font-size: 13px;
    }
    
    .feature-list {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .feature-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin: 0 auto;
    }
    
    .feature-content h4 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .tech-feature {
        padding: 20px 12px;
    }
    
    .tech-feature i {
        font-size: 28px;
    }
    
    .tech-feature h4 {
        font-size: 16px;
    }
    
    .tech-feature p {
        font-size: 13px;
    }
}

/* Payments Section Styles */
.payments-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.payments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(40, 167, 69, 0.06) 0%, transparent 60%),
                      radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.payments-header {
    text-align: center;
    margin-bottom: 80px;
}

.payments-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #28a745, #20c997, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.payment-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.payment-description strong {
    color: #28a745;
    font-weight: 700;
}

.security-features {
    margin-top: 50px;
}

.security-features h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Prompt', sans-serif;
}

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

.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(40, 167, 69, 0.3);
}

.security-item i {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.security-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.security-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

.payments-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.payment-badge i {
    font-size: 20px;
}

.automatic-system {
    background: rgba(40, 167, 69, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.automatic-system h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.auto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.auto-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.auto-text strong {
    color: #28a745;
    font-weight: 700;
}

.auto-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.auto-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.step-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.payout-rates {
    background: rgba(255, 193, 7, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.payout-rates h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.rates-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}

.rates-description strong {
    color: #ffc107;
    font-weight: 700;
}

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

.rate-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rate-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
}

.rate-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-icon i {
    font-size: 28px;
    color: #ffffff;
}

.rate-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Prompt', sans-serif;
}

.rate-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.rate-per {
    font-size: 14px;
    color: #cccccc;
    font-weight: 600;
}

.verification-system {
    background: rgba(102, 126, 234, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.verification-system h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.verification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.verification-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.verification-text strong {
    color: #667eea;
    font-weight: 700;
}

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

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

.verify-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.verify-item i {
    font-size: 28px;
    color: #667eea;
    flex-shrink: 0;
}

.verify-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.verify-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.bank-support {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bank-support h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.bank-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}

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

.bank-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.bank-section h4,
.ewallet-section h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.bank-list,
.ewallet-list {
    display: grid;
    gap: 15px;
}

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

.bank-item:hover,
.ewallet-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.bank-item i,
.ewallet-item i {
    color: #ff6b35;
    font-size: 20px;
    flex-shrink: 0;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .payments-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .payments-title {
        font-size: 36px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .auto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verification-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .verification-features {
        grid-template-columns: 1fr;
    }
    
    .bank-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .payments-section {
        padding: 80px 15px;
    }
    
    .payments-title {
        font-size: 32px;
    }
    
    .payment-description p {
        font-size: 16px;
    }
    
    .security-features h3 {
        font-size: 22px;
    }
    
    .security-item {
        padding: 20px 15px;
    }
    
    .security-item i {
        font-size: 28px;
    }
    
    .automatic-system,
    .payout-rates,
    .verification-system,
    .bank-support {
        padding: 50px 30px;
    }
    
    .automatic-system h3,
    .payout-rates h3,
    .verification-system h3,
    .bank-support h3 {
        font-size: 28px;
    }
    
    .auto-text p,
    .rates-description p,
    .verification-text p,
    .bank-description p {
        font-size: 16px;
    }
    
    .auto-step {
        padding: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rate-icon {
        width: 50px;
        height: 50px;
    }
    
    .rate-icon i {
        font-size: 24px;
    }
    
    .rate-amount {
        font-size: 22px;
    }
    
    .verify-item {
        padding: 15px;
    }
    
    .verify-item i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .payments-section {
        padding: 60px 10px;
    }
    
    .payments-title {
        font-size: 28px;
    }
    
    .payment-description p {
        font-size: 15px;
    }
    
    .security-features h3 {
        font-size: 20px;
    }
    
    .security-item {
        padding: 18px 12px;
    }
    
    .security-item i {
        font-size: 24px;
    }
    
    .security-item h4 {
        font-size: 16px;
    }
    
    .security-item p {
        font-size: 13px;
    }
    
    .automatic-system,
    .payout-rates,
    .verification-system,
    .bank-support {
        padding: 40px 20px;
    }
    
    .automatic-system h3,
    .payout-rates h3,
    .verification-system h3,
    .bank-support h3 {
        font-size: 24px;
    }
    
    .auto-text p,
    .rates-description p,
    .verification-text p,
    .bank-description p {
        font-size: 15px;
    }
    
    .auto-step {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .rate-card {
        padding: 25px 15px;
    }
    
    .rate-icon {
        width: 45px;
        height: 45px;
    }
    
    .rate-icon i {
        font-size: 20px;
    }
    
    .rate-card h4 {
        font-size: 16px;
    }
    
    .rate-amount {
        font-size: 20px;
    }
    
    .rate-per {
        font-size: 13px;
    }
    
    .verify-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .verify-item i {
        font-size: 20px;
    }
    
    .verify-content h4 {
        font-size: 15px;
    }
    
    .verify-content p {
        font-size: 13px;
    }
    
    .bank-section h4,
    .ewallet-section h4 {
        font-size: 20px;
    }
    
    .bank-item,
    .ewallet-item {
        padding: 12px 15px;
    }
    
    .bank-item i,
    .ewallet-item i {
        font-size: 18px;
    }
    
    .bank-item span,
    .ewallet-item span {
        font-size: 14px;
    }
}

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

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

.promotions-header {
    text-align: center;
    margin-bottom: 80px;
}

.promotions-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.promotion-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

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

.promotion-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

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

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

.highlight-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.highlight-content .amount {
    font-size: 16px;
    font-weight: 600;
    color: #ffc107;
}

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

.promotions-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.promo-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.promotion-list {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.promotion-list h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

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

.promo-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Prompt', sans-serif;
}

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

.promo-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffc107;
    font-family: 'Prompt', sans-serif;
}

.points-system {
    background: rgba(102, 126, 234, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.points-system h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.points-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.points-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.points-text strong {
    color: #667eea;
    font-weight: 700;
}

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

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

.reward-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.reward-item i {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
}

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

.vip-levels {
    background: rgba(255, 193, 7, 0.05);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.vip-levels h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.vip-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}

.vip-description strong {
    color: #ffc107;
    font-weight: 700;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.vip-tier {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.vip-tier:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.vip-tier.bronze { border-color: rgba(205, 127, 50, 0.3); }
.vip-tier.silver { border-color: rgba(192, 192, 192, 0.3); }
.vip-tier.gold { border-color: rgba(255, 215, 0, 0.3); }
.vip-tier.platinum { border-color: rgba(229, 228, 226, 0.3); }
.vip-tier.diamond { border-color: rgba(185, 242, 255, 0.3); }

.tier-header {
    margin-bottom: 20px;
}

.tier-header i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.bronze .tier-header i { color: #cd7f32; }
.silver .tier-header i { color: #c0c0c0; }
.gold .tier-header i { color: #ffd700; }
.platinum .tier-header i { color: #e5e4e2; }
.diamond .tier-header i { color: #b9f2ff; }

.tier-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cccccc;
    text-align: left;
}

.benefit i {
    color: #28a745;
    font-size: 12px;
    flex-shrink: 0;
}

.money-management {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.money-management h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.management-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.management-text strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.management-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.management-item i {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.management-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.management-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .promotions-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .promotions-title {
        font-size: 36px;
    }
    
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .points-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-tiers {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .management-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .management-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 80px 15px;
    }
    
    .promotions-title {
        font-size: 32px;
    }
    
    .promotion-description p {
        font-size: 16px;
    }
    
    .highlight-item {
        padding: 18px 20px;
    }
    
    .highlight-item i {
        font-size: 24px;
    }
    
    .highlight-content h4 {
        font-size: 16px;
    }
    
    .promotion-list,
    .points-system,
    .vip-levels,
    .money-management {
        padding: 50px 30px;
    }
    
    .promotion-list h3,
    .points-system h3,
    .vip-levels h3,
    .money-management h3 {
        font-size: 28px;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promo-card {
        padding: 25px 20px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 24px;
    }
    
    .promo-card h4 {
        font-size: 16px;
    }
    
    .promo-value {
        font-size: 20px;
    }
    
    .points-text p,
    .vip-description p,
    .management-text p {
        font-size: 16px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reward-item {
        padding: 15px;
    }
    
    .reward-item i {
        font-size: 20px;
    }
    
    .reward-item span {
        font-size: 14px;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vip-tier {
        padding: 20px 15px;
    }
    
    .tier-header i {
        font-size: 28px;
    }
    
    .tier-header h4 {
        font-size: 16px;
    }
    
    .benefit {
        font-size: 12px;
    }
    
    .management-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .management-item {
        padding: 20px 15px;
    }
    
    .management-item i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 60px 10px;
    }
    
    .promotions-title {
        font-size: 28px;
    }
    
    .promotion-description p {
        font-size: 15px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .highlight-item i {
        font-size: 20px;
    }
    
    .highlight-content h4 {
        font-size: 15px;
    }
    
    .highlight-content .amount {
        font-size: 14px;
    }
    
    .promotion-list,
    .points-system,
    .vip-levels,
    .money-management {
        padding: 40px 20px;
    }
    
    .promotion-list h3,
    .points-system h3,
    .vip-levels h3,
    .money-management h3 {
        font-size: 24px;
    }
    
    .promo-card {
        padding: 20px 15px;
    }
    
    .promo-icon {
        width: 45px;
        height: 45px;
    }
    
    .promo-icon i {
        font-size: 20px;
    }
    
    .promo-card h4 {
        font-size: 15px;
    }
    
    .promo-detail {
        font-size: 13px;
    }
    
    .promo-value {
        font-size: 18px;
    }
    
    .points-text p,
    .vip-description p,
    .management-text p {
        font-size: 15px;
    }
    
    .reward-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .reward-item i {
        font-size: 18px;
    }
    
    .reward-item span {
        font-size: 13px;
    }
    
    .vip-tier {
        padding: 18px 12px;
    }
    
    .tier-header i {
        font-size: 24px;
    }
    
    .tier-header h4 {
        font-size: 15px;
    }
    
    .benefit {
        font-size: 11px;
    }
    
    .management-item {
        padding: 18px 12px;
    }
    
    .management-item i {
        font-size: 24px;
    }
    
    .management-item h4 {
        font-size: 15px;
    }
    
    .management-item p {
        font-size: 13px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 70%),
                      radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

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

/* Footer Brand Section */
.footer-brand {
    max-width: 100%;
}

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

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

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

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

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

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

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

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

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

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

.footer-links li a i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

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

.social-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Footer Security */
.footer-security {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
}

.security-badge i {
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b35;
}

.footer-copyright {
    color: #999999;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

.footer-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    text-align: center;
}

.disclaimer-text {
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.5;
}

.disclaimer-text i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .footer-container {
        padding: 60px 20px 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-container {
        padding: 50px 15px 0;
    }
    
    .footer-logo-text {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 15px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .legal-links {
        gap: 20px;
    }
    
    .legal-links a {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .disclaimer-text {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        padding: 40px 10px 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 14px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 15px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-links li a {
        justify-content: center;
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-links li a:hover {
        padding-left: 0;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        justify-content: center;
        padding: 10px;
        font-size: 12px;
    }
    
    .footer-security {
        align-items: center;
    }
    
    .security-badge {
        justify-content: center;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .footer-bottom {
        padding: 30px 0;
        gap: 20px;
    }
    
    .legal-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .legal-links a {
        font-size: 12px;
    }
    
    .footer-copyright {
        text-align: center;
        font-size: 12px;
    }
    
    .footer-disclaimer {
        padding: 15px;
        margin: 0 -5px;
    }
    
    .disclaimer-text {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 0;
    margin: 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    min-height: 70px;
    gap: 8px;
}

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

.sticky-btn span {
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #218838, #1ba085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

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

/* Credit Button */
.sticky-btn-credit {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    position: relative;
    overflow: hidden;
}

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

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

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

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

/* Pulse animation for credit button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.sticky-btn-credit {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 12px 8px;
        min-height: 65px;
        font-size: 11px;
        gap: 6px;
    }
    
    .sticky-btn i {
        font-size: 18px;
    }
    
    .sticky-btn span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        min-height: 60px;
        font-size: 10px;
        gap: 5px;
    }
    
    .sticky-btn i {
        font-size: 16px;
    }
    
    .sticky-btn span {
        font-size: 9px;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 55px;
        gap: 4px;
    }
    
    .sticky-btn i {
        font-size: 14px;
    }
    
    .sticky-btn span {
        font-size: 8px;
        line-height: 1;
    }
}

/* 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;
    }
}

/* Hover effects for touch devices */
@media (hover: none) {
    .sticky-btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .sticky-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .sticky-buttons {
        border-top: 2px solid #ffffff;
    }
    
    .sticky-btn {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .sticky-btn:last-child {
        border-right: none;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .sticky-btn {
        transition: none;
    }
    
    .sticky-btn-credit {
        animation: none;
    }
    
    .sticky-btn-credit::before {
        transition: none;
    }
}

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.login-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

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

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Form Container */
.login-form-container {
    text-align: center;
}

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

.login-subtitle {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Error Message */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    font-size: 16px;
    flex-shrink: 0;
}

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

/* Form Styles */
.login-form {
    text-align: left;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-label i {
    color: #ff6b35;
    font-size: 16px;
    width: 18px;
    text-align: center;
}

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

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

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

.form-input:valid {
    border-color: #28a745;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

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

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

.password-toggle:focus {
    outline: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 4px;
}

/* Input Error */
.input-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

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

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

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

.login-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-btn i {
    font-size: 18px;
}

/* Form Divider */
.form-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

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

.form-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Register Button */
.register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.register-btn i {
    font-size: 16px;
}

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

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.security-note i {
    color: #28a745;
    font-size: 14px;
    flex-shrink: 0;
}

/* Loading State */
.login-btn.loading {
    position: relative;
    color: transparent;
}

.login-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    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;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 20px 15px;
    }
    
    .login-form-wrapper {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .login-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .form-input {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .login-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 15px 10px;
    }
    
    .login-form-wrapper {
        padding: 30px 20px;
        margin: 0 5px;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .login-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 14px;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .security-note {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .login-form-wrapper {
        padding: 25px 15px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .login-subtitle {
        font-size: 13px;
    }
    
    .form-input {
        padding: 10px 14px;
    }
    
    .login-btn {
        padding: 12px;
    }
    
    .register-btn {
        padding: 10px;
    }
}

/* Focus management for accessibility */
.form-input:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.login-btn:focus-visible,
.register-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .login-form-wrapper {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }
    
    .form-input {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .form-input:focus {
        border: 2px solid #ff6b35;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 75%, rgba(40, 167, 69, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.register-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.register-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

/* Form Container */
.register-form-container {
    text-align: center;
}

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

.register-subtitle {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Message Styles */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease-in-out;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.5s ease-in-out;
}

.error-message i,
.success-message i {
    font-size: 16px;
    flex-shrink: 0;
}

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

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

/* Form Styles */
.register-form {
    text-align: left;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-label i {
    color: #28a745;
    font-size: 16px;
    width: 18px;
    text-align: center;
}

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

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

.form-input:focus {
    border-color: #28a745;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.form-input:valid {
    border-color: #28a745;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Input Help */
.input-help {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 8px;
    line-height: 1.4;
}

.input-help i {
    color: #17a2b8;
    font-size: 12px;
    flex-shrink: 0;
}

/* Input Error */
.input-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #218838, #1ba085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

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

.register-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.register-btn i {
    font-size: 18px;
}

/* Form Divider */
.form-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

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

.form-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Login Button (Outline Style) */
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    color: #667eea;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.login-btn i {
    font-size: 16px;
}

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

.terms-note,
.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 15px 0;
    line-height: 1.4;
}

.terms-note i {
    color: #ffc107;
    font-size: 14px;
    flex-shrink: 0;
}

.security-note i {
    color: #28a745;
    font-size: 14px;
    flex-shrink: 0;
}

/* Loading State */
.register-btn.loading {
    position: relative;
    color: transparent;
}

.register-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    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;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 20px 15px;
    }
    
    .register-form-wrapper {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .register-title {
        font-size: 24px;
    }
    
    .register-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .form-input {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .register-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 15px 10px;
    }
    
    .register-form-wrapper {
        padding: 30px 20px;
        margin: 0 5px;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 22px;
    }
    
    .register-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .input-help {
        font-size: 11px;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 14px;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .terms-note,
    .security-note {
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 360px) {
    .register-form-wrapper {
        padding: 25px 15px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 20px;
    }
    
    .register-subtitle {
        font-size: 13px;
    }
    
    .form-input {
        padding: 12px 14px;
    }
    
    .register-btn {
        padding: 12px;
    }
    
    .login-btn {
        padding: 10px;
    }
}

/* Focus management for accessibility */
.form-input:focus-visible {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

.register-btn:focus-visible,
.login-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .register-form-wrapper {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }
    
    .form-input {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .form-input:focus {
        border: 2px solid #28a745;
    }
    
    .login-btn {
        border: 2px solid #667eea;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-content {
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Prompt', sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 20px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #ff6b35;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

/* Promotion Sections */
.promotion-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

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

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.promotion-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.promotion-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

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

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

.promo-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Prompt', sans-serif;
    line-height: 1.3;
}

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

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-features li:last-child {
    border-bottom: none;
}

.promo-features li i {
    color: #28a745;
    font-size: 16px;
    flex-shrink: 0;
}

.promo-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    min-width: 200px;
}

.highlight-amount {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.highlight-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.promo-cta-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #e0821a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promo-cta-btn i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-highlights {
        gap: 25px;
    }
    
    .promotion-card {
        padding: 40px;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .promo-highlight {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 15px 80px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .highlight-item {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .hero-cta-btn {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .promotion-section {
        padding: 60px 15px;
    }
    
    .promotion-card {
        padding: 30px 25px;
    }
    
    .promo-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
    }
    
    .promo-icon i {
        font-size: 28px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-features li {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .highlight-amount {
        font-size: 30px;
    }
    
    .promo-cta-btn {
        padding: 18px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 10px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .highlight-item {
        font-size: 13px;
        padding: 10px 18px;
        width: 100%;
        justify-content: center;
    }
    
    .highlight-item i {
        font-size: 16px;
    }
    
    .hero-cta-btn {
        padding: 16px 25px;
        font-size: 15px;
        width: 100%;
    }
    
    .promotion-section {
        padding: 50px 10px;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 24px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-features li {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .promo-highlight {
        padding: 25px 20px;
        min-width: 180px;
    }
    
    .highlight-amount {
        font-size: 26px;
    }
    
    .highlight-label {
        font-size: 13px;
    }
    
    .promo-cta-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .promo-cta-btn i {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .highlight-item {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .hero-cta-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .promotion-card {
        padding: 20px 15px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .promo-features li {
        font-size: 13px;
    }
    
    .highlight-amount {
        font-size: 22px;
    }
    
    .promo-cta-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Animation for promotion cards */
.promotion-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Accessibility improvements */
.promo-cta-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

.hero-cta-btn:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.7);
    outline-offset: 3px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .promotion-card {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }
    
    .promo-features li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .promotion-card {
        animation: none;
    }
    
    .hero-cta-btn:hover,
    .promo-cta-btn:hover,
    .promotion-card:hover {
        transform: none;
    }
}