:root {
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 25, 0.8);
    --primary-glow: #d4af37; /* Gold */
    --accent-red: #8b0000; /* Dark Red */
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

.glow-text {
    color: var(--primary-glow);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('media/HIHdILeXsAA-t7v.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-red), #500000);
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #a00000, var(--accent-red));
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* Main Section */
#tribute {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-glow);
    margin-bottom: 0.5rem;
}

/* Fetish Cards */
.fetish-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.fetish-card {
    display: flex;
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fetish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.fetish-card.reverse {
    flex-direction: row-reverse;
}

.fetish-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.fetish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fetish-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fetish-content h3 {
    font-size: 2rem;
    color: var(--primary-glow);
    margin-bottom: 1rem;
}

.fetish-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Payment UI - Redesigned */
.payment-ui {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tribute-prompt {
    display: block;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pay-btn {
    flex: 1 1 calc(50% - 0.8rem);
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}

.pay-btn i {
    font-size: 1.2rem;
}

.pay-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Specific button colors and glow effects */
.revolut { background: rgba(0, 117, 235, 0.15); border-color: rgba(0, 117, 235, 0.5); color: #66b2ff; }
.wise { background: rgba(159, 232, 112, 0.15); border-color: rgba(159, 232, 112, 0.5); color: #9fe870; }
.throne { background: rgba(255, 71, 126, 0.15); border-color: rgba(255, 71, 126, 0.5); color: #ff85a1; }
.tipfunder { background: rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.5); color: #818cf8; }
.premium-chat { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.5); color: #34d399; }

.revolut:hover { background: rgba(0, 117, 235, 0.4); border-color: #0075eb; box-shadow: 0 0 20px rgba(0, 117, 235, 0.6); color: #fff; }
.wise:hover { background: rgba(159, 232, 112, 0.4); border-color: #9fe870; box-shadow: 0 0 20px rgba(159, 232, 112, 0.6); color: #fff; }
.throne:hover { background: rgba(255, 71, 126, 0.4); border-color: #ff477e; box-shadow: 0 0 20px rgba(255, 71, 126, 0.6); color: #fff; }
.tipfunder:hover { background: rgba(99, 102, 241, 0.4); border-color: #6366f1; box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); color: #fff; }
.premium-chat:hover { background: rgba(16, 185, 129, 0.4); border-color: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); color: #fff; }

.pay-btn.premium-chat {
    flex: 1 1 100%; /* Make the last button span full width if odd number */
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(139,0,0,0.1), transparent);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--primary-glow);
    margin-bottom: 1rem;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--primary-glow);
    color: #000;
    border-color: var(--primary-glow);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 15% auto;
    padding: 2.5rem;
    border: 1px solid var(--primary-glow);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-modal:hover {
    color: #fff;
}

#modal-title {
    color: var(--primary-glow);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

#modal-pay-link {
    margin-top: 1.5rem;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .fetish-card, .fetish-card.reverse {
        flex-direction: column;
    }
    
    .fetish-image {
        max-width: 100%;
        height: 300px;
    }
    
    .pay-btn {
        flex: 1 1 100%;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#lang-select {
    background: rgba(10, 10, 10, 0.8);
    color: var(--primary-glow);
    border: 1px solid var(--primary-glow);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

#lang-select:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

#lang-select option {
    background: #0a0a0a;
    color: #fff;
}
