* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #d4af37;
    background: #0a0a0a;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h2 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    color: #f4d03f;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-menu a:hover {
    color: #f4d03f;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: #d4af37;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.8));
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #d4af37;
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

.services {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
}

.services h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 40px 30px;
    border: 1px solid #d4af37;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    width: 200px;
    height: 200px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: #f4d03f;
}

.service-card:hover h3 {
    color: #f4d03f;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.6);
}

.service-card:hover p {
    color: #f4d03f;
    transform: translateY(-2px);
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #b8860b;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pricing-info {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 40px;
    border: 2px solid #d4af37;
    margin-top: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-info:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pricing-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.pricing-info:hover h3 {
    color: #f4d03f;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.pricing-info p {
    transition: all 0.3s ease;
}

.pricing-info:hover p {
    color: #f4d03f;
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.pricing-info:hover::before {
    left: 100%;
}

.contact {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.contact h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3,
.request-form h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.email-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.email-container input {
    flex: 1;
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 0;
    font-size: 1rem;
    background: rgba(10, 10, 10, 0.8);
    color: #d4af37;
    font-family: 'Crimson Text', serif;
}

.copy-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 15px 25px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-btn:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 0;
    font-size: 1rem;
    background: rgba(10, 10, 10, 0.8);
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.donate {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-top: 1px solid #d4af37;
}

.donate h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.donate p {
    text-align: center;
    font-size: 1.2rem;
    color: #b8860b;
    margin-bottom: 50px;
    font-style: italic;
}

.crypto-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.crypto-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 30px;
    border: 1px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: #f4d03f;
}

.crypto-card h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.address-container {
    display: flex;
    gap: 15px;
}

.address-container input {
    flex: 1;
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: monospace;
    background: rgba(10, 10, 10, 0.8);
    color: #d4af37;
}

footer {
    background: #0a0a0a;
    color: #d4af37;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #d4af37;
    font-family: 'Cinzel', serif;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-addresses {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.crypto-card {
    animation: fadeInUp 0.6s ease-out;
}

.success-message {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 15px;
    border: 1px solid #d4af37;
    margin-top: 20px;
    display: none;
    font-family: 'Crimson Text', serif;
}

html {
    scroll-behavior: smooth;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: #f4d03f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn {
    will-change: transform;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 120%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px dashed #f4d03f;
    outline-offset: 3px;
}

.service-card {
    transform: translateZ(0);
}

.service-card:hover h3,
.service-card:hover p {
    transform: translateY(-2px);
}

.pricing-info {
    background-size: 200% 200%;
}

.pricing-info:hover {
    background-position: 100% 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 800ms ease, visibility 800ms ease;
}

.page-transition.hidden {
    opacity: 0;
    visibility: hidden;
}

.transition-content {
    text-align: center;
    transform: scale(0.8);
    animation: transitionIn 1.2s ease-out forwards;
}

.transition-logo {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    animation: logoFade 1s ease-out 0.3s forwards;
}

.transition-loader {
    width: 80px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.transition-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, transparent);
    animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes transitionIn {
    0% {
        transform: scale(0.8) rotateY(-20deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

@keyframes logoFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}