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

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

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

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

a:hover {
    color: #ff8c5a;
}

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

/* Container System */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
}

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

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

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

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

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

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

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

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

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

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

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

.feature-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #cccccc;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

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

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

@media (max-width: 480px) {
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
}

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

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

.header.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.99) 0%, rgba(26, 26, 26, 0.98) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.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 {
    flex-shrink: 0;
}

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

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

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

.logo-domain {
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 8px;
    opacity: 0.8;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

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

.nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.nav-link i {
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

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

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ffa940 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.btn-cta i,
.btn-cta span {
    position: relative;
    z-index: 2;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-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 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

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

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

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav-item {
    width: 100%;
}

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

.mobile-nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

.mobile-nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

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

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

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Body padding to accommodate fixed header */
body {
    padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-domain {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .mobile-menu-header {
        padding: 16px;
    }
    
    .mobile-logo {
        font-size: 20px;
    }
    
    .mobile-nav {
        padding: 16px;
    }
    
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-domain {
        font-size: 10px;
    }
    
    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .mobile-cta-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (min-width: 1281px) {
    .header-container {
        padding: 0 40px;
    }
    
    .logo-text {
        font-size: 32px;
    }
    
    .logo-domain {
        font-size: 16px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 14px 18px;
    }
    
    .btn-cta {
        font-size: 15px;
        padding: 14px 24px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 53, 0.03) 2px,
        rgba(255, 107, 53, 0.03) 4px
    );
    pointer-events: none;
}

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

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

.about-image {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.about-text {
    animation: fadeInRight 0.8s ease-out;
}

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

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

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

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    text-align: justify;
}

.about-description p:last-child {
    margin-bottom: 0;
}

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

.about-features {
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

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

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

.feature-item i {
    color: #ff6b35;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.feature-item span {
    color: #e6e6e6;
    font-size: 14px;
    line-height: 1.6;
}

.about-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    font-style: italic;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

.about-conclusion strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 16px;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .about-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .about-conclusion {
        padding: 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }
    
    .about-description p {
        font-size: 14px;
        text-align: left;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .feature-item:hover {
        transform: none;
    }
    
    .about-conclusion {
        text-align: left;
        font-size: 14px;
    }
}

@media (min-width: 1281px) {
    .about-container {
        padding: 0 40px;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .about-description p {
        font-size: 17px;
    }
}

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

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

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

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

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

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

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

.banking-description {
    margin-bottom: 0;
}

.banking-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    text-align: justify;
}

.banking-description p:last-child {
    margin-bottom: 0;
}

.banking-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.banking-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.banking-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.banking-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.banking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    animation: fadeInUp 1s ease-out;
}

.banking-methods,
.banking-benefits {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.banking-methods:hover,
.banking-benefits:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

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

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

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

.method-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.method-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

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

.method-card h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.method-card p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.4;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

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

.benefit-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

.benefit-item i {
    color: #ff6b35;
    font-size: 24px;
    margin-top: 4px;
    min-width: 24px;
}

.benefit-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .banking-section {
        padding: 80px 0;
    }
    
    .banking-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
        margin-bottom: 60px;
    }
    
    .banking-title {
        font-size: 32px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .banking-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .banking-image {
        order: -1;
    }
    
    .banking-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .banking-section {
        padding: 60px 0;
    }
    
    .banking-container {
        padding: 0 16px;
    }
    
    .banking-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .banking-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .banking-methods,
    .banking-benefits {
        padding: 30px 20px;
    }
    
    .methods-title,
    .benefits-title {
        font-size: 22px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .method-card {
        padding: 20px 16px;
    }
    
    .method-card i {
        font-size: 28px;
    }
    
    .benefit-item {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .banking-title {
        font-size: 24px;
    }
    
    .banking-description p {
        font-size: 14px;
        text-align: left;
    }
    
    .banking-methods,
    .banking-benefits {
        padding: 24px 16px;
    }
    
    .methods-title,
    .benefits-title {
        font-size: 20px;
    }
    
    .method-card i {
        font-size: 24px;
    }
    
    .method-card h4 {
        font-size: 15px;
    }
    
    .method-card p {
        font-size: 12px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .benefit-item:hover {
        transform: none;
    }
    
    .benefit-item i {
        font-size: 20px;
    }
    
    .benefit-content h4 {
        font-size: 15px;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
}

@media (min-width: 1281px) {
    .banking-container {
        padding: 0 40px;
    }
    
    .banking-title {
        font-size: 40px;
    }
    
    .banking-description p {
        font-size: 17px;
    }
}

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

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 180deg at 50% 50%, rgba(255, 107, 53, 0.05) 0deg, transparent 60deg, rgba(247, 147, 30, 0.03) 120deg, transparent 180deg, rgba(255, 107, 53, 0.05) 240deg, transparent 300deg, rgba(247, 147, 30, 0.03) 360deg);
    pointer-events: none;
}

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

.games-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

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

.games-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.games-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    text-align: justify;
}

.games-description p:last-child {
    margin-bottom: 32px;
}

.games-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.games-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.games-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.games-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.lottery-types {
    margin-bottom: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(31, 31, 31, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

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

.types-list {
    display: grid;
    gap: 16px;
}

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

.type-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

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

.type-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

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

.games-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    font-style: italic;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

.games-conclusion strong {
    color: #ff6b35;
    font-weight: 600;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    animation: fadeInUp 1s ease-out;
}

.category-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.category-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.category-card h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-card > p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.category-features span {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .games-section {
        padding: 80px 0;
    }
    
    .games-header {
        margin-bottom: 60px;
    }
    
    .games-title {
        font-size: 32px;
    }
    
    .games-subtitle {
        font-size: 16px;
    }
    
    .games-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .games-image {
        order: -1;
    }
    
    .games-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 60px 0;
    }
    
    .games-container {
        padding: 0 16px;
    }
    
    .games-title {
        font-size: 28px;
    }
    
    .games-subtitle {
        font-size: 15px;
    }
    
    .games-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .lottery-types {
        padding: 24px 20px;
    }
    
    .types-title {
        font-size: 22px;
    }
    
    .type-item {
        padding: 16px;
    }
    
    .type-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        min-width: 36px;
    }
    
    .type-content h4 {
        font-size: 15px;
    }
    
    .type-content p {
        font-size: 13px;
    }
    
    .games-conclusion {
        padding: 20px;
        font-size: 15px;
    }
    
    .category-card {
        padding: 28px 20px;
    }
    
    .category-card i {
        font-size: 32px;
    }
    
    .category-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .games-title {
        font-size: 24px;
    }
    
    .games-description p {
        font-size: 14px;
        text-align: left;
    }
    
    .lottery-types {
        padding: 20px 16px;
    }
    
    .types-title {
        font-size: 20px;
    }
    
    .type-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .type-item:hover {
        transform: none;
    }
    
    .games-conclusion {
        text-align: left;
        font-size: 14px;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 24px 16px;
    }
    
    .category-card i {
        font-size: 28px;
    }
    
    .category-card h4 {
        font-size: 16px;
    }
    
    .category-features span {
        font-size: 11px;
        padding: 4px 10px;
    }
}

@media (min-width: 1281px) {
    .games-container {
        padding: 0 40px;
    }
    
    .games-title {
        font-size: 40px;
    }
    
    .games-subtitle {
        font-size: 20px;
    }
    
    .games-description p {
        font-size: 17px;
    }
}

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

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 107, 53, 0.02) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(247, 147, 30, 0.02) 50%, transparent 51%);
    background-size: 20px 20px;
    pointer-events: none;
}

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

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

.platform-image {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.platform-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.platform-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.platform-text {
    animation: fadeInRight 0.8s ease-out;
}

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

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

.platform-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    text-align: justify;
}

.platform-description p:last-child {
    margin-bottom: 0;
}

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

.platform-description a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.platform-description a:hover {
    color: #ff8c5a;
}

.platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    animation: fadeInUp 1s ease-out;
}

.device-compatibility,
.technology-features {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.device-compatibility:hover,
.technology-features:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

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

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

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

.device-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.device-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.device-card i {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 16px;
}

.device-card h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.device-card p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.4;
}

.tech-list {
    display: grid;
    gap: 16px;
}

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

.tech-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

.tech-item i {
    color: #ff6b35;
    font-size: 20px;
    margin-top: 2px;
    min-width: 20px;
}

.tech-content h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tech-content p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .platform-section {
        padding: 80px 0;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
        margin-bottom: 60px;
    }
    
    .platform-title {
        font-size: 32px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .platform-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .platform-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 60px 0;
    }
    
    .platform-container {
        padding: 0 16px;
    }
    
    .platform-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .platform-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .device-compatibility,
    .technology-features {
        padding: 30px 20px;
    }
    
    .compatibility-title,
    .tech-title {
        font-size: 22px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .device-card {
        padding: 20px 16px;
    }
    
    .device-card i {
        font-size: 32px;
    }
    
    .tech-item {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .platform-title {
        font-size: 24px;
    }
    
    .platform-description p {
        font-size: 14px;
        text-align: left;
    }
    
    .device-compatibility,
    .technology-features {
        padding: 24px 16px;
    }
    
    .compatibility-title,
    .tech-title {
        font-size: 20px;
    }
    
    .device-card i {
        font-size: 28px;
    }
    
    .device-card h4 {
        font-size: 15px;
    }
    
    .device-card p {
        font-size: 12px;
    }
    
    .tech-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .tech-item:hover {
        transform: none;
    }
    
    .tech-item i {
        font-size: 18px;
    }
    
    .tech-content h4 {
        font-size: 14px;
    }
    
    .tech-content p {
        font-size: 12px;
    }
}

@media (min-width: 1281px) {
    .platform-container {
        padding: 0 40px;
    }
    
    .platform-title {
        font-size: 40px;
    }
    
    .platform-description p {
        font-size: 17px;
    }
}

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

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(247, 147, 30, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 40%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.security-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

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

.security-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.security-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    text-align: justify;
}

.security-description p:last-child {
    margin-bottom: 0;
}

.security-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.security-description a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.security-description a:hover {
    color: #ff8c5a;
}

.security-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.security-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.security-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.security-systems,
.realtime-features {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.security-systems:hover,
.realtime-features:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

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

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

.systems-list {
    display: grid;
    gap: 20px;
}

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

.system-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

.system-item i {
    color: #ff6b35;
    font-size: 24px;
    margin-top: 4px;
    min-width: 24px;
}

.system-content h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.system-content p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

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

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

.realtime-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.realtime-card i {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 12px;
}

.realtime-card h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.realtime-card p {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.4;
}

.security-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.security-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.cta-text {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .security-section {
        padding: 80px 0;
    }
    
    .security-header {
        margin-bottom: 60px;
    }
    
    .security-title {
        font-size: 32px;
    }
    
    .security-subtitle {
        font-size: 16px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .security-image {
        order: -1;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .realtime-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }
    
    .security-container {
        padding: 0 16px;
    }
    
    .security-title {
        font-size: 28px;
    }
    
    .security-subtitle {
        font-size: 15px;
    }
    
    .security-description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .security-systems,
    .realtime-features {
        padding: 30px 20px;
    }
    
    .systems-title,
    .realtime-title {
        font-size: 22px;
    }
    
    .system-item {
        padding: 16px;
    }
    
    .realtime-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-cta {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-title {
        font-size: 24px;
    }
    
    .security-description p {
        font-size: 14px;
        text-align: left;
    }
    
    .security-systems,
    .realtime-features {
        padding: 24px 16px;
    }
    
    .systems-title,
    .realtime-title {
        font-size: 20px;
    }
    
    .system-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .system-item:hover {
        transform: none;
    }
    
    .system-content h4 {
        font-size: 14px;
    }
    
    .realtime-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .realtime-card {
        padding: 16px 12px;
    }
    
    .realtime-card i {
        font-size: 24px;
    }
    
    .security-cta {
        padding: 32px 16px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (min-width: 1281px) {
    .security-container {
        padding: 0 40px;
    }
    
    .security-title {
        font-size: 40px;
    }
    
    .security-subtitle {
        font-size: 20px;
    }
    
    .security-description p {
        font-size: 17px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 20px;
    }
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.footer-logo-domain {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
}

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

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

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

.contact-item i {
    color: #ff6b35;
    font-size: 16px;
    min-width: 16px;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

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

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

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

/* Footer Features */
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.feature-badge i {
    color: #ff6b35;
    font-size: 14px;
    min-width: 14px;
}

.feature-badge span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

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

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
}

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

.security-badge:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.security-badge i {
    color: #ff6b35;
    font-size: 12px;
}

.security-badge span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 16px 0;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-logo-text {
        font-size: 28px;
    }
    
    .footer-logo-domain {
        font-size: 14px;
    }
    
    .footer-description {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-badge {
        padding: 10px 12px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-logo-domain {
        font-size: 12px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-badge {
        padding: 8px 12px;
        justify-content: center;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .disclaimer-text {
        font-size: 11px;
    }
}

@media (min-width: 1281px) {
    .footer-container {
        padding: 80px 40px 0;
    }
    
    .footer-content {
        gap: 80px;
    }
    
    .footer-logo-text {
        font-size: 36px;
    }
    
    .footer-logo-domain {
        font-size: 18px;
    }
    
    .footer-description {
        font-size: 17px;
    }
    
    .footer-links {
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    padding: 8px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 4px;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.sticky-login {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.sticky-login::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(29, 78, 216, 0.2) 100%);
}

.sticky-login:hover {
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.sticky-login:hover::before {
    opacity: 1;
}

.sticky-register {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.sticky-register::before {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(21, 128, 61, 0.2) 100%);
}

.sticky-register:hover {
    color: #ffffff;
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.sticky-register:hover::before {
    opacity: 1;
}

.sticky-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    position: relative;
    animation: bonusPulse 2s infinite;
}

.sticky-bonus::before {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%);
}

.sticky-bonus:hover {
    color: #ffffff;
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: none;
}

.sticky-bonus:hover::before {
    opacity: 1;
}

.sticky-bonus::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35, #f7931e);
    background-size: 200% 200%;
    border-radius: 10px;
    z-index: -1;
    animation: bonusGradient 3s ease infinite;
    opacity: 0.3;
}

.sticky-btn i {
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.sticky-btn span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

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

/* Animations */
@keyframes bonusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 6px;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        margin: 0 2px;
        gap: 3px;
    }
    
    .sticky-btn i {
        font-size: 16px;
    }
    
    .sticky-btn span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 4px;
    }
    
    .sticky-btn {
        padding: 8px 4px;
        margin: 0 1px;
        gap: 2px;
    }
    
    .sticky-btn i {
        font-size: 15px;
    }
    
    .sticky-btn span {
        font-size: 9px;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn span {
        font-size: 8px;
    }
}

@media (min-width: 1281px) {
    .sticky-buttons {
        padding: 12px;
    }
    
    .sticky-btn {
        padding: 16px 12px;
        margin: 0 6px;
        gap: 6px;
    }
    
    .sticky-btn i {
        font-size: 20px;
    }
    
    .sticky-btn span {
        font-size: 12px;
    }
}

/* Ensure buttons are above other fixed elements but below modals */
body {
    padding-bottom: 80px;
}

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

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

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.login-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

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

.login-subtitle {
    color: #cccccc;
    font-size: 16px;
    margin: 0;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    color: #ef4444;
    font-size: 16px;
}

.error-text {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-label i {
    color: #ff6b35;
    font-size: 14px;
}

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

.form-input {
    width: 100%;
    padding: 16px 50px 16px 16px;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: #ff6b35;
    background: rgba(42, 42, 42, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.input-icon {
    position: absolute;
    right: 16px;
    color: #ff6b35;
    font-size: 16px;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

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

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

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

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

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

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

.checkbox-input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
}

.checkbox-label {
    color: #cccccc;
    font-size: 14px;
    user-select: none;
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ffa940 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-btn:hover::before {
    opacity: 1;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.login-btn i,
.login-btn span {
    position: relative;
    z-index: 2;
}

.btn-loader {
    position: relative;
    z-index: 2;
}

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

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

.divider span {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    padding: 0 16px;
    color: #cccccc;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.register-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.register-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Login Footer */
.login-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.security-notice i {
    color: #ff6b35;
    font-size: 14px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 16px;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .login-subtitle {
        font-size: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 45px 14px 14px;
        font-size: 15px;
    }
    
    .login-btn,
    .register-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 28px 20px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .security-notice {
        font-size: 11px;
    }
}

@media (min-width: 1281px) {
    .login-container {
        max-width: 480px;
    }
    
    .login-card {
        padding: 48px;
    }
    
    .login-title {
        font-size: 32px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.register-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.register-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

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

.register-subtitle {
    color: #cccccc;
    font-size: 16px;
    margin: 0;
}

/* Error and Success Messages */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    color: #ef4444;
    font-size: 16px;
}

.error-text {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInScale 0.5s ease-out;
}

.success-message i {
    color: #22c55e;
    font-size: 16px;
}

.success-text {
    color: #22c55e;
    font-size: 14px;
    font-weight: 500;
}

/* Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-label i {
    color: #ff6b35;
    font-size: 14px;
}

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

.form-input {
    width: 100%;
    padding: 16px 50px 16px 16px;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: #ff6b35;
    background: rgba(42, 42, 42, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.input-icon {
    position: absolute;
    right: 16px;
    color: #ff6b35;
    font-size: 16px;
    pointer-events: none;
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

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

.field-help {
    color: #999999;
    font-size: 12px;
    margin-top: 4px;
}

/* Form Terms */
.form-terms {
    margin: 8px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

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

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

.checkbox-input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
}

.checkbox-label {
    color: #cccccc;
    font-size: 14px;
    user-select: none;
    line-height: 1.4;
}

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

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

/* Buttons */
.register-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ffa940 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.register-btn:hover::before {
    opacity: 1;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.register-btn i,
.register-btn span {
    position: relative;
    z-index: 2;
}

.btn-loader {
    position: relative;
    z-index: 2;
}

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

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

.divider span {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    padding: 0 16px;
    color: #cccccc;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Register Footer */
.register-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-notice,
.age-restriction {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999999;
    font-size: 12px;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.security-notice i,
.age-restriction i {
    color: #ff6b35;
    font-size: 14px;
}

.age-restriction {
    color: #fbbf24;
}

.age-restriction i {
    color: #fbbf24;
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 16px;
    }
    
    .register-card {
        padding: 32px 24px;
    }
    
    .register-title {
        font-size: 24px;
    }
    
    .register-subtitle {
        font-size: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 45px 14px 14px;
        font-size: 15px;
    }
    
    .register-btn,
    .login-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .register-card {
        padding: 28px 20px;
    }
    
    .register-title {
        font-size: 22px;
    }
    
    .register-subtitle {
        font-size: 14px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .security-notice,
    .age-restriction {
        font-size: 11px;
    }
}

@media (min-width: 1281px) {
    .register-container {
        max-width: 480px;
    }
    
    .register-card {
        padding: 48px;
    }
    
    .register-title {
        font-size: 32px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

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

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ffa940 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.hero-btn i,
.hero-btn span {
    position: relative;
    z-index: 2;
}

/* Promo Sections */
.promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
}

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

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.promo-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.1);
}

/* Promo Header */
.promo-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

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

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

.promo-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Promo Content */
.promo-content {
    margin-bottom: 32px;
}

.promo-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

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

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

.feature-item i {
    color: #ff6b35;
    font-size: 14px;
    min-width: 14px;
}

.feature-item span {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/* Promo CTA */
.promo-cta {
    display: flex;
    justify-content: center;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ffa940 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.promo-btn i,
.promo-btn span {
    position: relative;
    z-index: 2;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6), 0 0 0 8px rgba(255, 107, 53, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .promo-section {
        padding: 50px 0;
    }
    
    .promo-card {
        padding: 32px 24px;
    }
    
    .promo-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-container,
    .promo-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .promo-section {
        padding: 40px 0;
    }
    
    .promo-card {
        padding: 28px 20px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 20px;
    }
    
    .promo-title {
        font-size: 22px;
    }
    
    .promo-description {
        font-size: 15px;
    }
    
    .feature-item span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
        gap: 8px;
    }
    
    .promo-card {
        padding: 24px 16px;
    }
    
    .promo-icon {
        width: 45px;
        height: 45px;
    }
    
    .promo-icon i {
        font-size: 18px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-description {
        font-size: 14px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .promo-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (min-width: 1281px) {
    .hero-container,
    .promo-container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    .hero-btn {
        padding: 24px 48px;
        font-size: 20px;
    }
    
    .promo-card {
        padding: 48px;
    }
    
    .promo-title {
        font-size: 32px;
    }
    
    .promo-description {
        font-size: 20px;
    }
    
    .feature-item span {
        font-size: 18px;
    }
}