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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F1F1F1;
    color: #1A1A1A;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 100%);
    border-radius: 20px;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(0, 116, 193, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
    width: 20px;
    height: 20px;
    color: #666;
    z-index: 2;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 48px !important;
    position: relative;
    z-index: 1;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 116, 193, 0.2);
}

.header-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.app-title {
    font-size: 28px;
    font-weight: 600;
    color: #0074C1;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* Login Container */
.login-container,
.register-container {
    width: 100%;
    max-width: 400px;
}

/* Card Styles */
.login-card,
.register-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0, 116, 193, 0.1);
    border: 1px solid rgba(0, 116, 193, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus {
    outline: none;
    border-color: #0074C1;
    box-shadow: 0 0 0 3px rgba(0, 116, 193, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #1A1A1A;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0074C1;
    border-color: #0074C1;
}

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

/* Button Styles */
.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #0074C1;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background: #005a9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 116, 193, 0.3);
}

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

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #00B1EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0095c7;
    transform: translateY(-1px);
}

/* Links */
.login-links,
.register-links {
    text-align: center;
}

.login-links a,
.register-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0074C1;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.login-links a:hover,
.register-links a:hover {
    color: #005a9a;
}

.forgot-password {
    font-size: 13px;
    color: #666 !important;
}

/* App Container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 100%;
}

.menu-toggle {
    background: none;
    border: none;
    color: #0074C1;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background: #F1F1F1;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 116, 193, 0.1);
}

.sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F1F1F1;
}

.profile-image {
    margin-right: 16px;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.user-balance {
    font-size: 14px;
    color: #0074C1;
    font-weight: 500;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: #666;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: #F1F1F1;
    color: #0074C1;
}

.nav-item.active {
    background: #0074C1;
    color: white;
}

.nav-item.logout {
    margin-top: 24px;
    color: #dc3545;
}

.nav-item.logout:hover {
    background: #dc3545;
    color: white;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0;
}

/* Banner Section */
.banner-section {
    margin-bottom: 0;
    position: relative;
    z-index: 50;
    margin-top: -16px;
}

