/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a3a5f;
    --secondary: #2a5a8c;
    --accent: #f9a825;
    --light: #e9f1f7;
    --dark: #0a1a2a;
    --text: #333;
    --text-light: #f0f0f0;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
}

body {
    background-color: #0f1e2d;
    color: var(--text-light);
    background-image: linear-gradient(rgba(10, 26, 42, 0.8), rgba(10, 26, 42, 0.8)),
        url('/img/bd-1.jpg');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(10, 26, 42, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    color: var(--accent);
    text-shadow: 0 0 5px rgba(249, 168, 37, 0.5);
}

.site-logo {
    display: inline-block;
    float: none;
    padding-top: 4px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.user-actions a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 15px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.user-actions a:hover {
    background-color: var(--secondary);
}

.user-actions .register {
    background-color: var(--accent);
    color: var(--dark);
}

.user-actions .register:hover {
    background-color: #ffb74d;
}

nav {
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--secondary);
    color: var(--accent);
}

.nav-menu a i {
    margin-right: 8px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/bd-2b.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
}

/* Section Styles */
.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.section-title .last-updated {
    font-size: 14px;
    color: #aaa;
    font-weight: normal;
}

.subtitle {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--accent);
}

.subtitle-ranking {
    font-size: 20px;
    margin: 0 0 15px;
    color: var(--accent);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: #ffb74d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

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

.btn-secondary:hover {
    background-color: #3a6ba8;
}

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

.btn-success:hover {
    background-color: #43a047;
}

/* Donation Specific Styles */
.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.donation-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.donation-card.popular:before {
    content: "MOST POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.donation-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

.donation-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent);
    margin: 15px 0;
}

.donation-benefits {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.donation-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.donation-benefits li:last-child {
    border-bottom: none;
}

.donation-benefits li i {
    color: var(--accent);
    margin-right: 10px;
}

.custom-amount {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.amount-input {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.currency-symbol {
    font-size: 24px;
    margin-right: 10px;
    color: var(--accent);
}

.amount-input input {
    background-color: rgba(26, 58, 95, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 18px;
    width: 200px;
    text-align: center;
}

.amount-input input:focus {
    outline: none;
    border-color: var(--accent);
}

.amount-presets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.amount-preset {
    padding: 8px 15px;
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-preset:hover {
    background-color: rgba(42, 90, 140, 0.7);
}

.amount-preset.active {
    background-color: var(--accent);
    color: var(--dark);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.payment-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-card.active {
    border: 2px solid var(--accent);
}

.payment-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.donation-progress {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    height: 20px;
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ffb74d);
    border-radius: 10px;
    width: 65%;
    transition: width 0.5s ease;
}

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

.progress-stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: #aaa;
}

.recent-donations {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 40px;
}

.donation-list {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-item:last-child {
    border-bottom: none;
}

.donor-info {
    display: flex;
    align-items: center;
}

.donor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dark);
    font-weight: bold;
}

.donor-details h4 {
    color: var(--accent);
    margin-bottom: 5px;
}

.donor-details span {
    font-size: 12px;
    color: #aaa;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 10px;
    color: #ddd;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Download Specific Styles */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.download-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.download-card.recommended:before {
    content: "RECOMMENDED";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.download-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

.download-info {
    margin-bottom: 20px;
    color: #ddd;
}

.download-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa;
}

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

.req-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
}

.req-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.req-list {
    list-style: none;
}

.req-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-name {
    color: #ddd;
}

.req-value {
    color: var(--accent);
    font-weight: bold;
}

.guide-steps {
    counter-reset: step-counter;
    margin-bottom: 40px;
}

.step {
    display: flex;
    margin-bottom: 30px;
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

.step-number {
    flex: 0 0 80px;
    background-color: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.step-number:before {
    counter-increment: step-counter;
    content: counter(step-counter);
}

.step-content {
    flex: 1;
    padding: 20px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.step-content p {
    color: #ddd;
}

/* Additional Downloads */
.additional-downloads {
    margin-bottom: 40px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.addon-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.addon-icon {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 10px;
}

.addon-card h4 {
    margin-bottom: 10px;
    color: var(--accent);
}

.addon-card p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
}

/* Guide Specific Styles */
.guide-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(42, 90, 140, 0.7);
}

.category-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Guide Content */
.guide-content {
    margin-bottom: 40px;
}

.guide-section {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}

.guide-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent);
    display: flex;
    align-items: center;
}

.guide-section h3 i {
    margin-right: 10px;
}

.guide-section p {
    margin-bottom: 15px;
    color: #ddd;
}


.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.class-card {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    padding: 20px;
    transition: all 0.3s;
}

.class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.class-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.class-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dark);
    font-size: 20px;
}

