/* Base 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 {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffed4e;
}

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

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

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

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

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0;
}

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

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 160px;
    justify-content: center;
}

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

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

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

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

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

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

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 12px 16px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-badge {
        position: static;
        margin: 20px auto 0;
        align-self: center;
    }
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

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

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    padding: 25px 0;
}

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

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

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

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

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

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

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .desktop-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-menu-content {
        width: 90%;
    }
    
    .mobile-nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .mobile-cta {
        padding: 0 20px;
    }
    
    .mobile-cta-btn {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

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

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

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

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

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

.about-description p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

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

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 450px;
}

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

.feature-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.feature-card i {
    color: #ffd700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-info h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.feature-info p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .about-container {
        padding: 0 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description p {
        text-align: left;
    }
    
    .features-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-platform-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card i {
        font-size: 1.3rem;
    }
    
    .feature-info h4 {
        font-size: 0.9rem;
    }
    
    .feature-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-card i {
        font-size: 1.2rem;
    }
}

/* Lottery Services Section */
.lottery-services-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.service-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    animation: glow 2s infinite alternate;
}

.service-badge i {
    font-size: 1.2rem;
}

@keyframes glow {
    0% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
}

.lottery-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lottery-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

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

.lottery-description p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

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

.lottery-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 10px 0;
}

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

.lottery-type-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.lottery-type-item i {
    color: #ffd700;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.type-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.type-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.type-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    text-align: left !important;
}

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

