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

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

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

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

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

a:hover {
    color: #ff8c42;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    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;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

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

.hero-description {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

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

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

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

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

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

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

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

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

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

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b8b8b8;
    font-size: 1rem;
}

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

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

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

/* Responsive Design */
@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: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

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

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

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

.logo-link i {
    font-size: 2rem;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

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

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

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

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff8c42 0%, #ffab42 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.cta-button i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    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);
}

.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);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 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 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    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: flex-end;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

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

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-item {
    margin-bottom: 20px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-item {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-item:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateX(10px);
}

.mobile-nav-link i {
    font-size: 1.3rem;
    color: #ff6b35;
    min-width: 25px;
}

/* Mobile CTA Button */
.mobile-cta {
    margin-top: 20px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.mobile-cta-button:hover::before {
    left: 100%;
}

.mobile-cta-button:hover {
    background: linear-gradient(45deg, #ff8c42 0%, #ffab42 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    color: #ffffff !important;
}

.mobile-cta-button i {
    font-size: 1.3rem;
    color: #ffffff;
}

/* Utility Classes */
.desktop-only {
    display: initial;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        min-height: 70px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-link i {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        min-height: 65px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-link i {
        font-size: 1.6rem;
    }
    
    .mobile-menu-content {
        padding: 15px;
    }
    
    .mobile-nav-link {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .mobile-cta-button {
        padding: 16px 25px;
        font-size: 1.1rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    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;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-image {
    text-align: center;
}

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

.about-img:hover {
    transform: scale(1.05) rotate(2deg);
}

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

.about-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

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

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

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

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

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

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

.about-feature-item:hover {
    transform: translateX(10px);
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.about-feature-item i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 40px;
    text-align: center;
}

.feature-content {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.feature-content strong {
    color: #ff8c42;
    font-weight: 700;
}

.about-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.warning-content i {
    font-size: 2rem;
    color: #ffc107;
    margin-top: 5px;
    min-width: 40px;
}

.warning-text p {
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.warning-text strong {
    color: #ffd54f;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .about-feature-item {
        padding: 20px;
        text-align: left;
    }
    
    .about-feature-item:hover {
        transform: translateY(-5px) translateX(0);
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-content i {
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-content {
        font-size: 1rem;
    }
    
    .about-warning {
        padding: 20px;
    }
    
    .warning-text p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Problems Section Styles */
.problems-section {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.problems-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.problems-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    border-radius: 2px;
}

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

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

.main-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.main-content p:last-child {
    margin-bottom: 0;
}

.main-content strong {
    color: #dc3545;
    font-weight: 700;
}

.problems-image {
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

.problems-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.problems-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.expert-advice {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.expert-advice::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(23, 162, 184, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
}

.advice-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.advice-content i {
    font-size: 2.5rem;
    color: #17a2b8;
    margin-top: 5px;
    min-width: 50px;
}

.advice-text h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.advice-text strong {
    color: #20c997;
    font-weight: 700;
}

.prevention-tips {
    text-align: center;
}

.tips-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.tips-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 2px;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(40, 167, 69, 0.3);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tip-card:hover {
    transform: translateY(-10px);
    border-color: #28a745;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.tip-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
    display: block;
}

.tip-card h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.tip-card p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
}

.tip-card p strong {
    color: #20c997;
    font-weight: 700;
}

.tip-card a {
    color: #ffc107;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tip-card a:hover {
    color: #fff3cd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .problems-section {
        padding: 80px 0;
    }
    
    .problems-title {
        font-size: 2.2rem;
    }
    
    .problems-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .problems-content .problems-image {
        order: -1;
    }
    
    .expert-advice {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .advice-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advice-content i {
        align-self: center;
        margin-top: 0;
    }
    
    .advice-text h3 {
        font-size: 1.4rem;
    }
    
    .tips-title {
        font-size: 1.9rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tip-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .problems-container {
        padding: 0 15px;
    }
    
    .problems-title {
        font-size: 1.9rem;
    }
    
    .main-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .expert-advice {
        padding: 25px 20px;
    }
    
    .advice-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .tips-title {
        font-size: 1.7rem;
    }
    
    .tip-card {
        padding: 25px 15px;
    }
    
    .tip-card i {
        font-size: 2.2rem;
    }
    
    .tip-card h4 {
        font-size: 1.2rem;
    }
}

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(52, 144, 220, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.login-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.login-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, #3490dc, #17a2b8);
    border-radius: 2px;
}

.login-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.main-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.main-content p:last-child {
    margin-bottom: 0;
}

.main-content strong {
    color: #3490dc;
    font-weight: 700;
}

.main-content a {
    color: #17a2b8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.main-content a:hover {
    color: #20c997;
}

.login-image {
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

.login-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(52, 144, 220, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(52, 144, 220, 0.3);
}

.login-img:hover {
    transform: scale(1.05) rotate(1deg);
}

.security-checklist {
    margin-bottom: 60px;
}

.checklist-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.checklist-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    border-radius: 2px;
}

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

.checklist-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.checklist-item:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.checklist-item i {
    font-size: 2rem;
    color: #ffc107;
    min-width: 40px;
    text-align: center;
}

.item-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.item-content p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.5;
    margin: 0;
}

.item-content strong {
    color: #ffd54f;
    font-weight: 700;
}

.usage-tips {
    background: rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.usage-tips::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(111, 66, 193, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
}

.tips-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.tips-content i {
    font-size: 2.5rem;
    color: #6f42c1;
    margin-top: 5px;
    min-width: 50px;
}

.tips-text h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.tips-text strong {
    color: #9561e2;
    font-weight: 700;
}

.latest-updates {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
}

.updates-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.updates-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #20c997, #17a2b8);
    border-radius: 1px;
}

.updates-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.updates-content strong {
    color: #20c997;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 0;
    }
    
    .login-title {
        font-size: 2.2rem;
    }
    
    .login-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .login-content .login-image {
        order: -1;
    }
    
    .checklist-title {
        font-size: 1.9rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checklist-item {
        padding: 20px;
    }
    
    .usage-tips {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .tips-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tips-content i {
        align-self: center;
        margin-top: 0;
    }
    
    .tips-text h3 {
        font-size: 1.4rem;
    }
    
    .latest-updates {
        padding: 30px 25px;
    }
    
    .updates-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 0 15px;
    }
    
    .login-title {
        font-size: 1.9rem;
    }
    
    .main-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .checklist-item i {
        margin-bottom: 10px;
    }
    
    .usage-tips {
        padding: 25px 20px;
    }
    
    .tips-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .latest-updates {
        padding: 25px 20px;
    }
    
    .updates-content p {
        font-size: 1rem;
        text-align: left;
    }
}

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

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

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

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

.scam-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.scam-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

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

.scam-image {
    text-align: center;
    animation: fadeInLeft 1s ease-out;
}

.scam-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.scam-img:hover {
    transform: scale(1.05) rotate(-1deg);
}

.scam-text {
    animation: fadeInRight 1s ease-out;
}

.main-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.main-content p:last-child {
    margin-bottom: 0;
}

.main-content strong {
    color: #e74c3c;
    font-weight: 700;
}

.analysis-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
}

.analysis-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.analysis-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    border-radius: 2px;
}

.analysis-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.analysis-content p:last-child {
    margin-bottom: 0;
}

.analysis-content strong {
    color: #3498db;
    font-weight: 700;
}

.warning-points {
    margin-bottom: 60px;
}

.warning-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.warning-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

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

.warning-card {
    background: rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.warning-card:hover {
    transform: translateY(-8px);
    border-color: #e74c3c;
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.warning-card i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.card-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.card-content strong {
    color: #f1c40f;
    font-weight: 700;
}

.security-assessment {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.security-assessment::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(46, 204, 113, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
}

.assessment-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.assessment-content i {
    font-size: 2.5rem;
    color: #2ecc71;
    margin-top: 5px;
    min-width: 50px;
}

.assessment-text h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.assessment-text strong {
    color: #2ecc71;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scam-section {
        padding: 80px 0;
    }
    
    .scam-title {
        font-size: 2.2rem;
    }
    
    .scam-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .scam-content .scam-text {
        order: -1;
        text-align: center;
    }
    
    .analysis-section {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .analysis-title {
        font-size: 1.8rem;
    }
    
    .warning-title {
        font-size: 1.9rem;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .warning-card {
        padding: 25px 20px;
    }
    
    .security-assessment {
        padding: 30px 25px;
    }
    
    .assessment-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .assessment-content i {
        align-self: center;
        margin-top: 0;
    }
    
    .assessment-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .scam-container {
        padding: 0 15px;
    }
    
    .scam-title {
        font-size: 1.9rem;
    }
    
    .main-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .analysis-section {
        padding: 25px 20px;
    }
    
    .analysis-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .warning-card {
        padding: 20px 15px;
    }
    
    .warning-card i {
        font-size: 2.2rem;
    }
    
    .card-content h4 {
        font-size: 1.1rem;
    }
    
    .security-assessment {
        padding: 25px 20px;
    }
    
    .assessment-text p {
        font-size: 1rem;
        text-align: left;
    }
}

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

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.comparison-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

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

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

.main-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.main-content p:last-child {
    margin-bottom: 0;
}

.main-content strong {
    color: #3498db;
    font-weight: 700;
}

.main-content a {
    color: #2ecc71;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 700;
}

.main-content a:hover {
    color: #27ae60;
}

.comparison-image {
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

.comparison-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.comparison-img:hover {
    transform: scale(1.05) rotate(1deg);
}

.registration-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.process-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    border-radius: 2px;
}

.process-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.process-content p:last-child {
    margin-bottom: 0;
}

.process-content strong {
    color: #9b59b6;
    font-weight: 700;
}

.process-content a {
    color: #f39c12;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 700;
}

.process-content a:hover {
    color: #e67e22;
}

.comparison-table {
    margin-bottom: 60px;
}

.table-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.table-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

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

.comparison-item {
    backdrop-filter: blur(15px);
    padding: 30px 25px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-item.licensed {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.comparison-item.unlicensed {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

.comparison-item.licensed::before {
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
}

.comparison-item.unlicensed::before {
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
}

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

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-item.licensed:hover {
    border-color: #2ecc71;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.comparison-item.unlicensed:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.comparison-item i {
    font-size: 2rem;
    margin-top: 5px;
    min-width: 40px;
}

.comparison-item.licensed i {
    color: #2ecc71;
}

.comparison-item.unlicensed i {
    color: #e74c3c;
}

.item-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.item-content strong {
    color: #f39c12;
    font-weight: 700;
}

.disadvantage-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.disadvantage-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
}

.disadvantage-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.disadvantage-content i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-top: 5px;
    min-width: 50px;
}

.disadvantage-text h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.disadvantage-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-section {
        padding: 80px 0;
    }
    
    .comparison-title {
        font-size: 2.2rem;
    }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .comparison-content .comparison-image {
        order: -1;
    }
    
    .registration-process {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .table-title {
        font-size: 1.9rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-item {
        padding: 25px 20px;
    }
    
    .disadvantage-section {
        padding: 30px 25px;
    }
    
    .disadvantage-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .disadvantage-content i {
        align-self: center;
        margin-top: 0;
    }
    
    .disadvantage-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .comparison-container {
        padding: 0 15px;
    }
    
    .comparison-title {
        font-size: 1.9rem;
    }
    
    .main-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .registration-process {
        padding: 25px 20px;
    }
    
    .process-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .comparison-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .comparison-item i {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .item-content h4 {
        font-size: 1.1rem;
    }
    
    .disadvantage-section {
        padding: 25px 20px;
    }
    
    .disadvantage-text p {
        font-size: 1rem;
        text-align: left;
    }
}

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

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    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: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer About Section */
.footer-about {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

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

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

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

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

.footer-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-link {
    color: #b8b8b8;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.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(5px);
}

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

/* Social Media Section */
.footer-social {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: #ff6b35;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

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

.social-link:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

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

.footer-warning {
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 10px;
}

.warning-text {
    color: #ffc107;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.warning-text i {
    font-size: 0.9rem;
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-social {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-about {
        grid-column: 1;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        padding: 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 12px 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo i {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .warning-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .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, #0f0f23 0%, #1a1a2e 100%);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    padding: 0;
    margin: 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 65px;
    text-align: center;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

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

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    color: #3498db;
}

.sticky-btn-login::before {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.2) 100%);
}

.sticky-btn-login:hover {
    color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    color: #2ecc71;
}

.sticky-btn-register::before {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(39, 174, 96, 0.2) 100%);
}

.sticky-btn-register:hover {
    color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Bonus Button */
.sticky-btn-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
    color: #ff6b35;
    position: relative;
    animation: pulseBonus 2s infinite;
}

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

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

.sticky-btn-bonus::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    opacity: 0;
    z-index: -2;
    animation: shimmer 3s infinite;
}

/* Button Icons */
.sticky-btn i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

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

/* Button Text */
.btn-text {
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes pulseBonus {
    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 shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

@media (max-width: 480px) {
    .sticky-buttons {
        border-top-width: 1px;
    }
    
    .sticky-btn {
        padding: 8px 4px;
        min-height: 55px;
        font-size: 0.75rem;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .btn-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 50px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .btn-text {
        font-size: 0.6rem;
    }
}

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

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

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

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

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

.login-page-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;
}

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

/* Login Form Wrapper */
.login-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    border-radius: 25px;
    pointer-events: none;
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

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

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

.login-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Error Message */
.error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: errorSlideIn 0.3s ease;
}

.error-message i {
    color: #dc3545;
    font-size: 1.1rem;
}

.error-text {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Form Styles */
.login-form {
    position: relative;
    z-index: 2;
}

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

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

.form-label i {
    color: #ff6b35;
    font-size: 1rem;
}

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

.form-input::placeholder {
    color: #888888;
    font-weight: 400;
}

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

.input-focus-border {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.form-input:focus + .input-focus-border {
    transform: scaleX(1);
}

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

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 2;
}

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

/* Field Errors */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Buttons */
.login-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    background: linear-gradient(45deg, #ff8c42 0%, #ffab42 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

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

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

.register-button:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Login Footer */
.login-footer {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #888888;
    font-size: 0.85rem;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-info i {
    color: #28a745;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-page-section {
        padding: 20px 0;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-form-wrapper {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.9rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .login-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .register-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-form-wrapper {
        padding: 25px 20px;
        border-radius: 18px;
        max-width: 100%;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.7rem;
    }
    
    .form-input {
        padding: 12px 16px;
    }
    
    .login-button {
        padding: 12px 18px;
    }
    
    .security-info {
        font-size: 0.8rem;
        padding: 12px;
    }
}

@media (max-width: 360px) {
    .login-form-wrapper {
        padding: 20px 15px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .login-button,
    .register-button {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

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

.register-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Register Form Wrapper */
.register-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.register-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.05) 0%, transparent 100%);
    border-radius: 25px;
    pointer-events: none;
}

/* Register Header */
.register-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    transition: transform 0.3s ease;
}

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

.register-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Success Message */
.success-message {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: successSlideIn 0.3s ease;
}

.success-message i {
    color: #28a745;
    font-size: 1.1rem;
}

.success-text {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Error Message */
.error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: errorSlideIn 0.3s ease;
}

.error-message i {
    color: #dc3545;
    font-size: 1.1rem;
}

.error-text {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Form Styles */
.register-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

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

.form-label i {
    color: #2ecc71;
    font-size: 1rem;
}

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

.form-input::placeholder {
    color: #888888;
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: rgba(46, 204, 113, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.input-focus-border {
    position: absolute;
    bottom: 45px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.form-input:focus + .input-focus-border {
    transform: scaleX(1);
}

/* Field Errors */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Field Hint */
.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888888;
    font-size: 0.8rem;
    margin-top: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.field-hint i {
    color: #17a2b8;
    font-size: 0.8rem;
}

/* Buttons */
.register-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.register-button:hover::before {
    left: 100%;
}

.register-button:hover {
    background: linear-gradient(45deg, #27ae60 0%, #229954 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

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

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

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

.login-button {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #2ecc71;
    border-radius: 15px;
    color: #2ecc71;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.login-button:hover {
    background: #2ecc71;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* Register Footer */
.register-footer {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-info,
.terms-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #888888;
    font-size: 0.8rem;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.4;
}

.security-info i {
    color: #28a745;
    font-size: 0.9rem;
    min-width: 16px;
}

.terms-info i {
    color: #17a2b8;
    font-size: 0.9rem;
    min-width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-page-section {
        padding: 20px 0;
    }
    
    .register-container {
        padding: 0 15px;
    }
    
    .register-form-wrapper {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.9rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .register-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .login-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .field-hint {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .register-form-wrapper {
        padding: 25px 20px;
        border-radius: 18px;
        max-width: 100%;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.7rem;
    }
    
    .form-input {
        padding: 12px 16px;
    }
    
    .register-button {
        padding: 12px 18px;
    }
    
    .security-info,
    .terms-info {
        font-size: 0.75rem;
        padding: 10px;
        flex-direction: column;
        gap: 5px;
    }
    
    .security-info i,
    .terms-info i {
        margin-bottom: 5px;
    }
}

@media (max-width: 360px) {
    .register-form-wrapper {
        padding: 20px 15px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .register-button,
    .login-button {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .field-hint {
        font-size: 0.7rem;
    }
}

/* Hero Promotion Section */
.hero-promo-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffab42 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 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 {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-highlight i {
    font-size: 1.4rem;
    color: #fff3cd;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #e55a2b;
}

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

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

.promotion-section:nth-child(even) {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.promotion-section:nth-child(odd) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

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

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

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

.promotion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promotion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    margin: 0 auto;
}

.promotion-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.promotion-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.promotion-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1000px;
}

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

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

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

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

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

.feature-item span {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

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

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.promo-button:hover {
    background: linear-gradient(45deg, #ff8c42 0%, #ffab42 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.promo-button i {
    font-size: 1.3rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .promotion-title {
        font-size: 2.2rem;
    }
    
    .promotion-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-promo-section {
        padding: 80px 0;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hero-highlight {
        font-size: 1rem;
        padding: 12px 25px;
        margin-bottom: 30px;
    }
    
    .hero-cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-title {
        font-size: 1.9rem;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
    }
    
    .promotion-icon i {
        font-size: 2.2rem;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .promo-button {
        padding: 16px 28px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-highlight {
        font-size: 0.9rem;
        padding: 10px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-cta-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .promotion-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
    }
    
    .promotion-icon i {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 18px 15px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .promo-button {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-highlight {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 15px 12px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .promo-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

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

.login-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;
}

/* Floating Particles */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 10%;
    left: 90%;
    animation-delay: 12s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Header */
.login-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.icon-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hero-icon {
    font-size: 4rem;
    color: #ff6b35;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Content Layout */
.login-content {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Interactive Process Flow */
.process-flow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(52, 152, 219, 0.02) 100%);
    border-radius: 25px;
    z-index: -1;
}

.flow-header {
    margin-bottom: 50px;
}

.flow-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.flow-title h3 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 3px;
    animation: progressFlow 3s ease-in-out infinite;
}

.progress-text {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes progressFlow {
    0%, 100% { width: 75%; }
    50% { width: 85%; }
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-flow {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.step-flow:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.step-flow.active {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.flow-number {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    flex-shrink: 0;
}

.number-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-flow:hover .number-glow,
.step-flow.active .number-glow {
    opacity: 1;
}

.flow-content {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.flow-icon-wrapper {
    position: relative;
}

.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.flow-icon.verified {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.flow-icon.security {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.flow-icon.caution {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.flow-icon.complete {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.icon-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: inherit;
    opacity: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.flow-text {
    flex: 1;
}

.flow-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.flow-description {
    font-size: 1rem;
    color: #c8c8c8;
    line-height: 1.7;
    margin-bottom: 15px;
}

.secure-link {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.secure-link:hover {
    color: #ff8c42;
    border-bottom-color: #ff8c42;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.indicator-dot.verified { background: #2ecc71; }
.indicator-dot.warning { background: #f39c12; }
.indicator-dot.info { background: #3498db; }
.indicator-dot.success { background: #9b59b6; }

.indicator-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-flow[data-step="1"] .indicator-text { color: #2ecc71; }
.step-flow[data-step="2"] .indicator-text { color: #f39c12; }
.step-flow[data-step="3"] .indicator-text { color: #3498db; }
.step-flow[data-step="4"] .indicator-text { color: #9b59b6; }

.flow-connector {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), transparent);
}

.step-flow:last-child .flow-connector {
    display: none;
}

/* Interactive Demo Panel */
.demo-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.demo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(155, 89, 182, 0.02) 100%);
    border-radius: 25px;
    z-index: -1;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.demo-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 500;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.browser-mockup {
    background: #2c3e50;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.browser-header {
    background: #34495e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #2c3e50;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #e74c3c; }
.dot.yellow { background: #f1c40f; }
.dot.green { background: #2ecc71; }

.address-bar {
    flex: 1;
    background: #2c3e50;
    border-radius: 6px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.security-icon {
    color: #2ecc71;
    font-size: 0.9rem;
}

.url {
    flex: 1;
    color: #ecf0f1;
    font-family: 'Courier New', monospace;
}

.ssl-badge {
    background: #2ecc71;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.browser-content {
    position: relative;
    background: #ecf0f1;
}

.demo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 107, 53, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.security-shield {
    width: 80px;
    height: 80px;
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2ecc71;
    margin-bottom: 20px;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
}

.security-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.security-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.action-center {
    text-align: center;
}

.center-title h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.center-title p {
    color: #b8b8b8;
    margin-bottom: 30px;
}

.action-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.primary-action,
.secondary-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.primary-action {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.secondary-action {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.secondary-action:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.primary-action .action-icon {
    background: rgba(255, 255, 255, 0.2);
}

.secondary-action .action-icon {
    background: rgba(52, 152, 219, 0.2);
}

.action-content {
    flex: 1;
    text-align: left;
}

.action-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.action-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.action-arrow {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.primary-action:hover .action-arrow,
.secondary-action:hover .action-arrow {
    transform: translateX(5px);
}

.action-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.primary-action:hover .action-glow {
    transform: rotate(45deg) translateX(100%);
}

.quick-tips {
    margin-top: 25px;
}

.tip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(241, 196, 15, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Security Dashboard */
.security-dashboard {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.security-item.status-good {
    border-left: 4px solid #2ecc71;
}

.security-item.status-warning {
    border-left: 4px solid #f39c12;
}

.security-item.status-info {
    border-left: 4px solid #3498db;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status-good .item-icon {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-warning .item-icon {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.status-info .item-icon {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-description {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.5;
}

.status-badge {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.good {
    background: #2ecc71;
    color: #ffffff;
}

.status-badge.warning {
    background: #f39c12;
    color: #ffffff;
}

.status-badge.info {
    background: #3498db;
    color: #ffffff;
}

.highlight {
    color: #f1c40f;
    font-weight: 600;
}

/* Tips Hub */
.tips-hub {
    position: relative;
    z-index: 2;
}

.hub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.tip-card:hover,
.updates-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
}

.tips-list {
    list-style: none;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

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

.tip-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1rem;
    flex-shrink: 0;
}

.tip-item span {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.update-timeline {
    space-y: 20px;
}

.update-entry {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #3498db;
}

.update-entry:last-child {
    margin-bottom: 0;
}

.update-time {
    flex-shrink: 0;
}

.time-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design for Login Content */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hub-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .process-flow,
    .demo-panel {
        padding: 35px;
    }
    
    .flow-title {
        align-items: center;
        text-align: center;
    }
    
    .action-grid {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .process-flow,
    .demo-panel,
    .tip-card,
    .updates-card {
        padding: 30px;
    }
    
    .step-flow {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .flow-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .flow-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .flow-connector {
        display: none;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .browser-mockup {
        margin-bottom: 20px;
    }
    
    .demo-image {
        height: 250px;
    }
    
    .security-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-grid {
        gap: 12px;
    }
    
    .primary-action,
    .secondary-action {
        padding: 18px 20px;
    }
    
    .card-header {
        justify-content: center;
    }
    
    .progress-indicator {
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .process-flow,
    .demo-panel,
    .tip-card,
    .updates-card {
        padding: 25px;
    }
    
    .step-flow {
        padding: 18px;
        gap: 15px;
    }
    
    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .flow-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .flow-title {
        font-size: 1.1rem;
    }
    
    .flow-description {
        font-size: 0.9rem;
    }
    
    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .flow-title h3 {
        font-size: 1.5rem;
    }
    
    .demo-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .browser-header {
        padding: 10px 15px;
    }
    
    .demo-image {
        height: 200px;
    }
    
    .security-shield {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .security-title {
        font-size: 1.2rem;
    }
    
    .security-features {
        gap: 10px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .action-title {
        font-size: 1rem;
    }
    
    .action-subtitle {
        font-size: 0.8rem;
    }
    
    .primary-action,
    .secondary-action {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .tip-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .address-bar {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .url {
        font-size: 0.8rem;
    }
}