/* Luxury Gold Theme */
:root {
    --gold: #FFD700;
    --dark: #121212;
}
body.gold-theme {
    background: var(--dark);
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

/* Animated Gold Background */
.gold-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, transparent 70%, rgba(255, 215, 0, 0.1));
    z-index: -1;
}

/* Auth Cards */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, opacity 0.3s;
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo i {
    font-size: 3rem;
    color: var(--gold);
}

.logo h2 {
    margin-top: 10px;
    font-weight: 700;
    color: var(--gold);
}

/* Gold Button */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    display: none;
}

.loading-bar .progress {
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}
/* ===== NEW INPUT FIELD STYLES ===== */
.input-group {
    position: relative;
    margin-bottom: 25px;
  }
  .input-group input, .input-group select {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    color: white !important;
    width: 100%;
  }
  .input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: rgba(255, 215, 0, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .input-group input:focus + label,
  .input-group input:valid + label,
  .input-group select:valid + label {
    top: -15px;
    font-size: 12px;
    color: var(--gold);
  }
  
  /* For dropdown arrow color */
  .form-select {
    background-image: url("data:image/svg+xml,%3csvg...") !important;
    background-color: transparent !important;
  }
  .input-group.error input {
    border-color: #ff3860;
  }
  .input-group .error-message {
    color: #ff3860;
    font-size: 12px;
    display: none;
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .success-icon {
    animation: bounce 0.5s;
  }
  

  /* ===== Homepage Styles ===== */
.app-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header */
.app-header {
    padding: 15px;
    background: #1e1e1e;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
}

.stats-card {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stats-card.gold-card {
    border: 1px solid var(--gold);
}

.stats-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stats-card h6 {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stats-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Gold Rates Container */
.gold-rates-container {
    margin-bottom: 20px;
}

.gold-rates-container .row {
    margin: 0 -5px;
}

.gold-rates-container .row > div {
    padding: 0 5px;
    margin-bottom: 10px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: space-around;
    padding: 0 15px 15px;
}

.action-btn {
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-size: 0.8rem;
}

.action-btn i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--gold);
}

/* Social Feed */
.social-feed {
    padding: 15px;
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.post-card {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.post-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.post-header h6 {
    margin: 0;
    font-size: 0.9rem;
}

.post-header p {
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.7;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.post-text {
    margin: 10px 0;
}

.post-actions {
    display: flex;
    justify-content: space-around;
}

.post-actions button {
    background: none;
    border: none;
    color: white;
    opacity: 0.7;
}

.post-actions button:hover {
    opacity: 1;
    color: var(--gold);
}
/* Fix logo visibility in dark mode */
.logo img {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    display: block; /* Ensures image is visible */
    margin: 0 auto 10px; /* Centers logo */
}

/* If using Font Awesome icon */
.logo i.fa-gem {
    font-size: 2.5rem;
    color: var(--gold); /* Gold color for visibility */
    display: block; /* Fix for icon not showing */
}
/* Ensure dark mode applies to all elements */
.dark-mode {
    background: #121212;
    color: #fff;
}

.dark-mode .auth-card,
.dark-mode .stats-card,
.dark-mode .post-card {
    background: #1e1e1e;
    border-color: rgba(255, 215, 0, 0.1);
}
/* Modern Bottom Navbar */
.app-navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: space-around;
    background: #1e1e1e;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #ffd700;
}

.nav-item.active {
    color: var(--gold);
    transform: translateY(-5px);
}

.nav-item.active i {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Add glow effect on active item */
.nav-item.active::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 5px;
}
/* Premium FAB */
.fab {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 1.5rem;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    transition: all 0.3s;
}

.fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}
/* ===== Menu Styles ===== */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #1e1e1e;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    overflow-y: scroll;
}

.side-menu.active {
    right: 0;
}

.menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--gold);
    color: white;
}

