
/* Order Flow Steps */
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #D4AF37;
    color: #0B0B0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #D4AF37;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #F3E6C8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Payment Cards */
.payment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.payment-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-description {
    color: #F3E6C8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.faq-answer {
    color: #F3E6C8;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid #D4AF37;
}

/* Texture for velvet background */
.texture-velvet {
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 20%);
    background-color: #0B0B0B;
}

/* Hover effects for images */
img {
    transition: transform .3s ease, box-shadow .3s ease;
}

a:hover img {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* Logo styling */
.logo-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-queen {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #D4AF37;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.logo-queen::before {
    content: "♕";
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255, 215, 160, 0.8);
    filter: drop-shadow(0 0 8px rgba(255, 215, 160, 0.6));
}

.logo-queen::after {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.5rem;
    background: radial-gradient(ellipse at center, rgba(255, 215, 160, 0.7) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Gold glow effects */
.gold-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Premium spacing */
.premium-spacing {
    letter-spacing: 0.05em;
}
/* Smooth fades */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Animation skip button */
.animation-skip {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F3E6C8;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.animation-skip:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Video Animation Canvas Styles */
canvas {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Responsive video container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio by default */
}

.video-container.ratio-9-16 {
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
}

.video-container.ratio-16-9 {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Mobile-first adjustments */
@media (max-width: 768px) {
    .logo-queen {
        font-size: 2.5rem;
    }
    .logo-queen::before {
        font-size: 1.5rem;
        top: -1rem;
    }
    .logo-queen::after {
        width: 3rem;
        top: -1.8rem;
    }
}
>