/* Bonuses Page Styles */

/* Make Header Login Button More Visible */
.bonuses-hero ~ * .header-1 .btn-login,
.header-1 .btn-login,
.header-2 .btn-login-white {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 68, 79, 0.3) !important;
    color: #333333 !important;
    font-weight: 700 !important;
    padding: 0.875rem 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(255, 68, 79, 0.2) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.header-1 .btn-login:hover,
.header-2 .btn-login-white:hover {
    background: #ffffff !important;
    border-color: #FF444F !important;
    color: #FF444F !important;
    box-shadow: 0 6px 24px rgba(255, 68, 79, 0.35) !important;
    transform: translateY(-2px) !important;
}

[data-theme="dark"] .header-1 .btn-login,
[data-theme="dark"] .header-2 .btn-login-white {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .header-1 .btn-login:hover,
[data-theme="dark"] .header-2 .btn-login-white:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .header-1 .btn-login,
    .header-2 .btn-login-white {
        display: inline-flex !important;
        padding: 0.75rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .header-1 .btn-login,
    .header-2 .btn-login-white {
        display: inline-flex !important;
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Hero Section */
.bonuses-hero {
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
}

.bonuses-hero .hero-background {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    opacity: 0.1;
}

.bonuses-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bonuses-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="dark"] .bonuses-hero {
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.2) 0%, rgba(255, 107, 53, 0.15) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 68, 79, 0.2);
    border: 1px solid rgba(255, 68, 79, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF444F;
    margin-bottom: 1.5rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #FF444F;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Bonus Options Section */
.bonus-options-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

[data-theme="light"] .bonus-options-section {
    background: #ffffff;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .bonus-card {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 68, 79, 0.2);
    border-color: rgba(255, 68, 79, 0.3);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #FF444F;
    line-height: 1;
}

.bonus-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.bonus-card-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.bonus-card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bonus-card-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF444F;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bonus-card-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 68, 79, 0.3);
}

.bonus-card-button:hover {
    background: linear-gradient(135deg, #e63946 0%, #FF5722 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 68, 79, 0.4);
}

/* Terms & Conditions Section */
.bonus-terms-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

[data-theme="light"] .bonus-terms-section {
    background: #f5f5f5;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.terms-subsection {
    margin-bottom: 4rem;
}

.terms-subsection:last-child {
    margin-bottom: 0;
}

.terms-subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF444F;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

/* Cashback Tables Section */
.cashback-tables-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

[data-theme="light"] .cashback-tables-section {
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.cashback-table-wrapper {
    margin-bottom: 4rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .cashback-table-wrapper {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cashback-table-wrapper:last-child {
    margin-bottom: 0;
}

.table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.table-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.table-container {
    overflow-x: auto;
}

.cashback-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cashback-table thead {
    background: rgba(255, 68, 79, 0.1);
}

[data-theme="light"] .cashback-table thead {
    background: rgba(255, 68, 79, 0.05);
}

.cashback-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.cashback-table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.cashback-table tbody tr:hover {
    background: rgba(255, 68, 79, 0.05);
}

.cashback-table tbody tr:last-child td {
    border-bottom: none;
}

/* Bonus Steps Section */
.bonus-steps-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

[data-theme="light"] .bonus-steps-section {
    background: #f5f5f5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto !important;
}

[data-theme="light"] .step-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 68, 79, 0.15);
    border-color: rgba(255, 68, 79, 0.3);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(255, 68, 79, 0.3);
    flex-shrink: 0;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

[data-theme="light"] .faq-section {
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.3s ease;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question:hover {
    color: #FF444F;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
    text-align: center;
}

[data-theme="light"] .why-us-section {
    background: #f5f5f5;
}

.why-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.why-us-section .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.15rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 68, 79, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e63946 0%, #FF5722 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 68, 79, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.cta-button.secondary:hover {
    background: var(--glass);
    border-color: #FF444F;
    color: #FF444F;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

[data-theme="light"] .reviews-section {
    background: #ffffff;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff88;
}
[data-theme="light"] .reviews-badge {
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-stars-large {
    display: flex;
    gap: 0.3rem;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-count {
    font-size: 1rem;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.review-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .review-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.review-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-initials {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.reviews-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-link {
    color: #FF444F;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-link:hover {
    color: #e63946;
    text-decoration: underline;
}

.reviews-link-secondary {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-link-secondary:hover {
    color: #FF444F;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonuses-hero {
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .bonuses-hero .hero-title {
        font-size: 2.5rem;
    }

    .bonuses-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .bonus-options-section,
    .bonus-terms-section,
    .cashback-tables-section,
    .bonus-steps-section,
    .faq-section,
    .why-us-section {
        padding: 4rem 1.5rem;
    }

    .bonus-card {
        padding: 2rem 1.5rem;
    }

    .bonus-percentage {
        font-size: 2.5rem;
    }

    .bonus-card-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cashback-table-wrapper {
        padding: 1.5rem;
    }

    .cashback-table {
        font-size: 0.9rem;
    }

    .cashback-table th,
    .cashback-table td {
        padding: 0.75rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bonuses-hero .hero-title {
        font-size: 2rem;
    }

    .bonus-card {
        padding: 1.5rem 1rem;
    }

    .terms-section-title,
    .section-title {
        font-size: 1.75rem;
    }

    .terms-subsection-title {
        font-size: 1.5rem;
    }

    .table-title {
        font-size: 1.25rem;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 1.5rem;
    }
}

