﻿/* ===== CHALLENGES PAGE STYLES ===== */

/* Reduce top spacing for challenges page */
.challenges-page {
    padding: 40px 40px 100px 40px !important;
    align-items: flex-start !important;
}

/* Quick-start Guide */
.quick-start-guide {
    background: rgba(10, 31, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.quick-start-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quick-start-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.btn-continue-guide {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-guide:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.quick-start-steps {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.quick-start-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(to right, 
        #4ade80 0%, 
        #4ade80 33%, 
        rgba(102, 126, 234, 0.3) 33%, 
        rgba(102, 126, 234, 0.3) 66%, 
        rgba(255, 255, 255, 0.2) 66%);
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.step-item.completed .step-icon {
    background: #4ade80;
    border-color: #4ade80;
    color: #ffffff;
}

.step-item.completed .step-icon .fa-check {
    display: block;
}

.step-item.completed .step-number {
    display: none;
}

.step-item.active .step-icon {
    background: #538CFF;
    border-color: #538CFF;
    color: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(36, 160, 237, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
}

.step-item.active .step-icon i {
    display: none;
}

.step-item.active .step-number {
    display: block;
}

.step-number {
    display: block;
}

.step-icon i {
    display: none;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-item.completed .step-label,
.step-item.active .step-label {
    color: #ffffff;
}

/* Challenge Section */
.challenge-section-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    background: #003399;
}

.challenge-card-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.challenge-card-title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.challenge-card-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.btn-register-challenge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
    gap: 6px;
    width: 224px;
    height: 56px;
    background: #FFFFFF;
    border: none;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #152a85;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.btn-register-challenge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.challenge-banner-image {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tournament-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.challenge-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.challenge-card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.btn-register-challenge {
    padding: 14px 40px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    color: #152a85;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-register-challenge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Leaderboard Preview */
.leaderboard-preview {
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.leaderboard-tabs {
    display: flex;
    gap: 10px;
}

.leaderboard-tab {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaderboard-tab.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
}

.leaderboard-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-tier {
    padding: 6px 15px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.points {
    color: #4ade80;
    font-size: 18px;
    font-weight: 700;
}

/* Leaderboard Table */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard-table th {
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard-table td {
    padding: 18px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.level-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.level-expert {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

.level-advanced {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.level-intermediate {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.level-beginner {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

/* Leaderboard Footer */
.leaderboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.user-level {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.btn-register-leaderboard {
    padding: 10px 30px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register-leaderboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* My Account Section */
.my-account-section {
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.membership-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: rgba(10, 31, 94, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.membership-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.membership-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.membership-type {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.membership-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-upgrade {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Account Tabs */
.account-tabs {
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 4px;
    margin-bottom: 30px;
    background: rgba(0, 17, 52, 0.6);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    width: fit-content;
}

.account-tab {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.account-tab.active {
    background: #0F285B;
    color: #ffffff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.account-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.account-tab.active:hover {
    background: rgba(102, 126, 234, 0.6);
}

/* Botão Upgrade Plan no Header */
.btn-upgrade-plan {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Committee Review Section */
.committee-review-section {
    background: rgba(0, 17, 52, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.committee-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

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

.committee-description {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-apply-committee {
    padding: 12px 32px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0F285B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-committee:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Challenge History */
.challenge-history {
    margin-top: 30px;
}

.history-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Settings Tab Styles */
.settings-section {
    background: rgba(0, 17, 52, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.settings-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Personal Information */
.personal-info-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.profile-avatar-section {
    flex-shrink: 0;
}

.avatar-frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    width: 132px;
    height: 132px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    position: relative;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.avatar-background {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(82.04deg, #DB8833 2.54%, #FFE784 26.25%, #FFE784 69.24%, #DB8833 105.31%, #DB8833 105.31%);
    z-index: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.edit-avatar-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0px;
    bottom: 68px;
    border-radius: 50px;
    background: #FFFFFF;
    border: none;
    color: #003399;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: -4px 0px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.edit-avatar-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.edit-avatar-btn i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 0px;
    bottom: 0px;
    background: #192950;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    z-index: 3;
}

.badge-icon {
    width: 22.63px;
    height: 24.06px;
    object-fit: contain;
}

.info-fields-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(15, 40, 91, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
}

.info-field.full-width {
    grid-column: 1 / -1;
}

.field-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 4px;
    height: 24px;
}

.field-label {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0;
}

.field-value {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.edit-field-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.edit-field-btn:hover {
    color: #667eea;
    transform: scale(1.1);
}

.edit-field-btn i {
    font-size: 16px;
}

.btn-contact-edit {
    padding: 4px 12px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-edit:hover {
    color: #667eea;
}

/* Subscription Section */
.subscription-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.subscription-info-box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.subscription-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.subscription-details {
    flex: 1;
}

.subscription-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.subscription-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
}

.subscription-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.subscription-actions {
    display: flex;
    gap: 12px;
}

.btn-cancel-subscription {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.6);
    border-radius: 8px;
    color: rgba(239, 68, 68, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cancel-subscription:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.8);
}

.btn-upgrade-subscription {
    padding: 10px 24px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0F285B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade-subscription:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Payment Methods */
.payment-methods-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.payment-card-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-brand {
    font-size: 32px;
    color: #1a1f71;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-number {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.card-expiry {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.payment-methods-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-change-payment {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-change-payment:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Delete Account Button */
.btn-delete-account {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    color: rgba(239, 68, 68, 0.9);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-delete-account:hover {
    color: rgba(239, 68, 68, 1);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 36px;
    color: rgba(102, 126, 234, 0.6);
}

.empty-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.empty-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    max-width: 450px;
}

.btn-take-me-there {
    padding: 12px 36px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-take-me-there:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.history-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.history-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    min-width: 120px;
}

.history-description {
    flex: 1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 20px;
}

.btn-go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-go:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
}

.page-dots {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 0 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .challenge-section-cards {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .quick-start-guide {
        padding: 20px;
    }
    
    .quick-start-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .quick-start-steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .quick-start-steps::before {
        display: none;
    }
    
    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .challenge-card-text {
        padding: 30px 25px;
    }
    
    .challenge-card-title {
        font-size: 24px;
    }
    
    .leaderboard-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .leaderboard-table {
        display: block;
        overflow-x: auto;
    }
    
    .leaderboard-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .account-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .membership-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .account-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Settings responsivo */
    .personal-info-content {
        flex-direction: column;
        align-items: center;
    }
    
    .avatar-frame {
        width: 160px;
        height: 160px;
    }
    
    .profile-avatar-large {
        width: 120px;
        height: 120px;
    }
    
    .info-fields-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .subscription-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subscription-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cancel-subscription,
    .btn-upgrade-subscription {
        width: 100%;
    }
    
    .payment-methods-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .payment-methods-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .history-description {
        padding: 0;
    }
    
    .btn-go {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .my-account-section {
        padding: 15px;
    }
    
    .account-title {
        font-size: 20px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Settings mobile */
    .settings-section {
        padding: 15px 20px;
    }
    
    .settings-title {
        font-size: 18px;
    }
    
    .avatar-frame {
        width: 140px;
        height: 140px;
        padding: 12px;
    }
    
    .profile-avatar-large {
        width: 100px;
        height: 100px;
    }
    
    .edit-avatar-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .avatar-badge {
        width: 48px;
        height: 48px;
    }
    
    .field-label {
        font-size: 13px;
    }
    
    .field-value {
        font-size: 13px;
    }
    
    .btn-contact-edit {
        font-size: 12px;
    }
    
    .subscription-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .card-brand {
        font-size: 24px;
    }
}

/* ===== AVATAR MODAL STYLES ===== */
/* Overlay com fundo escuro */
.avatar-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.avatar-modal .modal-content {
    width: 642px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-modal-content {
    padding: 0;
}

.avatar-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.avatar-modal .modal-logo {
    height: 20px;
    width: auto;
}

.avatar-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.avatar-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.avatar-modal .modal-header {
    text-align: center;
    padding: 0 0 20px 0;
}

.avatar-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.avatar-modal .modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
    background: rgba(10, 31, 94, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 -36px;
    padding: 30px 36px;
}

.avatar-option {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(10, 31, 94, 0.8), rgba(25, 52, 131, 0.6));
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
}

.avatar-option.selected {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.avatar-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #667eea;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    border: 2px solid #0a1f5e;
}

.avatar-modal-actions {
    display: flex;
    gap: 15px;
    padding: 30px 0 0 0;
    justify-content: center;
}

.btn-close-modal {
    padding: 14px 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-save-avatar {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-save-avatar:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Avatar Modal Responsive */
@media (max-width: 768px) {
    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .avatar-modal .modal-header {
        padding: 0 20px 15px 20px;
    }
    
    .avatar-modal-actions {
        padding: 20px;
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-save-avatar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .avatar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .avatar-modal .modal-title {
        font-size: 22px;
    }
}

/* ===== NICKNAME MODAL STYLES ===== */
/* Overlay com fundo escuro */
.nickname-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.nickname-modal .modal-content {
    width: 480px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nickname-modal-content {
    padding: 0;
}

.nickname-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.nickname-modal .modal-logo {
    height: 20px;
    width: auto;
}

.nickname-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nickname-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nickname-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.nickname-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.nickname-modal .modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nickname-input-container {
    margin-bottom: 30px;
}

.nickname-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.nickname-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nickname-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.nickname-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-save-nickname {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-save-nickname:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Nickname Modal Responsive */
@media (max-width: 768px) {
    .nickname-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .nickname-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .nickname-modal-actions {
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-save-nickname {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nickname-modal .modal-title {
        font-size: 22px;
    }
    
    .nickname-input {
        font-size: 14px;
        padding: 14px 16px;
    }
}

/* ===== PHONE MODAL STYLES ===== */
/* Overlay com fundo escuro */
.phone-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.phone-modal .modal-content {
    width: 530px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-modal-content {
    padding: 0;
}

.phone-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

.phone-modal .modal-logo {
    height: 20px;
    width: auto;
}

.phone-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.phone-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.phone-progress-bar {
    position: relative;
    margin-bottom: 25px;
}

.progress-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-line.full::after {
    width: 100%;
}

.progress-step {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

.phone-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.phone-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.modal-subtitle-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.phone-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.phone-country-select {
    width: 100px;
    padding: 16px 12px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-country-select:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
}

.phone-country-select option {
    background: #001134;
    color: #ffffff;
}

.phone-input-modal {
    flex: 1;
    padding: 16px 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.phone-input-modal::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-input-modal:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.phone-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-continue-phone {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-continue-phone:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Phone Step Container */
.phone-step {
    animation: fadeIn 0.3s ease;
}

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

/* Verification Phone Display */
.verification-phone-display {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0 16px 0;
}

.verification-instruction {
    margin-top: 12px !important;
}

/* Verification Code Input */
.verification-code-container {
    margin-bottom: 30px;
}

.verification-code-input {
    width: 100%;
    padding: 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.verification-code-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 12px;
}

.verification-code-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Verification Actions */
.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-change-phone {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-change-phone:hover {
    color: #ffffff;
}

.btn-resend-code {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-resend-code:not(:disabled) {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    text-decoration: underline;
}

.btn-resend-code:not(:disabled):hover {
    color: #ffffff;
}

/* Phone Modal Responsive */
@media (max-width: 768px) {
    .phone-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .phone-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .phone-modal-actions {
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-continue-phone {
        width: 100%;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .phone-country-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .phone-modal .modal-title {
        font-size: 22px;
    }
    
    .phone-input-modal,
    .phone-country-select {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .verification-code-input {
        font-size: 24px;
        letter-spacing: 6px;
        padding: 16px;
    }
    
    .modal-subtitle-phone {
        font-size: 13px;
    }
}

/* ===== CONTACT MODAL STYLES ===== */
/* Overlay com fundo escuro */
.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.contact-modal .modal-content {
    width: 480px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-modal-content {
    padding: 0;
}

.contact-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.contact-modal .modal-logo {
    height: 20px;
    width: auto;
}

.contact-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.contact-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.contact-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.contact-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-modal .modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.modal-subtitle-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

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

.message-input-wrapper {
    position: relative;
}

.contact-message-input {
    width: 100%;
    padding: 16px 20px;
    padding-bottom: 45px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-message-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-message-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.message-actions {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send-message {
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.8);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-2px);
}

.char-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.contact-divider {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(10, 31, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-btn:hover {
    background: rgba(10, 31, 94, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contact-social-btn.discord:hover {
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.contact-social-btn.telegram:hover {
    box-shadow: 0 4px 12px rgba(34, 139, 230, 0.4);
}

.contact-social-btn.whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Contact Modal Responsive */
@media (max-width: 768px) {
    .contact-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .contact-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .contact-social-icons {
        gap: 15px;
    }
    
    .contact-social-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-modal .modal-title {
        font-size: 22px;
    }
    
    .contact-message-input {
        font-size: 14px;
        padding: 14px 16px;
        padding-bottom: 45px;
        min-height: 100px;
    }
    
    .modal-subtitle-contact {
        font-size: 13px;
    }
}

/* ===== MEMBERSHIP PLANS PAGE STYLES ===== */

.plans-page {
    padding: 40px 40px 100px 40px !important;
    align-items: flex-start !important;
}

.plans-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 12px;
    padding: 60px 50px;
    background: rgba(5, 20, 60, 0.2);
}

.plans-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.plans-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

/* Plan Toggle */
.plan-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 12px;
    background: rgba(5, 20, 60, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 8px;
    padding: 4px;
}

.toggle-btn {
    padding: 10px 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: rgba(20, 50, 120, 0.8);
    color: #ffffff;
}

.toggle-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.7);
}

.save-notice {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 50px 0;
    font-weight: 500;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 50px;
}

/* Plan Card */
.plan-card {
    background: rgba(0, 17, 52, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card > *:not(.popular-badge):not(.plan-top-section) {
    order: 3;
}

.plan-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    order: 1;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
    background: rgba(0, 17, 52, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 52px rgba(23, 87, 216, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 4px;
    transform: translateY(-20px);
    margin: 0 24px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFDE21;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
}

.popular-badge::before {
    content: '';
    position: absolute;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 8px solid #FFDE21;
}

.popular-badge::after {
    content: '';
    position: absolute;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 8px solid #FFDE21;
}

/* Plan Header */
.plan-header {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 1px;
    font-style: italic;
    text-align: left;
}

.plan-name.gold {
    background: linear-gradient(79.67deg, #DB8833 31.96%, #FFE784 46.48%, #DB8833 61.62%, #DB8833 100.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    text-transform: uppercase;
}

.plan-name.diamond {
    background: linear-gradient(135deg, #B9F2FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 4px;
    gap: 4px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.plan-savings {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
    font-weight: 700;
    text-align: left;
}

.plan-savings .save-amount {
    color: #FFDE21;
    font-weight: 700;
}

.plan-savings .save-period {
    display: inline;
}

/* Plan Icon */
.plan-icon {
    text-align: right;
    margin: 0;
    flex-shrink: 0;
}

.plan-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    line-height: 1.5;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.plan-features i {
    color: #4CAF50;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 16px;
    flex-shrink: 0;
}

.plan-features strong {
    color: #ffffff;
    font-weight: 600;
}

/* Plan Buttons */
.btn-plan {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.btn-plan:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.btn-plan.gold {
    background: #FFFFFF;
    color: #003399;
    border: none;
    font-weight: 600;
}

.btn-plan.gold:hover {
    background: #f0f0f0;
}

/* Entry Tickets Section */
.entry-tickets {
    background: rgba(0, 17, 52, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 30px;
    align-items: center;
}

.ticket-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ticket-info h3 {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ticket-info h3 strong {
    font-weight: 700;
    color: #ffffff;
}

.ticket-price {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.ticket-price strong {
    font-size: 32px;
    font-weight: 700;
}

.ticket-price span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.ticket-description {
    text-align: left;
}

.ticket-description p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    max-width: 400px;
}

/* Ticket Quantity Controls */
.ticket-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    width: 100px;
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.btn-quantity-down,
.btn-quantity-up {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 30px;
    height: 40px;
    background: rgba(83, 140, 255, 0.77);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quantity-down {
    order: 0;
    transform: scaleY(-1);
}

.btn-quantity-up {
    order: 2;
}

.btn-quantity-down:hover,
.btn-quantity-up:hover {
    background: rgba(83, 140, 255, 0.9);
}

.btn-quantity-down i,
.btn-quantity-up i {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    font-size: 12px;
}

.quantity-display {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(83, 140, 255, 0.77);
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    order: 1;
}

.btn-purchase {
    padding: 12px 24px;
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    color: #003399;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-purchase:hover {
    background: #f0f0f0;
}

/* Plans Comparison Table */
.plans-comparison {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 17, 52, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.comparison-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-align: left;
}

.comparison-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
    text-align: left;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: contents;
}

.header-cell {
    background: rgba(10, 31, 94, 0.8);
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-cell img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-cell.benefits-col {
    text-align: left;
    justify-content: flex-start;
}

.table-row {
    display: contents;
}

.table-row .cell {
    background: rgba(0, 17, 52, 0.4);
    padding: 16px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-row .cell.benefits-col {
    text-align: left;
    justify-content: flex-start;
    font-weight: 400;
}

.table-row:nth-child(even) .cell {
    background: rgba(0, 17, 52, 0.6);
}

.cell .fa-check {
    color: #4CAF50;
    font-size: 18px;
}

.cell .fa-times {
    color: #FF4444;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 17, 52, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.faq-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-align: left;
}

.faq-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
    text-align: left;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(10, 31, 94, 0.6);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Header Ticket Counter and Avatar */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticket-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-counter:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ticket-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ticket-count {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: visible;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.user-avatar > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-avatar .card-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7B3FF2;
    border: 2px solid #0A1628;
    border-radius: 50%;
    padding: 5px;
    z-index: 3;
    transition: all 0.3s ease;
}

.user-avatar .card-icon:hover {
    background: #8E52FF;
    transform: scale(1.1);
}

.user-avatar .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-avatar:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* Plan Confirmation Modal - Classes específicas para evitar conflito */
.plan-confirmation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.plan-confirmation-modal[style*="display: flex"],
.plan-confirmation-modal[style*="display: block"] {
    display: flex !important;
}

.plan-confirmation-content {
    width: 480px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    text-align: center;
    animation: slideDown 0.4s ease;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-confirmation-content .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.plan-confirmation-content .modal-logo {
    height: 20px;
    width: auto;
}

.plan-confirmation-content .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.plan-confirmation-content .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.plan-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-align: center;
}

.plan-modal-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-align: center;
}

.plan-modal-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-align: center;
}

.plan-modal-note strong {
    color: #FFFFFF;
    font-weight: 700;
}

.plan-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn-plan-confirm {
    padding: 14px 40px;
    background: #0066FF;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan-confirm:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.btn-plan-cancel {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.plan-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.plan-modal-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.plan-modal-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.plan-modal-note strong {
    color: #FFFFFF;
    font-weight: 700;
}

.plan-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-plan-confirm {
    padding: 14px 40px;
    background: #0066FF;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan-confirm:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.btn-plan-cancel {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .plan-card.popular {
        order: -1;
    }

    .entry-tickets {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .ticket-icon {
        margin: 0 auto;
    }

    .ticket-description {
        text-align: center;
    }

    .ticket-description p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .plans-page {
        padding: 30px 20px 80px 20px !important;
    }

    .plans-title {
        font-size: 36px;
    }

    .plans-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .plan-toggle {
        gap: 8px;
    }

    .toggle-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .plan-card {
        padding: 28px 24px;
    }

    .plan-price .amount {
        font-size: 48px;
    }

    .entry-tickets {
        padding: 30px 20px;
    }

    .btn-purchase {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .plans-title {
        font-size: 28px;
    }

    .plans-subtitle {
        font-size: 14px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price .amount {
        font-size: 40px;
    }

    .plan-icon img {
        width: 60px;
        height: 60px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .ticket-info h3 {
        font-size: 18px;
    }

    .ticket-price strong {
        font-size: 28px;
    }
}