.class-info h4 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 5px;
}

.class-info span {
    font-size: 14px;
    color: #aaa;
}

.class-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #aaa;
}

.stat-value {
    font-size: 16px;
    color: var(--accent);
    font-weight: bold;
}

.class-description {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.guide-table th {
    background-color: rgba(26, 58, 95, 0.7);
    color: var(--accent);
    padding: 12px 15px;
    text-align: left;
}

.guide-table td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-table tr:hover {
    background-color: rgba(26, 58, 95, 0.3);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    padding: 20px;
    position: relative;
    border-left: 4px solid var(--accent);
}

.tip-card h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 18px;
}

.tip-card p {
    font-size: 14px;
    color: #ddd;
}

/* News Specific Styles */
.news-filters {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    background-color: rgba(42, 90, 140, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent);
    color: var(--dark);
}

.search-box {
    display: flex;
    margin-top: 15px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--text-light);
}



.search-box button {
    padding: 10px 20px;
    background-color: var(--accent);
    border: none;
    border-radius: 0 4px 4px 0;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background-color: #ffb74d;
}

.search-box-ranking {
    display: flex;
    align-items: center;
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 4px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box-ranking input {
    background: transparent;
    border: none;
    color: #ddd;
    padding: 5px;
    width: 200px;
}

.search-box-ranking input:focus {
    outline: none;
}

.search-box-ranking i {
    color: #aaa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.news-excerpt {
    margin-bottom: 15px;
    color: #ddd;
}

.read-more {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more:hover {
    color: #ffb74d;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent);
}

.featured-excerpt {
    margin-bottom: 20px;
    font-size: 16px;
    color: #ddd;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pagination button {
    background-color: rgba(42, 90, 140, 0.5);
    border: none;
    color: #ddd;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}


.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: rgba(42, 90, 140, 0.5);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--accent);
    color: var(--dark);
}

/* Pagination */
.pagination-ranking {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-ranking button {
    background-color: rgba(42, 90, 140, 0.5);
    border: none;
    color: #ddd;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-ranking button:hover {
    background-color: rgba(42, 90, 140, 0.8);
}

.pagination-ranking button.active {
    background-color: var(--accent);
    color: var(--dark);
}

.pagination-ranking button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ranking Specific Styles */
.ranking-tabs {
    display: flex;
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.ranking-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.ranking-tab:hover {
    background-color: rgba(42, 90, 140, 0.7);
}

.ranking-tab.active {
    background-color: rgba(42, 90, 140, 0.9);
    border-bottom: 3px solid var(--accent);
    color: var(--accent);
}

.ranking-content {
    display: none;
    background-color: rgba(42, 90, 140, 0.3);
    border-radius: 0 0 5px 5px;
    padding: 20px;
    margin-bottom: 40px;
}

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

.ranking-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    color: #ddd;
    font-size: 14px;
}

.filter-select {
    background-color: rgba(26, 58, 95, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ranking-table th {
    background-color: rgba(26, 58, 95, 0.7);
    color: var(--accent);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.ranking-table th:hover {
    background-color: rgba(26, 58, 95, 0.9);
}

.ranking-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ranking-table tr:hover {
    background-color: rgba(26, 58, 95, 0.3);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
}

.rank-1 {
    background-color: var(--gold);
    color: var(--dark);
}

.rank-2 {
    background-color: var(--silver);
    color: var(--dark);
}

.rank-3 {
    background-color: var(--bronze);
    color: var(--dark);
}

.rank-other {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ddd;
}

.player-info {
    display: flex;
    align-items: center;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark);
    font-weight: bold;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: bold;
    color: var(--accent);
}

.player-class,
.player-guild {
    font-size: 12px;
    color: #aaa;
}

.faction-flame {
    color: #c62828;
}

.faction-azure {
    color: #1565c0;
}

.faction-verdant {
    color: #2e7d32;
}

.top-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.top-player-card {
    background: linear-gradient(135deg, rgba(42, 90, 140, 0.7), rgba(26, 58, 95, 0.7));
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-player-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.top-player-card.rank-1::before {
    background: linear-gradient(90deg, var(--gold), #ffecb3);
}

.top-player-card.rank-2::before {
    background: linear-gradient(90deg, var(--silver), #e0e0e0);
}

.top-player-card.rank-3::before {
    background: linear-gradient(90deg, var(--bronze), #e6c9a8);
}

.player-rank {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.top-player-card.rank-1 .player-rank {
    color: var(--gold);
}

.top-player-card.rank-2 .player-rank {
    color: var(--silver);
}

.top-player-card.rank-3 .player-rank {
    color: var(--bronze);
}

.top-player-avatar {
    width: 200px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.top-player-card.rank-1 .top-player-avatar {
    background: radial-gradient(circle, var(--gold), #b8860b);
    color: var(--dark);
}

.top-player-card.rank-2 .top-player-avatar {
    background: radial-gradient(circle, var(--silver), #8c8c8c);
    color: var(--dark);
}

.top-player-card.rank-3 .top-player-avatar {
    background: radial-gradient(circle, var(--bronze), #8d6e63);
    color: var(--dark);
}

.top-player-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--accent);
}

.top-player-stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

.top-player-stat {
    text-align: center;
}


.server-status.total-accounts {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
}

.status-indicator.accounts {
    background-color: #3498db !important;
}






/* Footer */
footer {
    background-color: rgba(10, 26, 42, 0.95);
    padding: 40px 0 20px;
    margin-top: 40px;
}

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

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Homepage Specific Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/bg-3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.content-primary {
    /*background-color: rgba(42, 90, 140, 0.3);*/
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 5px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar-widget-home {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}



/* News Section */
.news-item {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.news-item h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.news-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.news-item p {
    margin-bottom: 4px;
}

.news-meta {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.event-list {
    list-style: none;
}

.event-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-list li:last-child {
    border-bottom: none;
}

.classes-section {
    margin-bottom: 40px;
}

.class-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.class-card-home {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

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

.class-card-home h3 {
    padding: 15px;
    background-color: rgba(26, 58, 95, 0.7);
}

.class-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.class-card-main {
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
}

.class-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.class-card-main img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.class-card-main h3 {
    padding: 15px;
    color: var(--accent);
}

/* Server Status Widget Styles */
.server-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.server-status-ranking {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.server-name {
    font-weight: bold;
}

.server-population {
    display: flex;
    align-items: center;
}

.population-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.population-low {
    background-color: var(--success);
}

.population-medium {
    background-color: var(--warning);
}

.population-high {
    background-color: var(--danger);
}

.server-status.online {
    border-left: 4px solid #4caf50;
}

.server-status.offline {
    border-left: 4px solid #f44336;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.online .status-indicator {
    background-color: #4caf50;
}

.offline .status-indicator {
    background-color: #f44336;
}

.online-count {
    color: var(--accent);
    font-weight: bold;
}


.server-status-widget {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 5px;
    padding: 20px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.status-online {
    background-color: var(--success);
}

.status-offline {
    background-color: var(--danger);
}

.online-count {
    font-weight: bold;
    color: var(--accent);
}

/* Mobile Styles */
@media (max-width: 992px) {

    .donation-options,
    .payment-methods,
    .progress-stats,
    .download-options,
    .requirements,
    .addon-grid,
    .guide-categories,
    .class-grid,
    .tips-grid,
    .news-grid,
    .top-players,
    .server-list,
    .main-content {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }

    .nav-menu {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .ranking-tabs {
        flex-direction: column;
    }

    .ranking-table {
        font-size: 14px;
    }

    .ranking-table th,
    .ranking-table td {
        padding: 8px 10px;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        flex: 0 0 50px;
        width: 100%;
    }

    .class-header {
        flex-direction: column;
        text-align: center;
    }

    .class-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .amount-input {
        flex-direction: column;
    }

    .currency-symbol {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .user-actions {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        justify-content: flex-start;
        padding-left: 20px;
    }
}

/* Animation Styles */
@keyframes highlight {
    0% {
        background: rgba(255, 215, 0, 0.3);
    }

    100% {
        background: transparent;
    }
}

.new-gm {
    animation: highlight 2s ease;
}

.online-count {
    transition: all 0.3s ease;
}

.gm-name-item {
    transition: all 0.3s ease;
}

.gm-name-item:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 5px !important;
}

.server-status.total-accounts {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
}

.status-indicator.accounts {
    background-color: #3498db !important;
}

/* Custom Scrollbar Styles */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffb74d, #4ECDC4);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffb74d, #26A69A);
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #ffb74d #1a1a1a;
}

/* Bottom to Top Scrolling Animation */
@keyframes scrollBottomToTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-reveal {
    animation: scrollBottomToTop 0.8s ease-out forwards;
    opacity: 0;
}

/* Stagger animations for different elements */
.hero-content {
    animation-delay: 0.2s;
}

.news-item:nth-child(1) {
    animation-delay: 0.4s;
}

.news-item:nth-child(2) {
    animation-delay: 0.6s;
}

.news-item:nth-child(3) {
    animation-delay: 0.8s;
}

.sidebar-widget-home:nth-child(1) {
    animation-delay: 0.5s;
}

.sidebar-widget-home:nth-child(2) {
    animation-delay: 0.7s;
}

.sidebar-widget-home:nth-child(3) {
    animation-delay: 0.9s;
}

.class-card-main:nth-child(1) {
    animation-delay: 0.3s;
}

.class-card-main:nth-child(2) {
    animation-delay: 0.4s;
}

.class-card-main:nth-child(3) {
    animation-delay: 0.5s;
}

.class-card-main:nth-child(4) {
    animation-delay: 0.6s;
}

.class-card-main:nth-child(5) {
    animation-delay: 0.7s;
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #ffb74d, #4ECDC4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}



/* Payment Account Details Styles - Compact Version */
.payment-account-details {
    background-color: rgba(42, 90, 140, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    display: none;
}

.account-info {
    animation: slideDown 0.2s ease;
    display: none;
}

.account-info h3 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-info h3 i {
    font-size: 20px;
}

.account-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 12px;
    background-color: rgba(26, 58, 95, 0.7);
    border-radius: 6px;
    flex-wrap: wrap;
    border-left: 2px solid var(--accent);
}

.account-detail label {
    font-weight: 600;
    min-width: 140px;
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}

.account-value {
    flex-grow: 1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
    padding: 0 10px;
    word-break: break-all;
    font-weight: bold;
}

.copy-btn {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: #ffb74d;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.copy-btn i {
    font-size: 12px;
}

.payment-instruction {
    background-color: #2b0b0e; /* Dark red background for danger */
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #dc3545; /* Standard danger red border */
    margin-top: 15px;
    font-style: italic;
    line-height: 1.5;
    color: #ffcccc; /* Light red text for contrast */
    font-size: 13px;
}

/* Payment card active state */
.payment-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card.active {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent);
}

.payment-card:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* Responsive adjustments for payment account details */
@media (max-width: 768px) {
    .payment-account-details {
        padding: 15px;
        margin-top: 15px;
    }
    
    /* Remove old styles that conflict with new structure */
    .account-detail {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .account-detail label {
        min-width: auto;
        margin-bottom: 5px;
        font-size: 13px;
        width: 100%;
        margin-right: 0;
    }
    
    .account-value {
        padding: 0;
        margin-bottom: 8px;
        width: 100%;
        font-size: 13px;
        overflow-wrap: break-word;
    }
    
    .copy-btn {
        align-self: flex-start;
        width: auto;
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .payment-instruction {
        padding: 10px 12px;
        font-size: 12px;
        margin-top: 12px;
    }
    
    .account-info h3 {
        font-size: 16px;
        flex-direction: row;
        text-align: left;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .account-info h3 i {
        font-size: 18px;
    }
    
    /* Fix for account cards on mobile */
    .bank-account-card .account-detail,
    .ewallet-account-card .account-detail,
    #paypalAccount .account-detail {
        flex-wrap: wrap;
    }
    
    .bank-account-card .account-detail .label-colon,
    .ewallet-account-card .account-detail .label-colon,
    #paypalAccount .account-detail .label-colon {
        min-width: 100%;
        width: 100%;
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 5px;
    }
    
    .bank-account-card .account-detail .label-colon .label-text,
    .ewallet-account-card .account-detail .label-colon .label-text,
    #paypalAccount .account-detail .label-colon .label-text {
        text-align: left;
        font-size: 13px;
    }
    
    .bank-account-card .account-detail .account-value,
    .ewallet-account-card .account-detail .account-value,
    #paypalAccount .account-detail .account-value {
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .bank-account-card .account-detail .copy-btn,
    .ewallet-account-card .account-detail .copy-btn,
    #paypalAccount .account-detail .copy-btn {
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* Grid adjustments for mobile */
    .bank-accounts-grid,
    .ewallet-accounts-grid {
        gap: 15px;
    }
    
    .bank-account-card,
    .ewallet-account-card {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .payment-account-details {
        padding: 12px;
    }
    
    /* Remove old styles */
    .account-detail {
        padding: 8px;
    }
    
    .account-value {
        font-size: 12px;
    }
    
    .copy-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .account-info h3 {
        font-size: 15px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    /* Account card adjustments for very small screens */
    .bank-account-card h4,
    .ewallet-account-card h4 {
        font-size: 15px;
    }
    
    .bank-accounts-grid,
    .ewallet-accounts-grid {
        gap: 10px;
    }
}

/* Style for copied success state */
.copy-btn.copied {
    background-color: #28a745 !important;
    color: white !important;
}

.copy-btn.copied i {
    color: white !important;
}


/* Grid layouts for multiple accounts */
.bank-accounts-grid,
.ewallet-accounts-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

/* For 2-column layout specifically */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Fix for colon alignment in account cards */
.bank-account-card .account-detail,
.ewallet-account-card .account-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    min-height: 40px; /* Add consistent height */
}

/* Label and colon container */
.bank-account-card .account-detail .label-colon,
.ewallet-account-card .account-detail .label-colon {
    display: flex;
    min-width: 150px; /* Fixed width for label + colon */
    width: 150px;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5px;
}

/* Label text */
.bank-account-card .account-detail .label-colon .label-text,
.ewallet-account-card .account-detail .label-colon .label-text {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
    text-align: right;
}

/* Colon */
.bank-account-card .account-detail .label-colon .colon,
.ewallet-account-card .account-detail .label-colon .colon {
    font-weight: 600;
    color: var(--text-light);
    margin-left: 3px;
}

/* Account value */
.bank-account-card .account-detail .account-value,
.ewallet-account-card .account-detail .account-value {
    flex-grow: 1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
    font-weight: bold;
    padding: 0 10px;
    word-break: break-all;
    min-width: 0; /* Allow text wrapping */
}

/* Copy button */
.bank-account-card .account-detail .copy-btn,
.ewallet-account-card .account-detail .copy-btn {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 5px;
}

/* Apply same to PayPal section */
#paypalAccount .account-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    min-height: 40px; /* Consistent height */
}

#paypalAccount .account-detail .label-colon {
    display: flex;
    min-width: 150px;
    width: 150px;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5px;
}

#paypalAccount .account-detail .label-colon .label-text {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
    text-align: right;
}

#paypalAccount .account-detail .label-colon .colon {
    font-weight: 600;
    color: var(--text-light);
    margin-left: 3px;
}

#paypalAccount .account-detail .account-value {
    flex-grow: 1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
    font-weight: bold;
    padding: 0 10px;
    word-break: break-all;
    min-width: 0;
}

#paypalAccount .account-detail .copy-btn {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 5px;
}

/* FIX: For e-wallet rows without copy button - add placeholder for alignment */
.ewallet-account-card .account-detail:not(:has(.copy-btn)) {
    position: relative;
}

.ewallet-account-card .account-detail:not(:has(.copy-btn))::after {
    content: "";
    display: block;
    width: 60px; /* Same width as copy button */
    flex-shrink: 0;
    visibility: hidden;
}

/* FIX: Make sure bank account cards have consistent styling */
.bank-account-card,
.ewallet-account-card {
    background-color: rgba(26, 58, 95, 0.5);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bank-account-card:hover,
.ewallet-account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.bank-account-card h4,
.ewallet-account-card h4 {
    color: var(--accent);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    text-align: center;
}

/* Responsive grid adjustments */
@media (max-width: 992px) {
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}