.menu-items {
    padding: 15px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.menu-item:hover {
    background: rgba(255,215,0,0.1);
    color: var(--gold);
}

.menu-item i {
    margin-right: 15px;
    width: 20px;
}

.menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 10px 20px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.text-danger {
    color: #ff3860 !important;
}

/* ===== Profile Page Styles ===== */
.profile-header {
    padding: 15px;
    background: linear-gradient(135deg, #1e1e1e, #121212);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    position: relative;
    z-index: 9;
}

.profile-section {
    padding: 20px;
    text-align: center;
}

.profile-pic-container {
    position: relative;
    width: 120px;
    margin: 0 auto 20px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
}

.edit-pic-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
}

.profile-details {
    max-width: 500px;
    margin: 0 auto;
}

.profile-field {
    margin-bottom: 20px;
    text-align: left;
}

.profile-field label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 5px;
}

.profile-field p {
    font-size: 1rem;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px;
}

.profile-stats .stats-card {
    flex: 1;
    max-width: 160px;
}

.transactions-section {
    padding: 0 20px 80px;
}

.section-title {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-card {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.transaction-details {
    flex: 1;
}

.transaction-details h6 {
    margin: 0;
    font-size: 0.9rem;
}

.transaction-details p {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.transaction-amount {
    font-weight: bold;
}
/* ===== About Page Styles ===== */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/about.avif');
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.about-section {
    padding: 40px 0;
}

.about-section h2 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-gold {
    color: var(--gold);
}

/* Milestones */
.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.milestone {
    text-align: center;
    padding: 20px;
    background: rgba(255,215,0,0.1);
    border-radius: 10px;
}

.milestone-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Team */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 15px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px;
}
.bottom-value-card{
    margin-bottom: 7rem;
}
.value-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}
/* ===== Contact Page Styles ===== */
.contact-container {
    padding: 20px;
    padding-bottom: 80px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.contact-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-card h6 {
    margin-bottom: 10px;
    color: var(--gold);
}

.contact-card a, .contact-card p {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,215,0,0.1);
}

.section-title {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* ===== News Page Styles ===== */
.news-container {
    padding: 15px;
    padding-bottom: 80px;
}

.news-filters {
    margin-bottom: 20px;
}

.news-filters .d-flex {
    flex-wrap: wrap;
    gap: 15px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 200px;
}

.search-box {
    display: flex;
    gap: 8px;
    min-width: 200px;
    max-width: 300px;
}

.search-box .form-control {
    flex: 1;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.3);
    background: rgba(30, 30, 30, 0.9);
    color: #ddd;
    padding: 8px 15px;
}

.search-box .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.search-box .btn {
    border-radius: 20px;
    padding: 8px 15px;
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    font-weight: 600;
}

.search-box .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
}

.filter-btn {
    background: #1e1e1e;
    border: 1px solid rgba(255,215,0,0.3);
    color: #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
}

.filter-btn.active {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border-color: var(--gold);
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--gold);
}

.news-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content h5 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.news-date {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: #ddd;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more {
    color: var(--gold);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.read-more i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: all 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 576px) {
    .news-cards {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 150px;
    }
}
/* ===== News Detail Page ===== */
.news-detail-container {
    padding: 20px;
    padding-bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 25px;
    padding-top: 25px;
    position: relative;
}

.news-header h2 {
    margin: 15px 0 10px;
    color: var(--gold);
}

.news-meta {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.news-detail-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 400px;
    object-fit: cover;
}

.news-content {
    line-height: 1.8;
}

.news-content h5 {
    color: var(--gold);
    margin: 25px 0 15px;
}

.news-tags {
    margin-top: 30px;
}

.news-tags span {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Update news cards to be clickable */
.news-card {
    cursor: pointer;
    position: relative;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
/* ===== Events Page Styles ===== */
.events-container {
    padding: 15px;
    padding-bottom: 80px;
}

.event-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 10px;
    scrollbar-width: none;
}

.event-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: #1e1e1e;
    border: 1px solid rgba(255,215,0,0.3);
    color: #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border-color: var(--gold);
}