.lottery-benefits p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.lottery-benefits strong {
    color: #ffd700;
    font-weight: 700;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .lottery-container {
        padding: 0 30px;
    }
    
    .lottery-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .lottery-text {
        text-align: left;
    }
    
    .lottery-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .lottery-types {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 10px auto;
    }
    
    .service-badge {
        position: static;
        margin: 20px auto 0;
        align-self: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .lottery-services-section {
        padding: 60px 0;
    }
    
    .lottery-container {
        padding: 0 20px;
    }
    
    .lottery-content {
        gap: 40px;
    }
    
    .lottery-title {
        font-size: 1.7rem;
    }
    
    .lottery-description p,
    .lottery-benefits p {
        font-size: 1rem;
    }
    
    .lottery-types {
        max-width: 100%;
    }
    
    .lottery-type-item {
        padding: 15px;
    }
    
    .lottery-type-item i {
        font-size: 1.4rem;
    }
    
    .type-info h4 {
        font-size: 1rem;
    }
    
    .type-info p {
        font-size: 0.85rem;
    }
    
    .service-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lottery-title {
        font-size: 1.5rem;
    }
    
    .lottery-description p,
    .lottery-benefits p {
        font-size: 0.95rem;
    }
    
    .lottery-types {
        gap: 15px;
    }
    
    .lottery-type-item {
        padding: 12px;
        gap: 12px;
    }
    
    .lottery-type-item i {
        font-size: 1.3rem;
    }
    
    .type-info h4 {
        font-size: 0.95rem;
    }
    
    .type-info p {
        font-size: 0.8rem;
    }
}

/* Registration System Section */
.registration-system-section {
    background: linear-gradient(180deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.registration-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.registration-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.registration-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

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

.registration-description p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

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

.registration-description a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.registration-description a:hover {
    color: #ffed4e;
    text-decoration: none;
}

.registration-action {
    margin-top: 10px;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

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

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

.registration-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.registration-steps {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.step-content p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

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

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

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

.system-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.system-card i {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.system-card h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.system-card p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

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

.security-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .registration-container {
        padding: 0 30px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .registration-title {
        font-size: 2.1rem;
        text-align: center;
    }
    
    .registration-action {
        text-align: center;
    }
    
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .registration-system-section {
        padding: 60px 0;
    }
    
    .registration-container {
        padding: 0 20px;
    }
    
    .registration-content {
        gap: 40px;
    }
    
    .registration-title {
        font-size: 1.8rem;
    }
    
    .registration-description p {
        font-size: 1rem;
    }
    
    .btn-register {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .registration-steps {
        padding: 25px;
    }
    
    .step-item {
        gap: 15px;
        padding: 15px 0;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .system-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .system-card {
        padding: 18px;
    }
    
    .system-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .system-card h4 {
        font-size: 0.95rem;
    }
    
    .system-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .registration-title {
        font-size: 1.6rem;
    }
    
    .registration-description p {
        font-size: 0.95rem;
    }
    
    .btn-register {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .registration-steps {
        padding: 20px;
    }
    
    .step-item {
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .system-card {
        padding: 15px;
    }
    
    .system-card i {
        font-size: 1.6rem;
    }
}

/* Trusted Platform Section */
.trusted-platform-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.trusted-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.trusted-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

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

.trusted-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.trusted-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trusted-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

.trusted-description {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trusted-description p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

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

.trusted-description a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.trusted-description a:hover {
    color: #ffed4e;
    text-decoration: none;
}

.trusted-highlights {
    margin: 10px 0;
}

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

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

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.highlight-item i {
    color: #ffd700;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.highlight-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.highlight-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.highlight-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    text-align: left !important;
}

.trusted-action {
    margin-top: 10px;
}

.btn-trusted {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-trusted:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .trusted-container {
        padding: 0 30px;
    }
    
    .trusted-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .trusted-text {
        text-align: left;
    }
    
    .trusted-title {
        font-size: 2.1rem;
        text-align: center;
    }
    
    .trusted-action {
        text-align: center;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .trusted-badges {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .trusted-platform-section {
        padding: 60px 0;
    }
    
    .trusted-container {
        padding: 0 20px;
    }
    
    .trusted-content {
        gap: 40px;
    }
    
    .trusted-title {
        font-size: 1.8rem;
    }
    
    .trusted-description p {
        font-size: 1rem;
    }
    
    .btn-trusted {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .highlight-grid {
        max-width: 100%;
    }
    
    .highlight-item {
        padding: 18px;
    }
    
    .highlight-item i {
        font-size: 1.6rem;
    }
    
    .highlight-info h4 {
        font-size: 0.95rem;
    }
    
    .highlight-info p {
        font-size: 0.85rem;
    }
    
    .badge-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .badge-item i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trusted-title {
        font-size: 1.6rem;
    }
    
    .trusted-description p {
        font-size: 0.95rem;
    }
    
    .btn-trusted {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .highlight-grid {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
        gap: 12px;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
    
    .highlight-info h4 {
        font-size: 0.9rem;
    }
    
    .highlight-info p {
        font-size: 0.8rem;
    }
    
    .trusted-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Customer Service Section */
.customer-service-section {
    background: linear-gradient(180deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

.service-description {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-description p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

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

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-item:last-child {
    border-bottom: none;
}

.channel-item i {
    color: #ffd700;
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.channel-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.channel-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.channel-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    text-align: left !important;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-benefits p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.service-benefits strong {
    color: #ffd700;
    font-weight: 700;
}

.service-benefits a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.service-benefits a:hover {
    color: #ffed4e;
    text-decoration: none;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

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

.service-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

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

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

.data-features {
    width: 100%;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.data-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.data-card i {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.data-card h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.data-card p {
    color: #cccccc;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.service-action {
    margin-top: 10px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-service i {
    font-size: 1.2rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .service-container {
        padding: 0 30px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-title {
        font-size: 2.1rem;
        text-align: center;
    }
    
    .service-features {
        align-items: center;
        text-align: center;
    }
    
    .data-grid {
        max-width: 600px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .customer-service-section {
        padding: 60px 0;
    }
    
    .service-container {
        padding: 0 20px;
    }
    
    .service-content {
        gap: 40px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-description p,
    .service-benefits p {
        font-size: 1rem;
    }
    
    .contact-channels {
        padding: 20px;
    }
    
    .channel-item {
        padding: 12px 0;
    }
    
    .channel-item i {
        font-size: 1.3rem;
    }
    
    .channel-info h4 {
        font-size: 1rem;
    }
    
    .channel-info p {
        font-size: 0.85rem;
    }
    
    .btn-service {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .data-card {
        padding: 16px;
    }
    
    .data-card i {
        font-size: 1.6rem;
    }
    
    .data-card h4 {
        font-size: 0.9rem;
    }
    
    .data-card p {
        font-size: 0.75rem;
    }
    
    .service-badge {
        position: static;
        margin: 15px auto 0;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-description p,
    .service-benefits p {
        font-size: 0.95rem;
    }
    
    .btn-service {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-channels {
        padding: 18px;
    }
    
    .channel-item {
        gap: 12px;
    }
    
    .data-card {
        padding: 14px;
    }
    
    .data-card i {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #ffffff;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin: 0 0 15px 0;
    position: relative;
}

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

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

.footer-menu-item {
    width: 100%;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

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

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

.contact-item i {
    color: #ffd700;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 25px 0;
}

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

.footer-copyright {
    flex: 1;
}

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

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link:hover {
    color: #ffd700;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 35px;
    }
    
    .footer-services {
        grid-column: span 3;
        grid-row: 2;
    }
    
    .footer-services .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 30px;
        max-width: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-services .footer-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        align-items: center;
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-link:hover {
        transform: translateY(-2px);
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 0 25px;
        gap: 25px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-link,
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
    min-height: 70px;
    gap: 6px;
}

.sticky-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
}

.sticky-btn i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.sticky-btn-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.sticky-btn-login {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 1) 0%, rgba(41, 128, 185, 1) 100%);
    color: #ffffff;
}

.sticky-btn-register {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.8) 0%, rgba(39, 174, 96, 0.8) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 1) 0%, rgba(39, 174, 96, 1) 100%);
    color: #ffffff;
}

.sticky-btn-credit {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
    color: #000000;
    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.3), transparent);
    transition: left 0.6s ease;
}

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

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, rgba(255, 237, 78, 1) 0%, rgba(255, 215, 0, 1) 100%);
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.sticky-btn-credit .sticky-btn-text {
    color: #000000;
    font-weight: 700;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .sticky-buttons {
        border-top-width: 1px;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        min-height: 65px;
    }
    
    .sticky-btn i {
        font-size: 1.3rem;
    }
    
    .sticky-btn-text {
        font-size: 0.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 60px;
        gap: 4px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
    }
    
    .sticky-btn-text {
        font-size: 0.75rem;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 55px;
        gap: 3px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn-text {
        font-size: 0.7rem;
        font-weight: 500;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.login-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

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

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

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

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

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

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

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

.form-label i {
    color: #ffd700;
    font-size: 1rem;
    width: 16px;
}

.form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 16px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

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

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error:before {
    content: '⚠';
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.login-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.register-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.register-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    font-size: 0.85rem;
}

.security-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 15px 15px;
    }
    
    .login-container {
        max-width: 400px;
    }
    
    .login-card {
        padding: 30px 25px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 14px 15px;
    }
    
    .login-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 13px 20px;
        font-size: 0.95rem;
    }
    
    .security-info {
        gap: 15px;
    }
    
    .security-item {
        font-size: 0.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .login-section {
        padding: 70px 10px 10px;
    }
    
    .login-container {
        max-width: 350px;
    }
    
    .login-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 13px 14px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .security-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .security-item {
        font-size: 0.75rem;
    }
    
    .error-message {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .field-error {
        font-size: 0.8rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

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

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

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

.form-label i {
    color: #ffd700;
    font-size: 1rem;
    width: 16px;
}

.form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
    letter-spacing: 1px;
}

.form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    text-align: left;
}

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

.form-input:focus::placeholder {
    text-align: left;
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error:before {
    content: '⚠';
    font-size: 0.8rem;
}

.field-help {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.field-help i {
    color: #ffd700;
    font-size: 0.75rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.register-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.register-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    font-size: 0.85rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

.terms-info {
    text-align: center;
}

.terms-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.terms-info a {
    color: #ffd700;
    text-decoration: underline;
}

.terms-info a:hover {
    color: #ffed4e;
    text-decoration: none;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .register-section {
        padding: 80px 15px 15px;
    }
    
    .register-container {
        max-width: 420px;
    }
    
    .register-card {
        padding: 30px 25px;
    }
    
    .register-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 15px 16px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .login-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .benefits-info {
        gap: 15px;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 7px 10px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .register-section {
        padding: 70px 10px 10px;
    }
    
    .register-container {
        max-width: 360px;
    }
    
    .register-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .register-logo {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 15px 18px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 13px 18px;
        font-size: 0.9rem;
    }
    
    .benefits-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .terms-info p {
        font-size: 0.75rem;
    }
    
    .error-message,
    .success-message {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .field-help {
        font-size: 0.75rem;
    }
}

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

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

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

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

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

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

.feature-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.hero-cta {
    margin-top: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

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

.hero-btn i {
    font-size: 1.4rem;
}

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

/* Promotion Sections */
.promotion-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    position: relative;
}

.promotion-section.promotion-alt {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
}

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

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

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.promotion-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.promotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.promotion-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.promotion-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promotion-amount {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.amount-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.amount-value {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    flex-wrap: wrap;
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-width: 80px;
}

.example-item.total {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.example-label {
    color: #cccccc;
    font-size: 0.85rem;
}

.example-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.example-item.total .example-value {
    color: #ffd700;
}

.bonus-example i {
    color: #ffd700;
    font-size: 1.2rem;
}

.cashback-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cashback-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    flex: 1;
    min-width: 200px;
}

.cashback-item i {
    color: #ffd700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cashback-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cashback-period {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.cashback-desc {
    color: #cccccc;
    font-size: 0.85rem;
}

.referral-steps {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.step-content p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

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

.promotion-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.promotion-list li i {
    color: #ffd700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.promotion-list li span {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.promotion-cta {
    text-align: center;
    margin-top: 30px;
}

.promotion-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.promotion-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.promotion-btn i {
    font-size: 1.2rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .promotion-card {
        padding: 35px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .bonus-example {
        gap: 10px;
    }
    
    .referral-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 50px;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
    }
    
    .hero-btn {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .promotion-section {
        padding: 40px 0;
    }
    
    .promotion-card {
        padding: 25px;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .bonus-example {
        flex-direction: column;
        gap: 10px;
    }
    
    .bonus-example i {
        transform: rotate(90deg);
    }
    
    .cashback-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .cashback-item {
        min-width: auto;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        min-width: auto;
        max-width: none;
    }
    
    .promotion-list li span {
        font-size: 0.95rem;
    }
    
    .promotion-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .promotion-card {
        padding: 20px;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .amount-value {
        font-size: 1.8rem;
    }
    
    .promotion-list li span {
        font-size: 0.9rem;
    }
    
    .promotion-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}