@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
#modalDesc {
    font-size: italic;
    background:  rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ff00ff;
    line-height: 1.4;
}
body {
    margin: 0;
   /* background-color: #735184;*/
    color: white;
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle, #4b365a 0%, #2e1a3d 100%); 
    overflow-y: auto;
    background: radial-gradient(circle at center, #4b365a 0%, #1a1a1e 100%);
    background-attachment: fixed; 
} 

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: rgba(26, 26, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 15px #ff00ff; 
    text-transform: uppercase;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s all ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff00ff;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #ff00ff;
}

.main-nav a:hover::after {
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding-bottom: 50px;
    height: auto; 
}

.hero {
    margin-bottom: 100px;
    padding: 100px 20px 60px;
    text-align: center;
    background: radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%);
}

.hero h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    color: #ccc;
    letter-spacing: 3px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    padding: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.donate-card {
    background: rgba(26, 26, 30, 0.6); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid #ff00ff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.donate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #ff00ff;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}


.buy-btn {
    background-color: #ff00ff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.1); 
    box-shadow: 0 0 15px #ff00ff;
}

.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background: #1a1a1e;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    text-align: center;
    width: 320px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.modal input {
    width: 80%;
    padding: 10px;
    margin: 20px 0;
    background: #2a2a2e;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.primary-btn { background: #ff00ff; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
.secondary-btn { background: #444; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }

.recent-orders {
    display: block; 
    margin: 20px auto 0; 
    width: fit-content;
    padding: 12px 25px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.4);
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
/* Анімація м'якого сяйва навколо плашки */
@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 255, 0); }
} 

.shop-title {
    text-align: center;
    font-size: 28px;
    margin-top: 50px;
    color: #ff00ff;
    text-shadow:  0 0 10px rgba(255, 0, 255, 0.5);
}

.buy-btn {
    background: linear-gradient(45deg, #ff00ff, #800080);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.main-footer {
    background-color: #1a1a1e;
    color: #888;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid #ff00ff;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ff00ff;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #fff;
}

.lang-switcher {
    margin-left: 15px;
    display: flex;
    gap: 8px;
    font-weight: bold;
}

.lang-switcher span {
    cursor: pointer;
    color: #555; 
    margin: 0 5px;
    transition: 0.3s;
}

.lang-switcher span.active {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-weight: 900;
}


.lang-link {
    cursor: pointer;
    color: #555;
    transition: 0.3s;
}

.lang-link.active {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}