.events-list {
    display: grid;
    gap: 15px;
}

.event-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 15px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-date {
    background: rgba(255,215,0,0.1);
    border-radius: 8px;
    padding: 10px;
    min-width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.event-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    flex: 1;
}

.event-details h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.event-location {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.event-location i {
    margin-right: 5px;
    color: var(--gold);
}

.event-desc {
    color: #ddd;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-link {
    color: var(--gold);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10rem;
}

@media (max-width: 576px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: max-content;
    }
}
/* ===== Gallery Page Styles ===== */
.gallery-container {
    padding: 15px;
    padding-bottom: 80px;
}

.gallery-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    color: white;
    font-size: 1.5rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Customization */
.lightbox .lb-image {
    border: 3px solid var(--gold);
}

.lb-data .lb-caption {
    font-size: 1rem;
    color: var(--gold);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}
/* ===== Language Page Styles ===== */
.lang-page {
    background: linear-gradient(135deg, #1a1a1a, #000);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Gold Particles */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FFD700"/></svg>') repeat;
    background-size: 20px 20px;
    animation: particleMove 20s linear infinite;
    z-index: 0;
    opacity: 0.3;
}

@keyframes particleMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Language Container */
.lang-container {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.lang-header {
    text-align: center;
    margin-bottom: 30px;
}

.lang-header .logo {
    width: 80px;
    margin-bottom: 15px;
}

.lang-header h2 {
    color: var(--gold);
    margin-bottom: 5px;
}

.lang-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Language Options */
.lang-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lang-option {
    display: flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
    border-color: var(--gold);
}

.lang-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
}

.lang-details form button{
    background: #ffd700;
    color: #000;
    border: none;
    margin-right: 10px;
}
.lang-details {
    flex: 1;
}
.lang-details a{
    text-decoration: none;
}
.lang-details h5 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
}