.banner-image {
    height: 220px;
    background: url('https://cyber-ga1ns.xyz/assets/images/banner.jpg') center/cover;
    border-radius: 0 0 24px 24px;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.banner-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner-overlay h2 {
    background: rgba(0, 116, 193, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 24px;
    backdrop-filter: blur(10px);
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.banner-overlay p {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    backdrop-filter: blur(5px);
    font-size: 14px;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    letter-spacing: 0.3px;
    max-width: 280px;
    margin: 0 auto;
}

.erros {
    background-color: #ffebee;
    color: #b71c1c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ffcdd2;
}

.erros p {
    margin: 5px 0;
}

/* Balance and Earnings Section */
.balance-earnings-section {
    display: flex;
    gap: 12px;
    margin: 32px 20px;
}

.balance-card,
.earnings-card {
    flex: 1;
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 116, 193, 0.08);
    border: 1px solid rgba(0, 116, 193, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.balance-card:hover,
.earnings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 116, 193, 0.15);
}

.card-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.balance-card .card-background {
    background-image: url('https://images.pexels.com/photos/4386321/pexels-photo-4386321.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-blend-mode: overlay;
    background-color: rgba(0, 116, 193, 0.8);
}

.earnings-card .card-background {
    background-image: url('https://images.pexels.com/photos/4386433/pexels-photo-4386433.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-blend-mode: overlay;
    background-color: rgba(0, 177, 235, 0.8);
}

.card-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 116, 193, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #0074C1;
    flex-shrink: 0;
}

.earnings-card .card-icon {
    background: rgba(0, 177, 235, 0.1);
    color: #00B1EB;
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

.balance-card .card-value {
    color: #0074C1;
}

.earnings-card .card-value {
    color: #00B1EB;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin: 24px 20px;
    position: relative;
    z-index: 60;
    margin-top: -20px;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.action-btn:hover {
    border-color: #0074C1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 116, 193, 0.1);
}

.action-btn i {
    color: #0074C1;
    width: 24px;
    height: 24px;
}

.action-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.action-btn.deposit:hover {
    border-color: #28a745;
}

.action-btn.deposit:hover i {
    color: #28a745;
}

.action-btn.checkin:hover {
    border-color: #00B1EB;
}

.action-btn.checkin:hover i {
    color: #00B1EB;
}

.action-btn.withdraw:hover {
    border-color: #dc3545;
}

.action-btn.withdraw:hover i {
    color: #dc3545;
}

/* Featured Investment */
.featured-investment {
    margin: 0 20px 32px 20px;
}

.featured-investment h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.investment-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 116, 193, 0.1);
    border: 1px solid rgba(0, 116, 193, 0.1);
}

.investment-image {
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.investment-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.investment-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.investment-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.investment-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.return-rate {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
}

.min-investment {
    font-size: 14px;
    color: #666;
}

/* FAQs Section */
.faqs-section {
    margin: 0 20px 32px 20px;
}

.faqs-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: center;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 116, 193, 0.08);
    border: 1px solid rgba(0, 116, 193, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question i {
    color: #0074C1;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F8F9FA;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    margin: 0 20px 32px 20px;
    background: #F8F9FA;
    border-radius: 20px;
    padding: 32px 24px;
}

.reviews-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-align: center;
}

.reviews-carousel {
    position: relative;
    margin-bottom: 24px;
}

.carousel-btn {
    display: none;
}

.reviews-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: 280px;
    touch-action: pan-x;
    cursor: grab;
}

.reviews-container:active {
    cursor: grabbing;
}

.review-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 116, 193, 0.08);
    border: 1px solid rgba(0, 116, 193, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 240px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
    user-select: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.review-card.prev {
    transform: translateX(-50px);
}

.review-card.next {
    transform: translateX(50px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0074C1, #00B1EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.reviewer-details p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.review-rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    color: #ddd;
}

.star.filled {
    color: #FFC107;
    fill: #FFC107;
}

.review-content {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.review-content p {
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.review-date {
    text-align: right;
}

.review-date span {
    font-size: 12px;
    color: #999;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #0074C1;
    transform: scale(1.2);
}

.indicator:hover {
    background: #0074C1;
    opacity: 0.7;
}

/* Touch indicator */
.touch-indicator {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    display: none;
}

@media (max-width: 768px) {
    .touch-indicator {
        display: block;
    }
    
    .reviews-section {
        margin: 0 16px 24px 16px;
        padding: 24px 16px;
    }
    
    .reviews-container {
        min-height: 320px;
    }
    
    .review-card {
        padding: 16px;
        min-height: 280px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reviewer-details h4 {
        font-size: 15px;
    }
    
    .review-content p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px 0;
    margin-top: auto;
    margin-left: 20px;
    margin-right: 20px;
}

.footer p {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .login-card,
    .register-card {
        padding: 24px 20px;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .header-content {
        padding: 12px 16px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .banner-overlay h2 {
        font-size: 20px;
    }
    
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        padding: 16px 12px;
    }
    
    .balance-earnings-section {
        gap: 8px;
        margin: 24px 16px;
    }
    
    .balance-card,
    .earnings-card {
        padding: 16px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .card-value {
        font-size: 16px;
    }
    
    .investment-card {
        padding: 20px;
    }
    
    .faqs-section {
        margin: 0 16px 24px 16px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
    }
    
    .reviews-section {
        margin: 0 16px 24px 16px;
        padding: 24px 20px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

.login-card,
.register-card,
.investment-card {
    animation: fadeIn 0.6s ease;
}

/* Touch Improvements */
@media (hover: none) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .action-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo svg,
    .header-logo svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Support Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 116, 193, 0.2);
    border: 1px solid rgba(0, 116, 193, 0.1);
    animation: modalSlideIn 0.4s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.modal-close {
    background: #F1F1F1;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #E5E5E5;
    color: #1A1A1A;
    transform: rotate(90deg);
}

.modal-content {
    padding: 0 24px 24px 24px;
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 116, 193, 0.1);
}

.contact-option.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.contact-option.telegram:hover {
    border-color: #0088CC;
    background: rgba(0, 136, 204, 0.05);
}

.contact-option.email:hover {
    border-color: #0074C1;
    background: rgba(0, 116, 193, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-option.telegram .contact-icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088CC;
}

.contact-option.email .contact-icon {
    background: rgba(0, 116, 193, 0.1);
    color: #0074C1;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.contact-detail {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.support-hours {
    background: #E8F4FD;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #0074C1;
}

.support-hours h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0074C1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-hours p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.support-hours p:last-child {
    margin-bottom: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 116, 193, 0.2);
    border: 1px solid rgba(0, 116, 193, 0.1);
    animation: popupSlideIn 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F1F1F1;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    background: #E5E5E5;
    color: #1A1A1A;
    transform: rotate(90deg);
}

.popup-content {
    padding: 32px 24px 24px 24px;
}

.popup-logo {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F1F1F1;
}

.popup-logo img {
    margin-bottom: 12px;
}

.popup-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0074C1;
    margin: 0;
}

.popup-section {
    margin-bottom: 28px;
}

.popup-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid #0074C1;
}

.info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #0074C1;
}

.withdrawal-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

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

.feature-item i {
    color: #28a745;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.withdrawal-description {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin: 0;
    padding: 12px 16px;
    background: #E8F4FD;
    border-radius: 8px;
    border-left: 4px solid #00B1EB;
}

.commission-levels {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.commission-item {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, #0074C1 0%, #00B1EB 100%);
    border-radius: 12px;
    color: white;
}

.commission-level {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 4px;
}

.commission-rate {
    font-size: 20px;
    font-weight: 700;
}

.investment-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #FFF3CD;
    border-radius: 8px;
    border-left: 4px solid #FFC107;
}

.investment-note i {
    color: #856404;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.investment-note span {
    font-size: 14px;
    color: #856404;
    font-weight: 500;
}

.motivational {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 116, 193, 0.1);
}

.motivational h3 {
    color: #0074C1;
    margin-bottom: 12px;
    justify-content: center;
}

.motivational p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.support-buttons {
    display: flex;
    gap: 12px;
}

.support-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-btn.whatsapp {
    background: #25D366;
    color: white;
}

.support-btn.whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.support-btn.telegram {
    background: #0088CC;
    color: white;
}

.support-btn.telegram:hover {
    background: #006BA3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .popup-overlay {
        padding: 16px;
    }
    
    .popup-content {
        padding: 24px 20px 20px 20px;
    }
    
    .popup-logo h2 {
        font-size: 20px;
    }
    
    .popup-section h3 {
        font-size: 16px;
    }
    
    .commission-levels {
        flex-direction: column;
        gap: 8px;
    }
    
    .commission-item {
        padding: 12px;
    }
    
    .support-buttons {
        flex-direction: column;
    }
    
    .modal-overlay {
        padding: 16px;
    }
    
    .modal-content {
        padding: 0 20px 20px 20px;
    }
    
    .contact-option {
        padding: 16px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .withdrawal-info {
        gap: 8px;
    }
    
    .feature-item {
        padding: 6px 0;
    }
}