:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --background-color: #f8fafc;
  --text-color: #1e293b;
  --border-color: #e2e8f0;
  --success-color: #22c55e;
  --error-color: #ef4444;
}

/* Base Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Site Header & Nav */
.site-header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-color);
}
.user-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}
.nav-link:hover {
  background-color: var(--background-color);
}
.balance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  color: var(--text-color);
}
.balance i {
  color: #fbbf24;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* Video Card */
.video-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Thumbnail + Play Overlay */
.thumbnail-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio container */
  background: #000;
}
.thumbnail-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.thumbnail-wrapper:hover .play-overlay {
  opacity: 1;
}

/* Video Details */
.video-details {
  padding: 1rem;
}
.video-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text-color);
}
.credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 1000px;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  width: 2rem; height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  margin-top: 1rem;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Message Styles */
.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.message-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

/* Auth Pages (Login/Register) */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: -2rem;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-card h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: var(--background-color);
}

.auth-form input:focus {
    border-color: var(--primary-color);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.auth-form input::placeholder {
    color: #94a3b8;
}

.auth-form button {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.auth-form button:hover {
    background-color: var(--secondary-color);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Auth Page Messages */
.auth-card .message {
    margin: -0.5rem 0 1.5rem 0;
}

/* Responsive adjustments for auth pages */
@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 0.75rem;
    }
    
    .auth-container {
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
  .header-content { flex-direction: column; gap: 1rem; text-align: center; }
  .video-grid { grid-template-columns: 1fr; }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 1rem;
    margin: 2rem 0;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Video Preview Section */
.video-preview {
    padding: 2rem 0;
}

.video-preview .video-card {
    position: relative;
}

.video-preview .play-overlay.locked {
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.7);
    cursor: not-allowed;
}

.video-preview .play-overlay.locked i {
    font-size: 1.5rem;
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-header h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
        margin: 1rem 0;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .preview-header h3 {
        font-size: 1.5rem;
    }
}

/* Landing Page Nav */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.landing-nav .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.landing-nav .nav-links {
    display: flex;
    gap: 1rem;
}

/* Feature Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Credits Section Styles */
.credits-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.credits-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.current-balance {
    text-align: center;
    margin-bottom: 3rem;
}

.current-balance h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.current-balance .balance {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.package-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.package-card:hover {
    transform: translateY(-2px);
}

.package-details h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.package-details .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .credits-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .package-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* Wallet Section Styles */
.wallet-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.wallet-summary {
    margin-bottom: 3rem;
}

.wallet-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.balance-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.balance-label {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.8;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.balance-amount i {
    color: #fbbf24;
}

/* Transactions Section */
.transactions-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.transactions-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.transaction-type {
    font-weight: 500;
    color: var(--text-color);
}

.transaction-date {
    font-size: 0.875rem;
    color: var (--text-color);
    opacity: 0.7;
}

.transaction-amount {
    font-weight: 500;
}

.transaction-amount.credit {
    color: #10b981;
}

.transaction-amount.debit {
    color: #ef4444;
}

.no-transactions {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .wallet-section {
        margin: 1rem;
        padding: 1rem;
    }

    .balance-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .balance-info {
        align-items: center;
    }
}

/* Info Section */
.info-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.info-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.info-list i {
    color: var(--primary-color);
}

.savings-info {
    background: #ecfdf5;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #a7f3d0;
}


.savings-info p {
    color: #065f46;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.savings-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.savings-info li {
    color: #047857;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .info-section {
        padding: 1rem;
    }
    
    .savings-info ul {
        grid-template-columns: 1fr;
    }
}
/* Payment Modal Styles */
.payment-methods {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-method {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.payment-method.recommended {
    background: #ecfdf5;
    border-color: #a7f3d0;
    position: relative;
}

.payment-method.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.payment-method h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.payment-method i {
    color: var(--primary-color);
}

.payment-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.btc-address {
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.875rem;
}

.btc-address.copied {
    background: #dcfce7;
}

.discount-note {
    color: #059669;
    font-weight: 500;
    margin-top: 0.5rem;
}

.payment-instructions {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #fcd34d;
    margin-top: 2rem;
}

.payment-instructions h4 {
    color: #92400e;
    margin-bottom: 1rem;
}

.payment-instructions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-instructions li {
    color: #92400e;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment-instructions li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #92400e;
}

.selected-package {
    text-align: center;
    font-weight: 500;
    margin: 1rem 0;
    color: var(--text-color);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.method-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.payment-details.hidden {
    display: none;
}

.address-box {
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.proof-upload {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upload-form input[type="file"] {
    padding: 0.5rem;
    border: 1px dashed var(--border-color);
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-method {
        padding: 1rem;
    }
    
    .btc-address {
        font-size: 0.75rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.close-modal:hover {
    background-color: var(--border-color);
}

.modal h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.payment-methods {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
    }

    .payment-methods {
        gap: 0.75rem;
    }

    .payment-method {
        padding: 1rem;
    }
}

/* Fix for iOS Safari scrolling */
@supports (-webkit-touch-callout: none) {
    .modal {
        -webkit-overflow-scrolling: touch;
    }
}
/* Pending Transactions Styles */
.transactions-section.pending {
    margin-bottom: 2rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
}

.transaction-item.pending {
    background: rgba(251, 191, 36, 0.1);
}

.pending-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

.transaction-amount.pending {
    color: #b45309;
}

.pending-amount {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .transaction-item.pending {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .transaction-amount.pending {
        text-align: left;
    }
    
    .pending-amount {
        text-align: left;
        display: inline;
        margin-left: 0.5rem;
    }
}
/* Admin Transactions Styles */
.admin-transactions {
    padding: 2rem 0;
}

.admin-transactions h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.transactions-table {
    overflow-x: auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.transactions-table table {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th,
.transactions-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.transactions-table th {
    background: #f8fafc;
    font-weight: 500;
}

.btn-success {
    background-color: #10b981;
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.completed-section {
    margin-top: 3rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .transactions-table {
        font-size: 0.875rem;
    }
    
    .transactions-table th,
    .transactions-table td {
        padding: 0.75rem;
    }
}
/* Admin Payment Methods Styles */
.admin-payment-methods {
    padding: 2rem 0;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.payment-method-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-method-card.inactive {
    opacity: 0.7;
    background: #f1f5f9;
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.recommended-badge {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.method-details {
    margin-bottom: 1.5rem;
}

.method-details p {
    margin-bottom: 0.5rem;
}

.method-actions {
    display: flex;
    gap: 0.5rem;
}

.inline-form {
    display: inline;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-actions {
        flex-direction: column;
    }
    
    .method-actions .btn {
        width: 100%;
    }
}

/* Additional Payment Method Styles */
.method-instructions {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.recommended-tag {
    font-size: 0.75rem;
    color: #059669;
    margin-left: 0.5rem;
    font-weight: normal;
}

.file-upload {
    margin: 1rem 0;
}

.file-upload label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--background-color);
    border: 1px dashed var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload label:hover {
    background: var(--border-color);
}

.file-upload .file-input {
    display: none;
}

.method-header i.fa-chevron-down {
    transition: transform 0.2s ease;
}

.payment-method.recommended {
    border: 1px solid #059669;
}
.support-button {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-support {
    background-color: #0088cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-support:hover {
    background-color: #006699;
}

.btn-support i {
    font-size: 1.25rem;
}