/* Static Pages Styles (For Ladies/Gentlemen/Legal) */

.hero {
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1), transparent), linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, #C9A0DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #C9A0DC 0%, #AA8B2F 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 160, 220, 0.3);
}

.features {
    padding: 5rem 0;
    background: var(--secondary-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.feature-card h3 {
    color: #C9A0DC;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Section specific helper */
.footer-cta-container {
    text-align: center;
    padding: 5rem 0;
}

.footer-cta-title {
    color: white;
    margin-bottom: 2rem;
}

/* ==========================================================================
   CATALOG PREVIEW STYLES (From catalog_preview.html)
   ========================================================================== */
.catalog-hero-section {
    padding: 140px 1rem 4rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(212, 175, 55, 0.05) 100%);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.catalog-hero-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.catalog-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.catalog-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.new-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: center;
}

.profile-card-hero {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    display: block;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.profile-card-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.2);
}

.profile-hero-image-wrapper {
    aspect-ratio: 3/4;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.profile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card-hero:hover .profile-hero-image {
    transform: scale(1.05);
}

.profile-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    color: #fff;
    text-align: left;
}

.profile-hero-name {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.profile-hero-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.catalog-hero-cta {
    margin-top: 3rem;
}

.btn-hero-catalog {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-catalog:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .new-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .profile-card-hero {
        max-width: none;
    }

    .profile-hero-name {
        font-size: 1rem;
    }
}

/* ==========================================================================
   LEGAL PAGES STYLES (Terms, Privacy, FAQs)
   ========================================================================== */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    color: var(--text-light);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
}

.legal-content p,
.legal-content ul {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
}

/* FAQ Specifics */
.faq-item {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ddd;
    line-height: 1.6;
}


.profile-hero-placeholder {
    width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================================
   HOME PAGE SPECIFIC STYLES (From home.html)
   ========================================================================== */
.available-banner {
    text-align: center;
    padding: 1rem 0;
    background: var(--secondary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.available-text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.available-flags {
    margin: 0 15px;
    font-size: 1.4rem;
    vertical-align: middle;
}

.section-dark {
    background: var(--secondary-dark);
    margin: 0;
    padding: 100px 2rem;
    max-width: 100%;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-ladies-preview {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    margin: 0;
    padding: 100px 2rem;
    max-width: 100%;
}

.center-text-margin {
    text-align: center;
    margin-top: 3rem;
}

.cta-buttons-center {
    justify-content: center;
}

.btn-primary-white {
    background: white;
    color: #667eea;
}


/* ==========================================================================
   SUBSCRIPTION PLANS STYLES (From plans.html)
   ========================================================================== */
.plans-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
    text-align: center;
}

.plans-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.plan-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.plan-card.featured {
    border: 1px solid var(--primary-gold);
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(0, 0, 0, 0.95));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
    z-index: 10;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-duration {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    width: 100%;
}

.plan-features li.disabled-feature {
    opacity: 0.5;
    text-decoration: line-through;
}

.plan-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.check-icon {
    color: #4cd137;
    margin-right: 10px;
    font-weight: bold;
}

.btn-select-plan {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid var(--primary-gold);
}

.btn-select-plan.primary {
    background: var(--primary-gold);
    color: #000;
}

.btn-select-plan.primary:hover {
    background: #fff;
    border-color: #fff;
}

.btn-select-plan.outline {
    background: transparent;
    color: var(--primary-gold);
}

.btn-select-plan.outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.current-plan-msg {
    background: rgba(76, 209, 55, 0.2);
    color: #4cd137;
    padding: 1rem;
    border-radius: 12px;
    margin-top: auto;
    font-weight: 600;
    border: 1px solid #4cd137;
}

@media (max-width: 768px) {
    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* ==========================================================================
   CHECKOUT STYLES (From checkout.html)
   ========================================================================== */
.checkout-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.form-section {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-title {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.invoice-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.billing-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
}

.summary-card {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--primary-gold);
}

.summary-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.summary-row-value {
    color: #fff;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.btn-pay {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: transform 0.2s;
}

.btn-pay:hover {
    transform: translateY(-2px);
}

.payment-methods {
    margin-top: 2rem;
}

.payment-option {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-option.selected {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.payment-option input {
    accent-color: var(--primary-gold);
}

.checkout-disclaimer {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
}

/* Discount section styles */
.discount-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Desktop: horizontal layout */
@media (min-width: 600px) {
    .discount-input-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .discount-input-wrapper input {
        flex: 1;
    }
    
    .discount-input-wrapper button {
        width: auto !important;
        padding: 12px 25px !important;
    }
}


@media (max-width: 900px) {
    .checkout-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        /* Fallback */
        margin-top: 140px;
        /* More space for header */
        padding-top: 20px;
    }

    .form-section {
        order: 1;
        /* Billing First */
    }

    .summary-card {
        order: 2;
        /* Summary Second */
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    /* Hero Fix for Mobile in Static Pages */
    .hero {
        display: block !important;
        /* Disable flex centering */
        height: auto !important;
        min-height: auto !important;
        padding-top: 150px !important;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }

    .hero-container {
        display: block !important;
        padding: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 0;
    }

    .feature-grid,
    .legal-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


/* ==========================================================================
   SCHEDULE DATE STYLES (From schedule_date.html)
   ========================================================================== */
.schedule-container {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.schedule-title {
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.schedule-card {
    padding: 2rem;
}

.card-title-schedule {
    margin-bottom: 1rem;
}

.day-heading {
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.day-heading i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.btn-check-custom {
    display: none;
}

.btn-slot {
    display: block;
    width: 100%;
    padding: 8px 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-slot:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-check-custom:checked+.btn-slot {
    background-color: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    font-weight: bold;
    transform: translateY(-2px);
}

.shadow-gold {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s;
}

.shadow-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.alert-info-schedule {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    color: #3498db;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.alert-info-schedule i {
    font-size: 1.2em;
    margin-top: 2px;
}

.alert-info-schedule ul {
    margin: 5px 0 0 20px;
    padding: 0;
    font-size: 0.9em;
}

.btn-price-badge {
    margin-left: 8px;
    opacity: 0.8;
    font-size: 0.9em;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: var(--text-light);
}


/* ==========================================================================
   PAYMENT SUCCESS STYLES (From payment_success.html)
   ========================================================================== */
.payment-success-container {
    padding-top: 120px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.success-card {
    background: #1a1a2e;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message {
    margin-top: 1rem;
    color: #eee;
    font-size: 1.1rem;
}

.success-message strong {
    color: var(--primary-gold);
}

.success-submessage {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-box {
    background: rgba(46, 204, 113, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid #2ecc71;
    position: relative;
    overflow: hidden;
}

.contact-label {
    color: #aaa;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-number {
    color: white;
    font-size: 2.2rem;
    margin: 0.5rem 0;
    font-family: monospace;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.validation-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px dashed var(--primary-gold);
}

.validation-label {
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.validation-code {
    color: white;
    font-size: 3.5rem;
    margin: 10px 0;
    font-family: monospace;
    letter-spacing: 5px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.validation-warning {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.recommendations-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recommendations-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.recommendations-list {
    color: #ccc;
    padding-left: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.btn-dashboard-return {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 3rem;
}

.btn-dashboard-return:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
}


/* ==========================================================================
   PAYMENT PROCESS STYLES (From process.html)
   ========================================================================== */
.payment-wrapper {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-header-section {
    margin-bottom: 2rem;
}

.amount-display {
    font-size: 3rem;
    font-weight: 800;
    color: #D4AF37;
    margin: 0.5rem 0;
    line-height: 1;
}

.text-secondary-sm {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-container {
    margin-top: 1rem;
}

.badge-gold {
    background-color: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #D4AF37;
}

.methods-container {
    margin-top: 2rem;
}

.method-group {
    margin-bottom: 1.5rem;
}

.method-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.method-card:hover {
    background: #1a1a1a;
}

.method-card.active {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.card-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.card-icon img,
.card-icon span {
    width: 40px;
    height: auto;
    display: block;
}

.method-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.method-content.show {
    display: block;
}

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

.btn-action {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
}

.btn-gold {
    background-color: #D4AF37;
    color: #000;
    border: none;
}

.btn-gold:hover {
    background-color: #c4a036;
}

.transfer-form {
    margin-top: 1.5rem;
}

.form-input {
    width: 100%;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #D4AF37;
}

.file-upload-wrapper {
    position: relative;
}

.file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-label {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
}

.btn-tiny {
    background: #222;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.alert-simple {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #aaa;
}

.bank-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.bank-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bank-card:hover {
    border-color: #666;
    background: #222;
}

.bank-card.selected {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.bank-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2rem;
}

.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.bank-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.bank-name {
    font-weight: bold;
    color: #D4AF37;
    font-size: 1.1rem;
}

.bank-details {
    font-size: 0.9rem;
    color: #ccc;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    align-items: center;
}

.detail-row .label {
    color: #888;
}

.value-group {
    display: flex;
    align-items: center;
}

.detail-row .value {
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.detail-row .value.highlight {
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
}

.copy-btn {
    margin-left: 8px;
    cursor: pointer;
    opacity: 0.7;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-actions {
    margin-top: 3rem;
    text-align: center;
}

.footer-actions a {
    color: #666;
    text-decoration: none;
}

.footer-actions a:hover {
    color: var(--primary-gold);
}

.bank-error {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer-link {
    color: #666;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-gold);
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-gold {
    color: var(--primary-gold);
}

.placeholder-icon {
    font-size: 2rem;
    opacity: 0.5;
}