.lang-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.lang-select {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.lang-option:hover .lang-select {
    color: var(--gold);
    transform: translateX(3px);
}
/* User Type Card */
.user-type-container {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.user-type-header {
    text-align: center;
    margin-bottom: 25px;
}

.user-type-header i {
    font-size: 3rem;
    color: var(--gold);
}

.user-type-header h2 {
    margin: 10px 0 5px;
    color: var(--gold);
}

/* User Type Options */
.user-type-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.user-type-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.user-type-icon {
    margin-right: 15px;
}

.user-type-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.user-type-details h5 {
    margin: 0;
    font-weight: 600;
}

.user-type-details p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.user-type-select {
    margin-left: auto;
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .user-type-container {
        padding: 20px;
        width: 85%;
    }
    
    .user-type-option {
        padding: 12px;
    }
}
/* Help Center - Pro Level */
.help-center-container {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 92%;
    max-width: 450px;
    margin: 30px auto;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    margin-bottom: 6rem;
}

.help-header {
    text-align: center;
    margin-bottom: 25px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    font-size: 2rem;
    color: var(--gold);
}

/* Support Cards */
.support-card {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.support-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.card-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.card-details {
    flex: 1;
}

.card-details h5 {
    margin: 0;
    font-weight: 600;
}

.card-details p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.card-arrow i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    display: none;
    margin-top: 20px;
}

.faq-section h4 {
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 200px;
}

/* Live Chat Popup */
.live-chat-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 90%;
    max-width: 350px;
    background: rgba(30, 30, 30, 0.98);
    border: 1px solid var(--gold);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
    display: none;
    z-index: 1000;
}

.chat-header {
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h5 {
    margin: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: white;
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}
/* Subscription Page Styling */
.subscription-container {
    position: relative;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    max-width: 400px;
    margin: 30px auto;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    text-align: center;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sub-header h2 {
    color: var(--gold);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sub-header p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.sub-price {
    margin: 25px 0;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.price-tag .duration {
    font-size: 1.2rem;
    opacity: 0.8;
}

.billing {
    font-size: 0.9rem;
    margin-top: 5px;
}

.sub-features {
    text-align: left;
    margin: 25px 0;
    padding-left: 10px;
}

.sub-features li {
    margin-bottom: 12px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-features i {
    color: var(--gold);
}

.sub-btn {
    width: 93%;
    padding: 12px;
    font-size: 1.1rem;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.guarantee i {
    color: var(--gold);
}
/* Payment Success Page */
.payment-success-container {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    max-width: 450px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.success-checkmark {
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid #00C853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    color: #00C853;
    font-size: 3rem;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.payment-success-container h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

.success-message {
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-message span {
    color: var(--gold);
    font-weight: 600;
}

.order-summary {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 25px 0;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-item span:first-child {
    opacity: 0.8;
}

.summary-item span:last-child {
    font-weight: 500;
}

.redirect-message {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.redirect-message i {
    color: var(--gold);
}

.redirect-message span {
    color: var(--gold);
    font-weight: bold;
}
/* Payment History Page - Pro Version */
.ph-container {
    background: rgba(30, 30, 30, 0.95);
    width: 95%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.ph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.ph-header h1 {
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-filter {
    display: flex;
    gap: 10px;
}

.gold-select {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    min-width: 150px;
}

.gold-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-btn.small {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.gold-btn.outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* Transaction Table */
.transaction-table {
    margin: 25px 0;
}

.t-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    gap: 10px;
}

.t-header {
    font-weight: 600;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
}

.t-date {
    line-height: 1.3;
}

.time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.txn-id {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--gold);
}

.payment-mode {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.amount {
    font-weight: 600;
}

/* Status Badges */
.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.success-badge {
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
}

.refund-badge {
    background: rgba(255, 61, 0, 0.15);
    color: #FF3D00;
}

.failed-badge {
    background: rgba(244, 67, 54, 0.15);
    color: #F44336;
}

/* View More */
.view-more {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .t-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "date status"
            "txn amount"
            "mode mode";
        padding: 15px;
        gap: 12px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .t-header {
        display: none;
    }

    .t-date { grid-area: date; }
    .txn-id { grid-area: txn; }
    .payment-mode { grid-area: mode; }
    .amount { grid-area: amount; }
    .status { grid-area: status; text-align: right; }
}
/* Upload Page Styling */
.upload-container {
    background: rgba(30, 30, 30, 0.95);
    width: 95%;
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.upload-header {
    text-align: center;
    margin-bottom: 25px;
}

.upload-header h1 {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.upload-header p {
    opacity: 0.8;
}

/* Upload Box */
.upload-box {
    border: 2px dashed rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.upload-box.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.upload-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.upload-box h3 {
    margin: 10px 0;
}

.upload-box p {
    margin: 10px 0;
    opacity: 0.8;
}

.formats {
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Preview Section */
.preview-section {
    display: none;
    margin-bottom: 25px;
}

.preview-section h3 {
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.preview-item img, .preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: rgba(255, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Form Styling */
.upload-form .form-group {
    margin-bottom: 20px;
}

.upload-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 500px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ID Card Page */
.id-card-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

/* Flip Container */
.flip-container {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin-bottom: 30px;
    position: relative;
}

.id-card {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 15px;
    overflow: hidden;
}

.id-card.front {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--gold);
    padding: 15px;
    z-index: 2;
}

.id-card.back {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid var(--gold);
    transform: rotateY(180deg);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Front Side Styling */
.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 215, 0, 0.9);
    color: #121212;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.id-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.5);
}

.id-header img {
    height: 30px;
}

.id-header h3 {
    margin: 20px 0 0;
    font-size: 0.9rem;
    color: var(--gold);
}

.id-body {
    display: flex;
    gap: 15px;
    height: 140px;
}

.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-frame {
    width: 80px;
    height: 100px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    overflow: hidden;
    background: #333;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.id-number {
    font-size: 0.7rem;
    margin-top: 5px;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.id-details {
    flex: 1;
    font-size: 0.75rem;
}

.detail-row {
    display: flex;
    margin-bottom: 5px;
}

.detail-row span:first-child {
    width: 80px;
    color: var(--gold);
    font-weight: 500;
}

.validity {
    text-align: center;
    font-size: 0.7rem;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.holographic-strip {
    position: absolute;
    top: 50px;
    right: -30px;
    width: 40px;
    height: 80px;
    background: linear-gradient(90deg, 
        rgba(255,215,0,0.1) 0%, 
        rgba(255,215,0,0.4) 50%, 
        rgba(255,215,0,0.1) 100%);
    transform: rotate(15deg);
}

/* Back Side Styling */
.back-header {
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
}

.back-header h3 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}

.back-row {
    display: flex;
    margin-bottom: 5px;
}

.back-row span:first-child {
    width: 90px;
    color: var(--gold);
    font-weight: 500;
}

.back-address {
    margin: 8px 0;
}

.back-address span {
    color: var(--gold);
    font-weight: 500;
}

.back-address p {
    margin: 3px 0 0;
    font-size: 0.65rem;
    line-height: 1.3;
}

.qr-code {
    align-self: center;
    margin: 5px 0;
    text-align: center;
}

.qr-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed var(--gold);
    margin: 0 auto;
}

.qr-code p {
    font-size: 0.6rem;
    margin-top: 3px;
}

.contact {
    margin-top: auto;
    font-size: 0.65rem;
}

.contact p {
    margin: 2px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.terms {
    font-size: 0.5rem;
    text-align: center;
    margin-top: 5px;
    opacity: 0.7;
}

/* Controls */
.card-controls {
    display: flex;
    gap: 15px;
}

.flip-btn, .download-btn {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 165px;
}

/* Flip Animation */
.flipped .front {
    transform: rotateY(180deg);
}

.flipped .back {
    transform: rotateY(0deg);
}
/* Forgot Password Page */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    margin-bottom: 5rem;
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo i {
    font-size: 3rem;
    color: var(--gold);
}

.logo h2 {
    margin: 10px 0 5px;
    color: var(--gold);
}

.logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: white;
    margin-top: 35px;
    outline: none;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--gold);
    text-decoration: none;
}

/* OTP Section */
.otp-section {
    display: none;
    margin-top: 25px;
    text-align: center;
}

.otp-section h3 {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-inputs input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: white;
}

.resend-text {
    margin-top: 15px;
    font-size: 0.9rem;
}

.resend-text a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 25px 20px;
    }
    
    .otp-inputs input {
        width: 35px;
        height: 45px;
    }
}
/* Update Password Page */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px !important;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gold);
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    width: 25%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.strength-text {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #ff5555;
}

.error-message {
    color: #ff5555;
    font-size: 0.8rem;
    margin-top: 5px;
    height: 18px;
}

/* Password Strength Colors */
.weak .strength-bar:nth-child(-n+1) {
    background: #ff5555;
}
.medium .strength-bar:nth-child(-n+2) {
    background: #ffaa00;
}
.strong .strength-bar:nth-child(-n+3) {
    background: #55ff55;
}
.very-strong .strength-bar {
    background: #00aa00;
}

.weak .strength-text { color: #ff5555; }
.medium .strength-text { color: #ffaa00; }
.strong .strength-text { color: #55ff55; }
.very-strong .strength-text { color: #00aa00; }

#updatePasswordForm .input-group{
    display: block;
}
/* send money page */
.send-money .gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--dark) 0%, #000 100%);
    z-index: -1;
}

/* Text Colors */
.send-money .text-gold {
    color: var(--gold) !important;
}

/* Border Colors */
.send-money .border-gold {
    border-color: rgba(255, 215, 0, 0.3) !important;
}

/* Background Colors */
.send-money .bg-dark-transparent {
    background-color: rgba(30, 30, 30, 0.9) !important;
}

.send-money .bg-gold-dark {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

/* Buttons */
.send-money .btn-gold {
    background-color: var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    border: none !important;
}

.send-money .btn-outline-gold {
    color: var(--gold) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.send-money .btn-outline-gold:hover {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

/* Form Controls */
.send-money .form-control.bg-dark:focus,
.send-money .form-select.bg-dark:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.1);
}

/* List Group Items */
.send-money .list-group-item.bg-dark-transparent:hover {
    background-color: rgba(255, 215, 0, 0.05) !important;
}
.send-money .input-group input{
    margin-top: 0;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    border-radius:  8px !important;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
}
.send-money .card{
    margin-bottom: 5rem;
}
/* Responsive Adjustments */
@media (max-width: 576px) {
    .send-money .card {
        border-radius: 0 !important;
    }

    .news-filters .d-flex {
        flex-direction: column;
        gap: 10px;
    }

    .filter-buttons {
        order: 2;
        justify-content: center;
    }

    .search-box {
        order: 1;
        max-width: 100%;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ===== EVENTS PAGE STYLES ===== */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.event-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.event-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    min-height: 180px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.event-date {
    background: var(--gold);
    color: var(--dark);
    padding: 15px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

.event-day {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 5px;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.event-details h5 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.event-location,
.event-desc {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.event-location i {
    color: var(--gold);
    margin-right: 5px;
}

.event-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.event-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .event-link:hover {
        color: #fff;
        text-decoration: underline;
    }

    .event-category-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.2);
        color: var(--gold);
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 8px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .no-events {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        background: rgba(30, 30, 30, 0.9);
        border-radius: 15px;
        color: #ccc;
    }

    .no-events p {
        font-size: 1.1rem;
        margin: 0;
    }/* Responsive Design */
@media (max-width: 768px) {
    .events-list {
        grid-template-columns: 1fr;
    }

    .event-filters {
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .event-card {
        flex-direction: column;
        min-height: auto;
    }

    .event-date {
        min-width: auto;
        padding: 10px;
    }

    .event-details {
        padding: 15px;
    }
}

/* Filter Badge Styling */
.filter-btn .badge {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Events Count Styling */
.events-count {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.events-count p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.dark-mode .events-count p {
    color: #e0e0e0;
}

/* Event Details Page Styles */
.event-detail-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 40px 0;
    margin-bottom: 30px;
}

.event-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.event-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.event-detail-meta .meta-item i {
    color: #FFD700;
    width: 20px;
}

.event-detail-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.dark-mode .event-detail-content {
    color: #e0e0e0;
}

.event-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.event-detail-content h1,
.event-detail-content h2,
.event-detail-content h3,
.event-detail-content h4,
.event-detail-content h5,
.event-detail-content h6 {
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-detail-content p {
    margin-bottom: 15px;
}

.event-detail-content ul,
.event-detail-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.event-detail-content blockquote {
    border-left: 4px solid #FFD700;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

.dark-mode .event-detail-content blockquote {
    color: #ccc;
}

.event-detail-actions {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.dark-mode .event-detail-header {
    background: linear-gradient(135deg, #333, #555);
    color: #FFD700;
}

.dark-mode .event-detail-meta {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.dark-mode .event-detail-actions {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .event-detail-header {
        padding: 20px 0;
    }

    .event-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .event-detail-actions .row > div {
        margin-bottom: 10px;
    }
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    color: #000;
    text-decoration: none;
}

.fab:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    color: #000;
}

.fab i {
    transition: transform 0.3s ease;
}

.fab:hover i {
    transform: rotate(90deg);
}

/* FAB Animation */
@keyframes fabPulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
}

.fab {
    animation: fabPulse 2s infinite;
}

/* Responsive FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 90px;
        right: 15px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Primary FAB Button Styles */
.btn-primary.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-primary.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.btn-primary.fab:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.btn-primary.fab i {
    transition: transform 0.3s ease;
}

.btn-primary.fab:hover i {
    transform: rotate(90deg);
}