/* NovaHunter Donation System Styles */

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #fff !important;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    border-radius: 25px;
}

.btn-danger {
    border-radius: 25px;
}

.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.text-white {
    color: #fff !important;
}

.badge {
    padding: 8px 12px;
    border-radius: 20px;
}

.price-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-donate {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-donate:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(245, 87, 108, 0.4);
    color: white;
}

.custom-donation-card {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.donation-amount-btn {
    min-width: 80px;
    border-radius: 25px;
    font-weight: 600;
}

.donation-amount-btn:hover, .donation-amount-btn:focus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.custom-amount-input {
    width: 80px !important;
    text-align: center;
    border-radius: 25px;
    padding: 10px 15px;
}

.support-title {
    font-style: italic;
    font-weight: 700;
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5), 0 0 40px rgba(118, 75, 162, 0.3);
    letter-spacing: 1px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.carousel-indicators .active {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    margin-top: auto;
}

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

.server-card {
    background: linear-gradient(145deg, #1e1e3f 0%, #2a2a4a 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.server-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.server-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f093fb;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.server-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.server-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.server-address {
    font-family: 'Consolas', monospace;
    font-size: 0.95rem;
    color: #38ef7d;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-connect {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-connect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
    color: white;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.action-buttons .btn-action-discord,
.action-buttons .btn-action-web {
    min-width: 180px;
}

.btn-action-discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-action-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(25, 35, 141, 0.4);
    color: white;
}

.btn-action-web {
    background: transparent;
    color: #38ef7d;
    border: 2px solid rgba(56, 239, 125, 0.5);
    padding: 13px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-action-web:hover {
    background: rgba(56, 239, 125, 0.15);
    border-color: rgba(56, 239, 125, 0.8);
    color: #38ef7d;
    transform: translateY(-3px);
}

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

.contact-card {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.discord-card {
    background: linear-gradient(145deg, #2d2d44 0%, #1e1e32 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.discord-card::before {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
}

.discord-card .contact-icon {
    color: #5865F2;
}

.website-card {
    background: linear-gradient(145deg, #2d2d44 0%, #1e1e32 100%);
    border: 1px solid rgba(56, 239, 125, 0.3);
}

.website-card::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.website-card .contact-icon {
    color: #38ef7d;
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
    transform: translateX(5px);
    color: white;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 20px !important;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn-donate, .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .price-tag {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    h1, h2, h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .form-control-lg, .form-select-lg {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    footer {
        padding: 1rem 0;
    }
    
    .navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .nav-item {
        padding: 0.25rem 0;
    }
}

.hero-section {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 25px;
}

.hero-content {
    max-width: 500px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 20px rgba(245, 87, 108, 0.4);
    color: white;
}

.modern-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95) 0%, rgba(40, 20, 60, 0.95) 50%, rgba(30, 50, 60, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-header-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body-modern {
    padding: 20px;
    background: transparent;
}

.donor-card {
    padding: 15px;
    text-align: center;
}

.donor-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.donor-card:hover .donor-avatar {
    border-color: #667eea;
    transform: scale(1.1);
}

.donor-name {
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.donor-name:hover {
    color: #f093fb;
}

.donor-name-table {
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donor-name-table:hover {
    color: #f093fb;
    transform: scale(1.02);
}

.modern-table tbody td:first-child .donor-link {
    color: #667eea;
    font-weight: 600;
}

.modern-table tbody td:last-child,
.modern-table tbody td:nth-child(4) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.donor-amount {
    color: #38ef7d;
    font-weight: 700;
    font-size: 0.85rem;
}

.modern-table {
    background: transparent;
    color: #fff;
}

.modern-table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 12px;
    background: transparent;
}

.modern-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    vertical-align: middle;
    background: transparent;
}

.modern-table tbody tr {
    background: transparent;
}

.modern-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.donor-avatar-sm {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.donor-avatar-sm i {
    color: rgba(255, 255, 255, 0.7);
}

.donor-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.amount-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.badge-vip {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.donor-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.donor-link:hover {
    color: #667eea;
}

.donor-row {
    cursor: pointer;
    transition: background 0.2s ease;
}

.donor-row:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.modern-modal .modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.98) 0%, rgba(40, 20, 60, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #fff;
}

.modern-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
}

.modern-modal .modal-title {
    color: white;
}

.modern-modal .modal-body {
    padding: 25px;
}

.donor-profile .rounded-circle {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.donor-stats {
    display: grid;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label i {
    width: 20px;
    color: #667eea;
}

.stat-value {
    font-weight: 600;
    color: #fff;
}

.modal-username {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 10px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
}

.stat-box {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-box i {
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}