

/* Coffee Container */
.coffee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */






/* Coffee Intro */
.coffee-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Login Prompt */
.coffee-login-prompt {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.cyber-card {
    background-color: rgba(10, 12, 20, 0.7);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    animation: card-glow 3s infinite alternate;
}

@keyframes card-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
    }
}

.card-header {
    background-color: rgba(5, 10, 25, 0.95);
    padding: 15px 20px;
    border-bottom: 1px solid var(--neon-blue);
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.card-body {
    padding: 25px;
}

.cyber-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

/* Donation Options */
.donation-options {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.option-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    background-color: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--text-color);
    padding: 12px 30px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-button:last-child {
    border-radius: 0 5px 5px 0;
}

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

.tab-button:hover {
    color: var(--neon-blue);
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button.active {
    background-color: rgba(0, 243, 255, 0.1);
    color: white;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.option-content {
    display: none;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.amount-option {
    position: relative;
    height: 100px;
    cursor: pointer;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.amount-option:hover {
    transform: translateY(-5px);
}

.option-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background-color: rgba(0, 243, 255, 0.05);
    overflow: hidden;
    text-align: center;

}

.option-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}


.amount-option:hover .option-inner {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.amount-option:hover .option-inner::before {
    transform: scaleX(1);
}

.amount-option.selected .option-inner {
    background-color: rgba(0, 243, 255, 0.2);
    color: white;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-blue);
    transform: scale(1.05);
}

.custom-amount {
    margin-bottom: 25px;
    display: none;
}

.message-option {
    margin-bottom: 25px;
}

.payment-action {
    display: flex;
    justify-content: center;
}

/* Previous Donations */
.previous-donations {
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.section-title {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blink {
    display: inline-block;
    width: 12px;
    height: 20px;
    background-color: var(--neon-blue);
    animation: cursor-blink 1s infinite;
    margin-left: 8px;
}

@keyframes cursor-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.donations-list {
    display: grid;
    gap: 20px;
}


.donation-item {
    background-color: rgba(5, 10, 20, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 5px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
    border-color: var(--neon-blue);
}

.donation-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-yellow);
}

.donation-date {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-color);
    font-size: 0.9rem;
}




.donation-type {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-blue);
    font-size: 0.9rem;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
}

.donation-actions {
    margin-top: 10px;
}

.donations-footer {
    text-align: center;
    margin-top: 20px;
}

.cyber-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.cyber-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--neon-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cyber-link:hover {
    text-shadow: 0 0 5px var(--neon-blue);
}

.cyber-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Form Elements */
.cyber-input-group {
    margin-bottom: 20px;
}

.cyber-input-group label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cyber-input-group input,
.cyber-input-group textarea {
    width: 100%;
    background-color: rgba(5, 5, 10, 0.7);
    border: 1px solid var(--neon-blue);
    color: var(--text-color);
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cyber-input-group input:focus,
.cyber-input-group textarea:focus {
    outline: none;
    box-shadow: 0 0 8px var(--neon-blue);
    border-color: var(--neon-blue);
}

.cyber-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Container */
.payment-container {
    max-width: 600px;
    margin: 30px auto;
}

.payment-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.cyber-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 243, 255, 0.3);
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-loading p {
    color: var(--text-color);
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.payment-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--neon-red);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    display: none;
}

/* Success Message */
.payment-success {
    max-width: 600px;
    margin: 30px auto;
}

.cyber-card.success {
    border-color: var(--neon-green);
    animation: card-success-glow 3s infinite alternate;
}

@keyframes card-success-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 159, 0.1);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 255, 159, 0.3);
    }
}

.success-icon {
    text-align: center;
    font-size: 3rem;
    color: var(--neon-green);
    margin: 20px 0;
}

.payment-success h3 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.payment-success p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 25px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tab-button {
        width: 200px;
        border-radius: 5px !important;
    }
    
    .donations-list {
        grid-template-columns: 1fr;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
}


.cyber-terminal {
    background: rgba(10, 15, 20, 0.85);
    border: 1px solid #0ff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.terminal-header {
    background: #0a0a0a;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.terminal-title {
    font-family: 'Courier New', monospace;
    color: #0ff;
    font-size: 0.9rem;
}

.terminal-controls {
    display: flex;
}

.terminal-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
}

.terminal-controls span:nth-child(1) {
    background: #ff5f56;
}

.terminal-controls span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-controls span:nth-child(3) {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
}

.terminal-body .line {
    margin-bottom: 0.7rem;
    color: #0f0;
    font-size: 1rem;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #0ff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cyber-button {
    display: inline-block;
    position: relative;
    padding: 1rem 2rem;
    background: #000;
    border: 2px solid #0ff;
    color: #0ff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.cyber-button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.3);
    transform: translateX(-100%);
    transition: transform 0.2s;
}

.cyber-button:hover .button-glitch {
    transform: translateX(100%);
    transition: transform 0.5s;
}