/* Pageantry Sponsor & Support - Main Stylesheet */

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

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #d4af37, #b8941f);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    width: auto;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Search Section */
.search-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
}

.search-card h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.search-card p {
    margin-bottom: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* File input styling */
.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--border-color);
    background: #f8f9fa;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.form-group input[type="file"]:focus {
    border-style: solid;
    border-color: var(--primary-color);
}

/* Required field indicator */
.form-group label:after {
    content: '';
}

.form-group label[for]:has(+ input[required]):after,
.form-group label[for]:has(+ select[required]):after,
.form-group label[for]:has(+ textarea[required]):after {
    content: ' *';
    color: var(--danger-color);
    font-weight: bold;
}

/* iTunes fields special styling */
#itunes_fields {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

#itunes_fields.show {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#itunes_fields label {
    color: var(--dark-color);
    font-weight: 600;
}

#itunes_fields input {
    background: white;
    border: 2px solid #dee2e6;
}

#itunes_fields input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Payment Method Details */
.payment-method-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.payment-method-details.show {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.method-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-info > p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.method-instructions,
.method-account {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.method-instructions h5,
.method-account h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-instructions p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

.method-account .account-details {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    margin: 0;
    font-size: 0.9rem;
    word-break: break-all;
}

.method-limits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.limit-item {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.limit-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.limit-item span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.itunes-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Label with icons */
.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Enhanced form styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: transparent;
}

/* Payment method select styling */
.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

/* Success/Error message styling */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    font-weight: 500;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border-left-color: var(--success-color);
    color: #155724;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: var(--danger-color);
    color: #721c24;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-form input {
    background: #f8f9fa;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-error {
    background: #fee;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--dark-color);
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contestant Profile */
.main-content {
    margin-top: 5rem;
    padding: 2rem 0;
}

.contestant-profile {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.default-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    border: 4px solid var(--primary-color);
}

.profile-info h1 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contestant-code {
    font-family: monospace;
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    min-width: 120px;
    flex: 1;
    max-width: 200px;
}

.stat i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Star Progress Bar ⭐️ */
.vote-progress-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.vote-progress-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vote-progress-section h3::before {
    content: '⭐️';
    font-size: 1.5rem;
}

.progress-bar-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 35px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #55efc4);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
    border-radius: 15px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.progress-text .percentage {
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: 700;
}

.progress-description {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Investment Plans Styling */
.support-section {
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.support-section h2 {
    text-align: center;
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Compact Action Buttons */
.compact-action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
    position: relative;
}

.btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-compact i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.btn-support-compact {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-support-compact:hover {
    background: #fff5f5;
    border-color: #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.btn-sponsor-compact {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-sponsor-compact:hover {
    background: #fffef7;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-label {
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
}

.btn-price {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-badge {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-badge i {
    font-size: 0.9rem;
    color: #000;
}

/* Plan Modal Styling */
.plan-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.plan-detail-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.plan-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-detail-icon.support-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.plan-detail-icon.sponsor-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.plan-detail-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.plan-detail-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1.5rem 0;
}

.plan-detail-price .price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.plan-detail-price .price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.plan-detail-price .price-period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.plan-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.plan-detail-description {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.plan-detail-description p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

.plan-detail-features {
    margin: 2rem 0;
}

.plan-detail-features h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.plan-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-detail-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-detail-features li:last-child {
    border-bottom: none;
}

.plan-detail-features li i {
    color: var(--success-color);
    font-size: 1rem;
}

.plan-detail-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.btn-proceed-payment {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Sponsorship Tiers Detailed */
.sponsorship-tiers-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sponsor-tier-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sponsor-tier-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-tier-card.selected {
    border-color: var(--primary-color);
    background: #fffef7;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.sponsor-tier-card.tier-featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.sponsor-tier-card.tier-elite {
    border-color: #667eea;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tier-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-bronze {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: white;
}

.tier-silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.tier-gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.tier-platinum {
    background: linear-gradient(135deg, #e5e4e2, #c0c0c0);
    color: #333;
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f) !important;
    color: white !important;
    animation: pulse 2s infinite;
}

.tier-range {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

.tier-profit-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.tier-features-list {
    margin-top: 1rem;
}

.tier-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.tier-features-list li i {
    color: var(--success-color);
    font-size: 0.85rem;
}

/* Investment Plans Details (Collapsible) */
.investment-plans-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.support-plan-info,
.sponsorship-plans-info {
    margin-bottom: 1.5rem;
}

.support-plan-info:last-child,
.sponsorship-plans-info:last-child {
    margin-bottom: 0;
}

.support-plan-info h4,
.sponsorship-plans-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-plan-info h4 i {
    color: #e74c3c;
}

.sponsorship-plans-info h4 i {
    color: var(--primary-color);
}

.sponsorship-tiers-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tier-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.tier-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.tier-range {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.tier-profit {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Support Plan Section */
.support-plan-section {
    margin-bottom: 4rem;
}

.support-plan-single {
    max-width: 500px;
    margin: 0 auto;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.powered-by i {
    color: #000;
    font-size: 1.2rem;
}

/* Sponsorship Plans Section */
.sponsorship-plans-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f0f0f0;
}

.sponsorship-title {
    text-align: center;
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sponsorship-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

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

.investment-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.investment-plan {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.investment-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.investment-plan:hover::before {
    transform: scaleX(1);
}

.investment-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.investment-plan.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

.investment-plan.featured::before {
    transform: scaleX(1);
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #f4d03f, var(--primary-dark));
}

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

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: var(--text-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

.plan-badge.elite {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
    animation: eliteGlow 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes eliteGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7), 0 0 20px rgba(102, 126, 234, 0.3);
    }
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
}

.investment-plan.featured .plan-icon {
    background: linear-gradient(135deg, #f4d03f, var(--primary-color), var(--primary-dark));
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.plan-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: baseline;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.investment-plan.featured .price-amount {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.25rem;
}

/* Price Range for Sponsorship Tiers */
.plan-price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.price-range {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.profit-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Tier-Specific Styling */
.sponsorship-tier.tier-1 .plan-icon {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3);
}

.sponsorship-tier.tier-2 .plan-icon {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.sponsorship-tier.tier-3 .plan-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.sponsorship-tier.tier-4 .plan-icon {
    background: linear-gradient(135deg, #e5e4e2, #c0c0c0, #999);
    box-shadow: 0 15px 40px rgba(229, 228, 226, 0.5);
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(229, 228, 226, 0.5);
    }
    50% {
        box-shadow: 0 15px 50px rgba(229, 228, 226, 0.7), 0 0 30px rgba(229, 228, 226, 0.4);
    }
}

.sponsorship-tier.tier-1 {
    border-top: 4px solid #cd7f32;
}

.sponsorship-tier.tier-2 {
    border-top: 4px solid #c0c0c0;
}

.sponsorship-tier.tier-3 {
    border-top: 4px solid #ffd700;
}

.sponsorship-tier.tier-4 {
    border-top: 4px solid #e5e4e2;
}

.plan-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.plan-features {
    flex: 1;
    margin: 2rem 0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.plan-features li i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.investment-plan.featured .plan-features li i {
    color: var(--primary-color);
}

.plan-cta {
    margin-top: auto;
    padding-top: 2rem;
}

.btn-invest {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-invest::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-invest:hover::before {
    width: 300px;
    height: 300px;
}

.btn-support {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    color: white;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

.btn-support:hover {
    background: linear-gradient(135deg, #34495e, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
}

.btn-sponsor {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    color: white;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.btn-sponsor:hover {
    background: linear-gradient(135deg, #f4d03f, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Support Options (Legacy - keeping for backwards compatibility) */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-option {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
}

.close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--dark-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.modal-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.close:hover {
    color: var(--dark-color);
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    background: white;
}

.modal-body .form-group:last-of-type {
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.form-actions .btn {
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 4rem 0;
}

.error-content i {
    font-size: 4rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.error-content h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .stat {
        max-width: 100%;
        min-width: auto;
        width: 100%;
        padding: 1.25rem;
    }
    
    .nav {
        display: none;
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .investment-plans {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .sponsorship-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .investment-plan.featured {
        transform: scale(1);
    }
    
    .investment-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .sponsorship-tier.featured {
        transform: scale(1);
    }
    
    .sponsorship-tier.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-price {
        margin: 1rem 0;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-range {
        font-size: 1.2rem;
    }
    
    .plan-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .support-section h2 {
        font-size: 1.75rem;
    }
    
    .compact-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-compact {
        width: 100%;
        min-width: auto;
    }
    
    .sponsorship-tiers-compact {
        grid-template-columns: 1fr;
    }
    
    .sponsorship-tiers-detailed {
        grid-template-columns: 1fr;
    }
    
    .plan-detail-price .price-amount {
        font-size: 2rem;
    }
    
    .sponsorship-title {
        font-size: 1.75rem;
    }
    
    .support-plan-single {
        max-width: 100%;
    }
    
    .plan-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    #itunes_fields {
        padding: 1rem;
    }

    .itunes-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-section {
        padding: 6rem 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .search-section {
        padding: 1.5rem;
    }
    
    .contestant-profile {
        padding: 1.5rem;
    }
}

/* Contestants Page Styles */
.contestants-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.contestants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.contestant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contestant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contestant-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.contestant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.default-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="35" r="20" fill="rgba(255,255,255,0.2)"/><path d="M20 80 Q50 60 80 80" fill="rgba(255,255,255,0.2)"/></svg>') center/cover;
    opacity: 0.3;
}

.contestant-info {
    padding: 20px;
}

.contestant-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contestant-bio {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contestant-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary-color);
}

.contestant-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contestant-code {
    color: var(--text-color);
    font-size: 0.8rem;
}

.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-content p {
    color: var(--text-color);
    font-size: 1rem;
}

.no-contestants {
    text-align: center;
    padding: 60px 20px;
}

.no-contestants-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-contestants h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-contestants p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Search Functionality */
.search-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.contestant-search-form {
    margin-bottom: 1rem;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.search-input-group .form-group {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

.search-input-group .btn {
    height: fit-content;
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
}

.search-results-info {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.search-results-info p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 500;
}

.result-count {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced search button */
.btn-search {
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-search:hover::before {
    left: 100%;
}

/* Search input enhancements */
.search-form .input-group input {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.search-form .input-group input:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Payment Settings Styles */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.setting-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.setting-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.setting-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.setting-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
}

.setting-info {
    flex: 1;
}

.setting-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.setting-method {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.setting-status {
    margin-left: auto;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.enabled {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.status-badge.disabled {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.setting-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    margin-bottom: 1rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.detail-row p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

.account-details {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.setting-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .setting-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .setting-status {
        margin-left: 0;
    }
    
    .setting-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Homepage Styles */

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.fixed-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="crowns" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><text x="50" y="50" text-anchor="middle" fill="rgba(255,255,255,0.05)" font-size="40">♔</text></pattern></defs><rect width="100%" height="100%" fill="url(%23crowns)"/></svg>');
    background-size: 200px 200px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Search Section - Immediately Visible */
.search-section {
    background: white;
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.search-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Quick Actions */
.quick-actions {
    padding: 4rem 0;
    background: #f8f9fa;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.action-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.action-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Recent Contestants */
.recent-contestants {
    padding: 4rem 0;
    background: white;
}

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

.contestant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contestant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contestant-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.contestant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contestant-card:hover .contestant-image img {
    transform: scale(1.05);
}

.contestant-info {
    padding: 1.5rem;
}

.contestant-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contestant-code {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contestant-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contestant-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contestant-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contestant-stats .stat i {
    color: var(--primary-color);
}

/* Enhanced Statistics */
.stats-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-content .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enhanced Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .actions-grid,
    .contestants-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-card {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
}

/* Enhanced Payment Form Styles */

.payment-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.payment-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.payment-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23payment-dots)"/></svg>');
    opacity: 0.3;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-text h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.header-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.payment-body {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.section-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.payment-method-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.method-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.method-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.method-selector {
    position: relative;
}

.method-selector input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.method-selector label {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.method-selector input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.method-selector input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.amount-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.amount-input-group input {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    flex: 1;
    padding: 0;
}

.amount-input-group input:focus {
    outline: none;
    box-shadow: none;
}

.amount-presets {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.preset-btn {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--secondary-color);
}

.preset-btn:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

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

.upload-placeholder {
    border: 2px dashed rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.upload-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.upload-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.upload-placeholder p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.upload-placeholder small {
    color: var(--text-light);
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.file-preview i {
    color: var(--success-color);
    font-size: 1.5rem;
}

.file-name {
    flex: 1;
    font-weight: 600;
    color: var(--success-color);
}

.remove-file {
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-details {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.details-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.details-header h4 {
    margin: 0;
    font-size: 1rem;
}

.details-content {
    display: grid;
    gap: 1rem;
}

.detail-item {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.detail-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.itunes-fields {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .payment-modal {
        margin: 2% auto;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .amount-presets {
        justify-content: center;
    }
}
