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

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: #fff;
}

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

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="80" cy="30" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="30" cy="80" r="0.5" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    z-index: 0;
}

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

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

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

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

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

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

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

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

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
        justify-content: center;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

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

.header-logo .logo-link {
    text-decoration: none;
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    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 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

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

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

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

.mobile-menu-close:hover {
    color: #f7931e;
    transform: rotate(90deg);
}

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

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

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

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

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

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 1.1rem;
}

.mobile-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .header-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .mobile-nav-link {
        padding: 18px 15px;
        font-size: 1rem;
    }
    
    .mobile-cta-btn {
        margin: 15px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

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

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

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

.platform-review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.review-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
}

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

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

.review-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
}

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

.review-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

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

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

.highlight-item strong {
    color: #ff6b35;
    font-weight: 700;
}

.review-conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    padding: 25px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.review-conclusion::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #ff6b35;
    font-family: Georgia, serif;
}

.review-conclusion strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.review-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.review-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.3);
}

.review-stats {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
}

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

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

.stat-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    min-width: 24px;
}

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

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-top: 2px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .platform-review-section {
        padding: 80px 0;
    }
    
    .review-content {
        gap: 60px;
    }
    
    .review-title {
        font-size: 2.2rem;
    }
    
    .review-description p {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.95rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .platform-review-section {
        padding: 60px 0;
    }
    
    .review-container {
        padding: 0 15px;
    }
    
    .review-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .review-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .review-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .review-description p {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .highlight-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .highlight-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .review-conclusion {
        font-size: 1rem;
        padding: 20px;
        text-align: justify;
    }
    
    .review-img {
        height: 300px;
    }
    
    .review-stats {
        position: static;
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }
    
    .stat-item {
        padding: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .platform-review-section {
        padding: 40px 0;
    }
    
    .review-container {
        padding: 0 10px;
    }
    
    .review-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .review-description p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .review-conclusion {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .review-img {
        height: 250px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

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

.alternative-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.access-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.access-img:hover {
    transform: scale(1.02) rotateY(-3deg);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.3);
}

.access-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

.access-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
}

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

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

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

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

.access-features {
    margin-bottom: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

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

.access-info {
    margin-top: 30px;
}

.info-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 25px;
}

.info-highlight i {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-top: 2px;
    min-width: 20px;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
}

.info-recommendation {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.info-recommendation::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.info-recommendation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
    text-align: justify;
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .alternative-access-section {
        padding: 80px 0;
    }
    
    .access-content {
        gap: 60px;
    }
    
    .access-title {
        font-size: 2.2rem;
    }
    
    .access-description p {
        font-size: 1rem;
    }
    
    .access-img {
        height: 400px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .alternative-access-section {
        padding: 60px 0;
    }
    
    .access-container {
        padding: 0 15px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .access-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .access-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .access-description p {
        font-size: 0.95rem;
    }
    
    .access-img {
        height: 300px;
    }
    
    .access-badge {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-icon {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .info-highlight {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .info-highlight i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    .info-recommendation {
        padding: 20px;
    }
    
    .info-recommendation p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .alternative-access-section {
        padding: 40px 0;
    }
    
    .access-container {
        padding: 0 10px;
    }
    
    .access-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .access-description p {
        font-size: 0.9rem;
    }
    
    .access-img {
        height: 250px;
    }
    
    .access-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .feature-icon {
        min-width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .info-text p {
        font-size: 0.9rem;
    }
    
    .info-recommendation p {
        font-size: 0.9rem;
    }
}

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

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.membership-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
}

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

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

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

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

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

.membership-description a:hover {
    color: #ff8c42;
    text-decoration: none;
}

.membership-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

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

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

.membership-security {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.security-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-info i {
    color: #ff6b35;
    font-size: 2rem;
    min-width: 40px;
    margin-top: 5px;
}

.security-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.security-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    text-align: justify;
}

.membership-guarantee {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.membership-guarantee::before {
    content: '💎';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 8px 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.membership-guarantee p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
    text-align: justify;
    padding-left: 10px;
}

.membership-guarantee strong {
    color: #ff6b35;
    font-weight: 700;
}

.membership-action {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.membership-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.membership-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.3);
}

.membership-steps {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 15px;
}

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

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

.step-number {
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0 0 3px 0;
    font-family: 'Prompt', sans-serif;
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .membership-section {
        padding: 80px 0;
    }
    
    .membership-content {
        gap: 60px;
    }
    
    .membership-title {
        font-size: 2.2rem;
    }
    
    .membership-description p {
        font-size: 1rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .security-text h3 {
        font-size: 1.2rem;
    }
    
    .membership-img {
        height: 350px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .membership-section {
        padding: 60px 0;
    }
    
    .membership-container {
        padding: 0 15px;
    }
    
    .membership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .membership-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .membership-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .membership-description p {
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .security-info {
        flex-direction: column;
        text-align: center;
    }
    
    .security-info i {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .membership-guarantee {
        padding: 25px 15px 15px 15px;
        text-align: center;
    }
    
    .membership-guarantee::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .membership-guarantee p {
        padding-left: 0;
        font-size: 1rem;
    }
    
    .membership-action {
        justify-content: center;
    }
    
    .membership-img {
        height: 300px;
    }
    
    .membership-steps {
        position: static;
        flex-direction: column;
        margin-top: 30px;
        padding: 0;
    }
    
    .step-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .membership-section {
        padding: 40px 0;
    }
    
    .membership-container {
        padding: 0 10px;
    }
    
    .membership-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .membership-description p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .security-text h3 {
        font-size: 1.1rem;
    }
    
    .security-text p {
        font-size: 0.9rem;
    }
    
    .membership-guarantee p {
        font-size: 0.9rem;
    }
    
    .membership-action {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .membership-img {
        height: 250px;
    }
    
    .step-content h4 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
}

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

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.vip-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.vip-img:hover {
    transform: scale(1.02) rotateY(3deg);
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5);
}

.vip-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border: 2px solid #fff;
}

.vip-badge i {
    font-size: 1.2rem;
    color: #ff6b35;
}

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

.vip-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

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

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

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

.vip-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-left-color: #ff6b35;
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.3rem;
    margin-top: 2px;
    min-width: 25px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    color: #ff6b35;
    transform: scale(1.2);
}

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

.benefit-item strong {
    color: #ffd700;
    font-weight: 700;
}

.vip-contact {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.vip-contact::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info i {
    color: #ffd700;
    font-size: 2.2rem;
    min-width: 45px;
    margin-top: 5px;
}

.contact-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    text-align: justify;
}

.contact-text strong {
    color: #ffd700;
    font-weight: 700;
}

.vip-action {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vip-action .btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.vip-action .btn-primary:hover {
    background: linear-gradient(45deg, #ffed4a, #ffd700);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

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

.vip-action .btn-secondary:hover {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .vip-section {
        padding: 80px 0;
    }
    
    .vip-content {
        gap: 60px;
    }
    
    .vip-title {
        font-size: 2.2rem;
    }
    
    .vip-description p {
        font-size: 1rem;
    }
    
    .vip-img {
        height: 450px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .contact-text h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vip-section {
        padding: 60px 0;
    }
    
    .vip-container {
        padding: 0 15px;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vip-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .vip-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vip-description p {
        font-size: 0.95rem;
    }
    
    .vip-img {
        height: 350px;
    }
    
    .vip-badge {
        top: 15px;
        left: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
        align-self: center;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info i {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .vip-action {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vip-section {
        padding: 40px 0;
    }
    
    .vip-container {
        padding: 0 10px;
    }
    
    .vip-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .vip-description p {
        font-size: 0.9rem;
    }
    
    .vip-img {
        height: 280px;
    }
    
    .vip-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .vip-badge i {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 15px 10px;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .vip-action {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-action .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

.safe-usage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.safe-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
}

.safe-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 2px;
}

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

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

.safe-description strong {
    color: #22c55e;
    font-weight: 700;
}

.safe-description a {
    color: #22c55e;
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
}

.safe-description a:hover {
    color: #16a34a;
    text-decoration: none;
}

.safe-tips {
    margin-bottom: 40px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tip-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.tip-item i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

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

.safe-emotion {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.emotion-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.emotion-info i {
    color: #22c55e;
    font-size: 2rem;
    min-width: 40px;
    margin-top: 5px;
}

.emotion-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.emotion-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    text-align: justify;
}

.emotion-text a {
    color: #22c55e;
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
}

.emotion-text a:hover {
    color: #16a34a;
    text-decoration: none;
}

.safe-support {
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
}

.safe-support::before {
    content: '📞';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    padding: 8px 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.safe-support p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
    text-align: justify;
    padding-left: 10px;
}

.safe-support strong {
    color: #22c55e;
    font-weight: 700;
}

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

.safe-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.safe-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(34, 197, 94, 0.3);
}

.safe-checklist {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}

.checklist-header i {
    color: #22c55e;
    font-size: 1.5rem;
}

.checklist-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.checklist-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.check-item i {
    color: #22c55e;
    font-size: 1rem;
    min-width: 16px;
}

.check-item span {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .safe-usage-section {
        padding: 80px 0;
    }
    
    .safe-content {
        gap: 60px;
    }
    
    .safe-title {
        font-size: 2.2rem;
    }
    
    .safe-description p {
        font-size: 1rem;
    }
    
    .tip-item span {
        font-size: 0.95rem;
    }
    
    .emotion-text h3 {
        font-size: 1.3rem;
    }
    
    .safe-img {
        height: 400px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .safe-usage-section {
        padding: 60px 0;
    }
    
    .safe-container {
        padding: 0 15px;
    }
    
    .safe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .safe-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .safe-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .safe-description p {
        font-size: 0.95rem;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .tip-item:hover {
        transform: translateY(-5px);
    }
    
    .tip-item i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .emotion-info {
        flex-direction: column;
        text-align: center;
    }
    
    .emotion-info i {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .safe-support {
        padding: 25px 15px 15px 15px;
        text-align: center;
    }
    
    .safe-support::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .safe-support p {
        padding-left: 0;
        font-size: 1rem;
    }
    
    .safe-img {
        height: 300px;
    }
    
    .safe-checklist {
        position: static;
        margin-top: 30px;
        border-radius: 15px;
    }
    
    .checklist-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .safe-usage-section {
        padding: 40px 0;
    }
    
    .safe-container {
        padding: 0 10px;
    }
    
    .safe-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .safe-description p {
        font-size: 0.9rem;
    }
    
    .tip-item {
        padding: 12px;
    }
    
    .tip-item span {
        font-size: 0.9rem;
    }
    
    .emotion-text h3 {
        font-size: 1.1rem;
    }
    
    .emotion-text p {
        font-size: 0.9rem;
    }
    
    .safe-support p {
        font-size: 0.9rem;
    }
    
    .safe-img {
        height: 250px;
    }
    
    .checklist-header h4 {
        font-size: 1rem;
    }
    
    .check-item span {
        font-size: 0.8rem;
    }
}

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

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.footer-logo .logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 250px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-left: 3px solid #ff6b35;
    padding-left: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

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

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

.contact-item span {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-title {
    color: #e0e0e0;
    font-family: 'Prompt', sans-serif;
    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: 50px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 1px;
}

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

.footer-links li {
    transition: all 0.3s ease;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 10px;
    background: rgba(255, 107, 53, 0.05);
}

.footer-links a i {
    font-size: 0.9rem;
    min-width: 16px;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    color: #ff6b35;
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-copyright p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-disclaimer {
    color: #888 !important;
    font-size: 0.8rem !important;
    font-style: italic;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.badge-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.badge-item i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.badge-item span {
    color: #e0e0e0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:last-child {
        grid-column: span 3;
        margin-top: 20px;
    }
    
    .footer-section:last-child .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:last-child {
        grid-column: span 1;
        margin-top: 0;
    }
    
    .footer-section:last-child .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo .logo-text {
        font-size: 2rem;
    }
    
    .footer-tagline {
        max-width: none;
        margin: 0 auto 25px;
    }
    
    .footer-contact {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        transform: scale(1.05);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 10px 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.7rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 10px 0;
        padding-left: 12px;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 6px 0;
        max-width: 220px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem !important;
    }
    
    .badge-item {
        padding: 6px 10px;
    }
    
    .badge-item span {
        font-size: 0.75rem;
    }
    
    .footer-badges {
        gap: 10px;
    }
}

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

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

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

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

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

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

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

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

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

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

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: #fff;
}

.sticky-btn-login:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 -8px 25px rgba(59, 130, 246, 0.3);
}

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(45deg, #10b981, #059669);
    color: #fff;
}

.sticky-btn-register:hover {
    background: linear-gradient(45deg, #059669, #047857);
    color: #fff;
    box-shadow: 0 -8px 25px rgba(16, 185, 129, 0.3);
}

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

.sticky-btn-credit::after {
    content: 'HOT';
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc2626;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    animation: pulse-hot 2s infinite;
}

.sticky-btn-credit:hover {
    background: linear-gradient(45deg, #f7931e, #ff8c42);
    color: #fff;
    box-shadow: 0 -8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .sticky-btn {
        padding: 12px 8px;
        min-height: 65px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sticky-buttons {
        border-top: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .sticky-btn {
        padding: 10px 5px;
        min-height: 60px;
        gap: 3px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .sticky-btn-credit::after {
        top: 3px;
        right: 3px;
        font-size: 0.55rem;
        padding: 1px 4px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 3px;
        min-height: 55px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
    
    .sticky-btn-credit::after {
        font-size: 0.5rem;
        padding: 1px 3px;
    }
}

/* Ensure body has bottom padding to account for sticky buttons */
body {
    padding-bottom: 70px;
}

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

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

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

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

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

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

.login-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    z-index: -1;
}

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

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

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

.login-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.login-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

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

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

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

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

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

.form-input:valid {
    border-color: #22c55e;
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.password-wrapper {
    position: relative;
}

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

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    display: none;
}

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

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    min-height: 20px;
    line-height: 1.3;
}

.form-error-general {
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: none;
}

.form-error-general.show {
    display: block;
}

.login-btn {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

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

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

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.register-btn {
    width: 100%;
    padding: 14px 25px;
    background: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

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

.login-features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.feature-item span {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .login-section {
        padding: 80px 20px 120px;
    }
    
    .login-container {
        max-width: 420px;
    }
    
    .login-form-wrapper {
        padding: 35px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-section {
        padding: 60px 15px 100px;
        min-height: calc(100vh - 60px);
    }
    
    .login-container {
        max-width: 400px;
    }
    
    .login-form-wrapper {
        padding: 25px;
        border-radius: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .login-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 40px 10px 80px;
    }
    
    .login-container {
        max-width: 350px;
    }
    
    .login-form-wrapper {
        padding: 20px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .login-subtitle {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 10px 12px;
    }
    
    .login-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.register-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.register-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
    z-index: -1;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.register-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.register-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

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

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

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: #22c55e;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input:valid {
    border-color: #22c55e;
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

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

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

.terms-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 1px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #22c55e;
    border-color: #22c55e;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: #22c55e;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #16a34a;
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    min-height: 20px;
    line-height: 1.3;
}

.form-error-general {
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: none;
}

.form-error-general.show {
    display: block;
}

.register-btn {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

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

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

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.login-btn {
    width: 100%;
    padding: 14px 25px;
    background: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.login-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
    transform: translateY(-1px);
}

.register-features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
}

.feature-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

.feature-item span {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .register-section {
        padding: 80px 20px 120px;
    }
    
    .register-container {
        max-width: 420px;
    }
    
    .register-form-wrapper {
        padding: 35px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .register-section {
        padding: 60px 15px 100px;
        min-height: calc(100vh - 60px);
    }
    
    .register-container {
        max-width: 400px;
    }
    
    .register-form-wrapper {
        padding: 25px;
        border-radius: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .terms-checkbox {
        font-size: 0.85rem;
    }
    
    .register-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 40px 10px 80px;
    }
    
    .register-container {
        max-width: 350px;
    }
    
    .register-form-wrapper {
        padding: 20px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .register-subtitle {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 10px 12px;
    }
    
    .register-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .terms-checkbox {
        font-size: 0.8rem;
    }
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: 0;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
    color: #fff;
}

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

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

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

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

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

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

.promotion-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.promotion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    z-index: -1;
}

.promotion-header {
    text-align: center;
    margin-bottom: 40px;
}

.promotion-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-family: 'Prompt', sans-serif;
    position: relative;
}

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

.promotion-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.promotion-features {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.3rem;
    min-width: 24px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

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

.promotion-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.promotion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.promotion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: #fff;
}

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

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

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-content {
        padding: 40px;
    }
    
    .promotion-title {
        font-size: 2.2rem;
    }
    
    .promotion-features {
        gap: 30px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .promotion-section {
        padding: 40px 0;
    }
    
    .promotion-container {
        padding: 0 15px;
    }
    
    .promotion-content {
        padding: 25px;
        border-radius: 20px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-description {
        font-size: 1rem;
    }
    
    .promotion-features {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .promotion-btn {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .promotion-section {
        padding: 30px 0;
    }
    
    .promotion-container {
        padding: 0 10px;
    }
    
    .promotion-content {
        padding: 20px;
    }
    
    .promotion-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .promotion-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .promotion-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
}