/* Crypto Faucet - Modern Professional Light Theme CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafbfc;
    min-height: 100vh;
    color: #1a202c;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.875rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Main Content */
main {
    padding: 1rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0;
    color: #1a202c;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 32px;
    margin: 2rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: #475569;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1a202c;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03), 0 12px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #2563eb;
}

.stat-card p {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a5568;
}

/* Recent Claims */
.recent-claims {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.recent-claims h3 {
    margin-bottom: 1.5rem;
    color: #1a202c;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
}

.recent-claims h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.claims-list {
    max-height: 300px;
    overflow-y: auto;
}

.claim-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: background-color 0.2s ease;
}

.claim-item:hover {
    background-color: rgba(248, 250, 252, 0.8);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

.claim-item:last-child {
    border-bottom: none;
}

.claim-email {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.875rem;
}

.claim-amount {
    font-weight: 600;
    color: #059669;
    background: #f0fdf4;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    border: 1px solid #bbf7d0;
}

.claim-time {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Index Page Recent Claims Table */
.index-recent-claims {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.index-recent-claims h3 {
    margin-bottom: 1.5rem;
    color: #1a202c;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
}

.index-recent-claims h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.index-claims-table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.index-claims-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.index-claims-table thead {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.index-claims-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.index-claims-table th:first-child {
    border-top-left-radius: 12px;
}

.index-claims-table th:last-child {
    border-top-right-radius: 12px;
}

.index-claims-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    background: #ffffff;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.index-claims-table tbody tr {
    transition: all 0.2s ease;
}

.index-claims-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.index-claims-table tbody tr:hover td {
    background: rgba(59, 130, 246, 0.05);
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.index-claims-table tbody tr:last-child td {
    border-bottom: none;
}

.index-claims-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.index-claims-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.index-email-cell {
    font-weight: 600;
    color: #2563eb;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
}

.index-amount-cell {
    padding: 0.75rem 1rem;
}

.amount-with-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.amount-with-icon:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.coin-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.amount-text {
    font-weight: 600;
    color: #059669;
    font-size: 0.875rem;
    white-space: nowrap;
}

.index-time-cell {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.no-claims {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 2rem !important;
    font-size: 0.95rem;
}

/* Mobile responsiveness for index table */
@media (max-width: 768px) {
    .index-recent-claims {
        padding: 1.5rem;
    }
    
    .index-claims-table-container {
        overflow-x: visible !important;
    }
    
    .index-claims-table {
        display: block;
        width: 100%;
        min-width: auto;
    }
    
    .index-claims-table thead {
        display: none;
    }
    
    .index-claims-table tbody {
        display: block;
        width: 100%;
    }
    
    .index-claims-table tbody tr {
        display: block;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .index-claims-table tbody tr:hover {
        background: rgba(59, 130, 246, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .index-claims-table td {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
        border: none;
        background: transparent !important;
        position: relative;
        padding-left: 0;
    }
    
    .index-claims-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #374151;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .index-email-cell {
        font-size: 0.875rem;
        color: #2563eb;
        font-weight: 600;
    }
    
    .index-amount-cell {
        padding: 0.5rem 0;
    }
    
    .amount-with-icon {
        display: inline-flex;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
        margin-top: 0.25rem;
    }
    
    .coin-icon {
        width: 18px;
        height: 18px;
    }
    
    .amount-text {
        font-size: 0.875rem;
    }
    
    .index-time-cell {
        font-size: 0.8rem;
        color: #6b7280;
    }
}

/* Additional IconCaptcha fixes for larger mobile screens */
@media (max-width: 768px) {
    .captcha-form-group {
        overflow: visible !important;
    }
    
    .iconcaptcha-widget {
        width: 100% !important;
        overflow: visible !important;
    }
    
    .iconcaptcha-modal,
    .iconcaptcha-container {
        max-width: 100% !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {
    .index-recent-claims {
        padding: 1rem;
    }
    
    .index-claims-table tbody tr {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .index-claims-table td {
        padding: 0.4rem 0;
    }
    
    .index-claims-table td:before {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .index-email-cell {
        font-size: 0.8rem;
    }
    
    .index-amount-cell {
        padding: 0.4rem 0;
    }
    
    .amount-with-icon {
        padding: 0.3rem 0.6rem;
        gap: 0.4rem;
        margin-top: 0.2rem;
    }
    
    .coin-icon {
        width: 16px;
        height: 16px;
    }
    
    .amount-text {
        font-size: 0.8rem;
    }
    
    .index-time-cell {
        font-size: 0.75rem;
    }
    
    .no-claims {
        padding: 1.5rem !important;
        font-size: 0.85rem;
    }
}

/* Faucet Grid */
.faucets-section {
    margin: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 2px;
}

.faucets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faucet-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.faucet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faucet-card:hover::before {
    transform: scaleX(1);
}

.faucet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    border-color: #cbd5e0;
}

.faucet-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.faucet-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.faucet-card:hover .faucet-icon::before {
    transform: rotate(-45deg) translateX(100%);
}

.faucet-card h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.faucet-reward {
    font-size: 1.375rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1.25rem;
    background: #f0fdf4;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #bbf7d0;
}

.faucet-balance {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.claim-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.15);
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.claim-btn:hover::before {
    left: 100%;
}

.claim-btn:hover {
    transform: translateY(-1px);
    background: #1d4ed8;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}

.claim-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25);
}

.claim-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.claim-btn:disabled::before {
    display: none;
}

/* Faucet Page Styles */
.faucet-page {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem;
    margin: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.faucet-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.faucet-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 2px;
}

.faucet-header h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.faucet-balance-display {
    font-size: 1.375rem;
    color: #059669;
    font-weight: 600;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #a7f3d0;
    display: inline-block;
}

.claim-section {
    max-width: 520px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.75rem;
}

/* Center only the captcha widget, keep label left-aligned */
.captcha-form-group label {
    text-align: left;
    margin-bottom: 1rem;
}

.captcha-form-group .iconcaptcha-widget {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Mobile text alignment for form elements */
@media (max-width: 768px) {
    .form-group label,
    .captcha-form-group label {
        text-align: center !important;
    }
    
    .form-group small {
        text-align: center !important;
    }
    
    /* Contact page mobile fixes */
    .contact-section .stat-card > div {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    .contact-section .stat-card > div > div {
        min-width: auto !important;
        text-align: center !important;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-section .stat-card a {
        font-size: 1.1rem !important;
        word-break: break-all;
        display: block;
        padding: 1rem !important;
    }
    
    .contact-section .stat-card h2 {
        font-size: 1.8rem !important;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: rgba(255, 255, 255, 1);
}

.countdown {
    text-align: center;
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: 600;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.success-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid #a7f3d0;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.success-message::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #059669;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.success-message {
    padding-left: 3.5rem;
}

.error-message {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid #fecaca;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.error-message::before {
    content: '✕';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #dc2626;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.error-message {
    padding-left: 3.5rem;
}

/* Referral Section */
.referral-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.referral-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.referral-link {
    background: white;
    padding: 0.75rem;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-family: monospace;
    word-break: break-all;
    margin: 1rem 0;
}

.copy-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.5rem;
}

/* Recent Claims Table */
.recent-claims {
    margin-top: 2rem;
}

.recent-claims h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.recent-claims h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 2px;
}

.recent-claims-table-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.recent-claims-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
}

.recent-claims-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.recent-claims-table th {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border: none;
    position: relative;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.recent-claims-table th:first-child {
    border-top-left-radius: 12px;
}

.recent-claims-table th:last-child {
    border-top-right-radius: 12px;
}

.recent-claims-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.recent-claims-table tbody tr {
    transition: all 0.2s ease;
}

.recent-claims-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-1px);
}

.recent-claims-table tbody tr:hover td {
    background: rgba(59, 130, 246, 0.08);
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.recent-claims-table tbody tr:last-child td {
    border-bottom: none;
}

.recent-claims-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.recent-claims-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Enhanced styling for amount column */
.recent-claims-table .amount-cell {
    font-weight: 600;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    position: relative;
}

/* Fix for hover state - ensure text remains visible */
.recent-claims-table tbody tr:hover .amount-cell {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced styling for time column */
.recent-claims-table .time-cell {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Email masking styling */
.recent-claims-table .email-cell {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faucets-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .faucet-page,
    .stats-section {
        margin: 0.25rem 0;
        padding: 1.5rem;
    }
    
    .recent-claims h3 {
        font-size: 1.25rem;
        padding-left: 0.75rem;
    }
    
    .recent-claims h3::before {
        width: 3px;
        height: 20px;
    }
    
    .recent-claims-table-container {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .recent-claims-table {
        font-size: 0.85rem;
    }
    
    .recent-claims-table th {
        padding: 1rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .recent-claims-table td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .recent-claims-table .amount-cell {
        font-size: 0.9rem;
    }
    
    .recent-claims-table .time-cell {
        font-size: 0.8rem;
    }
    
    .recent-claims-table .email-cell {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .faucet-card {
        padding: 1.5rem;
    }
    
    .faucet-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .claim-section {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Coin Icons */
.coin-btc { background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%); }
.coin-doge { background: linear-gradient(135deg, #c2a633 0%, #d4af37 100%); }
.coin-ltc { background: linear-gradient(135deg, #345d9d 0%, #4a90e2 100%); }
.coin-bch { background: linear-gradient(135deg, #8dc351 0%, #4caf50 100%); }
.coin-dash { background: linear-gradient(135deg, #008de4 0%, #0066cc 100%); }
.coin-dgb { background: linear-gradient(135deg, #006ba6 0%, #004d7a 100%); }
.coin-trx { background: linear-gradient(135deg, #ff0013 0%, #cc0010 100%); }
.coin-zec { background: linear-gradient(135deg, #f4b728 0%, #e6a500 100%); }
.coin-bnb { background: linear-gradient(135deg, #f3ba2f 0%, #e6a500 100%); }
.coin-sol { background: linear-gradient(135deg, #9945ff 0%, #7c3aed 100%); }
.coin-xrp { background: linear-gradient(135deg, #23292f 0%, #1a1f24 100%); }
.coin-matic { background: linear-gradient(135deg, #8247e5 0%, #6b46c1 100%); }
.coin-ada { background: linear-gradient(135deg, #0033ad 0%, #002080 100%); }

/* Talk with Admin Button */
.talk-admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.talk-admin-section {
    transition: all 0.3s ease;
}

.talk-admin-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Amazing Success Celebration Animations */
.success-celebration {
    text-align: center;
    animation: celebrationBounce 0.8s ease-out;
}

.success-emoji {
    font-size: 3rem;
    animation: emojiSpin 1s ease-in-out;
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.success-sparkles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.success-sparkles span {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.success-sparkles span:nth-child(2) {
    animation-delay: 0.3s;
}

.success-sparkles span:nth-child(3) {
    animation-delay: 0.6s;
}

.success-pulse {
    animation: successPulse 2s ease-in-out;
    transform-origin: center;
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall linear;
    transform-origin: center;
}

/* Mobile Optimization Fixes */
@media (max-width: 480px) {
    /* Fix 1: Enhanced IconCaptcha mobile optimization */
    .claim-section {
        padding: 20px 5px !important;
        overflow: visible !important;
        max-width: none !important;
    }
    
    .recaptcha-container {
        transform: none !important;
        justify-content: flex-start !important;
    }
    
    .captcha-form-group {
        margin-left: -5px !important;
        margin-right: -5px !important;
        overflow: visible !important;
    }
    
    .captcha-form-group .iconcaptcha-widget {
        transform: none !important;
        margin: 0 !important;
        text-align: left !important;
        width: 100% !important;
        overflow: visible !important;
        min-width: 100% !important;
    }
    
    /* IconCaptcha widget container and elements */
    .iconcaptcha-widget,
    .iconcaptcha-widget * {
        max-width: none !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    /* IconCaptcha modal/popup container */
    .iconcaptcha-modal,
    .iconcaptcha-container,
    .iconcaptcha-holder {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        transform: none !important;
    }
    
    /* IconCaptcha icons grid */
    .iconcaptcha-icons,
    .iconcaptcha-icon-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
    }
    
    /* Individual icons */
    .iconcaptcha-icon {
        flex: 0 0 auto !important;
        margin: 2px !important;
        max-width: calc(20% - 4px) !important;
        overflow: visible !important;
    }
    
    /* Ensure captcha doesn't get clipped by parent containers */
    .form-group,
    .claim-section,
    .container {
        overflow: visible !important;
    }
    
    /* Fix 2: Referral box mobile optimization */
    .referral-section {
        padding: 1.5rem 1rem !important;
    }
    
    .referral-section .form-group > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .referral-section .form-control {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .referral-section #generateReferralBtn {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    #referralLinkContainer > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    #referralLink {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    #copyReferralBtn {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    /* Fix 3: Recent claims table mobile optimization */
    .recent-claims-table-container {
        overflow-x: visible !important;
        padding: 1rem 0.5rem !important;
    }
    
    .recent-claims-table {
        display: block !important;
        width: 100% !important;
    }
    
    .recent-claims-table thead {
        display: none !important;
    }
    
    .recent-claims-table tbody {
        display: block !important;
    }
    
    .recent-claims-table tr {
        display: block !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        margin-bottom: 1rem !important;
        padding: 1rem !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    }
    
    .recent-claims-table td {
        display: block !important;
        text-align: left !important;
        padding: 0.5rem 0 !important;
        border: none !important;
        background: transparent !important;
        position: relative !important;
        padding-left: 0 !important;
    }
    
    .recent-claims-table .email-cell::before {
        content: "Email: ";
        font-weight: 600;
        color: #374151;
        display: inline-block;
        min-width: 60px;
    }
    
    .recent-claims-table .amount-cell::before {
        content: "Amount: ";
        font-weight: 600;
        color: #374151;
        display: inline-block;
        min-width: 60px;
    }
    
    .recent-claims-table .time-cell::before {
        content: "Time: ";
        font-weight: 600;
        color: #374151;
        display: inline-block;
        min-width: 60px;
    }
    
    .recent-claims-table .amount-cell {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    .recent-claims-table .time-cell {
        font-size: 0.9rem !important;
        color: #6b7280 !important;
    }
    
    .recent-claims-table .email-cell {
        font-size: 0.9rem !important;
        font-family: inherit !important;
    }
    
    /* Fix 4: Footer buttons mobile optimization */
    footer div[style*="margin-top: 1rem"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        margin-top: 1.5rem !important;
    }
    
    footer div[style*="margin-top: 1rem"] a {
        display: block !important;
        width: 200px !important;
        text-align: center !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* Floating Emojis Animation */
.floating-emojis-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    bottom: -50px;
    animation: floatUp 4s ease-out forwards;
}

/* Keyframe Animations */
@keyframes celebrationBounce {
    0% {
        transform: scale(0.3) translateY(50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes emojiSpin {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(5, 150, 105, 0.5);
        color: #065f46;
    }
    100% {
        text-shadow: 0 0 20px rgba(5, 150, 105, 0.8), 0 0 30px rgba(5, 150, 105, 0.6);
        color: #047857;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }
    25% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(5, 150, 105, 0.1);
    }
    75% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(-20vh) rotate(90deg) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-80vh) rotate(270deg) scale(1.2);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* Enhanced Success Message Styling */
.success-message.success-pulse {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    border: 2px solid #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Claim Button Ready Animation */
.claim-btn-ready {
    animation: claimButtonGlow 2s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.claim-btn-ready::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes claimButtonGlow {
    0% {
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }
    100% {
        box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.3);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced Faucet Page Animations */
.faucet-card {
    transition: all 0.3s ease;
}

.faucet-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Coin Icon Pulse Animation */
.coin-icon {
    animation: coinPulse 3s ease-in-out infinite;
}

@keyframes coinPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Balance Display Enhancement */
.balance-display {
    animation: balanceShine 4s ease-in-out infinite;
}

@keyframes balanceShine {
    0%, 100% {
        text-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(34, 197, 94, 0.6), 0 0 25px rgba(34, 197, 94, 0.4);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .success-emoji {
        font-size: 2.5rem;
    }
    
    .success-text {
        font-size: 1.1rem;
    }
    
    .floating-emoji {
        font-size: 1.5rem;
    }
    
    .confetti-piece {
        width: 8px;
        height: 8px;
    }
    
    .claim-btn-ready::before {
        animation-duration: 4s;
    }
}

/* SEO Article Section Styles */
.seo-article {
    position: relative;
    overflow: hidden;
}

.seo-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    opacity: 0.8;
    z-index: -1;
}

.seo-article article {
    position: relative;
    z-index: 1;
}

.seo-article h2 {
    background: linear-gradient(135deg, #2d3748 0%, #2b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-article h3 {
    position: relative;
    padding-left: 1rem;
}

.seo-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, #2b6cb0 0%, #667eea 100%);
    border-radius: 2px;
}

/* Mobile Responsive Styles for SEO Article */
@media (max-width: 768px) {
    .seo-article {
        margin: 2rem 0 !important;
        padding: 2rem 0 !important;
        border-radius: 15px !important;
    }
    
    .seo-article article {
        padding: 0 0.5rem !important;
    }
    
    .seo-article header {
        margin-bottom: 2rem !important;
    }
    
    .seo-article h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .seo-article header p {
        font-size: 1rem !important;
        padding: 0 0.5rem;
    }
    
    .seo-article h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .seo-article p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .seo-article div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .seo-article div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    .seo-article div[style*="padding: 1.5rem"] {
        padding: 1.2rem !important;
    }
    
    .seo-article li {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .seo-article button {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .seo-article {
        margin: 1.5rem 0 !important;
        padding: 1.5rem 0 !important;
    }
    
    .seo-article h2 {
        font-size: 1.5rem !important;
    }
    
    .seo-article h3 {
        font-size: 1.2rem !important;
    }
    
    .seo-article div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }
    
    .seo-article div[style*="gap: 2.5rem"] {
        gap: 1.5rem !important;
    }
}

/* Enhanced Button Hover Effects for SEO Section */
.seo-article button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.seo-article button:active {
    transform: translateY(0);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Footer Button Styles */
.footer-buttons {
    margin-bottom: 1rem;
    text-align: center;
}

.footer-btn {
    text-decoration: none;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-btn.privacy {
    color: #4CAF50;
    border-color: #4CAF50;
}

.footer-btn.privacy:hover {
    background: #4CAF50;
    color: white;
}

.footer-btn.terms {
    color: #2196F3;
    border-color: #2196F3;
}

.footer-btn.terms:hover {
    background: #2196F3;
    color: white;
}

.footer-btn.contact {
    color: #FF9800;
    border-color: #FF9800;
}

.footer-btn.contact:hover {
    background: #FF9800;
    color: white;
}

/* Mobile Footer Button Styles */
@media (max-width: 768px) {
    .footer-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-btn {
        margin-right: 0;
        margin-bottom: 0;
        width: 200px;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-btn {
        width: 180px;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}