/* Base VIP Styles */
.rlp-luxury-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rlp-shimmer-text {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    animation: rlpShimmer 3s infinite linear;
    text-transform: uppercase;
}

@keyframes rlpShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.rlp-countdown-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.rlp-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.rlp-countdown-item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    animation: rlpFloat 4s ease-in-out infinite;
}

.rlp-countdown-item:nth-child(2) { animation-delay: 0.5s; }
.rlp-countdown-item:nth-child(3) { animation-delay: 1s; }

.rlp-countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.rlp-countdown-label {
    font-size: 0.75rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.rlp-breathing-text {
    font-size: 1.2rem;
    color: #d4af37;
    animation: rlpBreathe 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes rlpBreathe {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes rlpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.rlp-photo-circle-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.rlp-photo-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #d4af37;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    animation: rlpFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.rlp-photo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.rlp-rsvp-container {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.rlp-rsvp-title {
    text-align: center;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rlp-form-group {
    margin-bottom: 1.5rem;
}

.rlp-form-group input,
.rlp-form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.rlp-form-group input:focus,
.rlp-form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.rlp-form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.rlp-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.rlp-btn-primary {
    background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37, #f1c40f);
    background-size: 300% 300%;
    color: #000;
    animation: shinyGold 3s ease infinite;
}

@keyframes shinyGold {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.rlp-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.rlp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
    pointer-events: none;
}

.rlp-btn-primary {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 400% 400%;
    color: #000;
    animation: shinyGold 5s ease infinite;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
}

@keyframes shinyGold {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Liquid Glass Card Effect */
.rlp-vip-card-glass {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(5, 5, 5, 1) 100%);
    border: 1px solid rgba(191, 149, 63, 0.5);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(191, 149, 63, 0.1);
}

.rlp-vip-card-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.1) 0%, transparent 70%);
    animation: rlpRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rlpRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rlp-liquid-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.4) 0%, rgba(191, 149, 63, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.rlp-liquid-1 { top: -100px; right: -100px; }
.rlp-liquid-2 { bottom: -100px; left: -100px; }

.rlp-photo-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728);
    box-shadow: 0 0 30px rgba(191, 149, 63, 0.6);
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.rlp-photo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
}

.rlp-card-title {
    font-family: 'Playfair Display', serif;
    color: #BF953F;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.rlp-card-meta {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(191, 149, 63, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.rlp-card-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 5px;
}

.rlp-card-details strong {
    color: #BF953F;
}

.rlp-qr-container {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid #BF953F;
}


.rlp-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rlp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rlp-btn-outline {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.rlp-btn-outline:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.1);
}

.rlp-btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #555;
    color: #888;
    pointer-events: none;
}

.rlp-security-msg {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
}

.rlp-guest-code-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
}

.rlp-guest-code-title {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.rlp-guest-code-item {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.rlp-event-info {
    text-align: center;
    margin: 2rem 0;
}

.rlp-info-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.rlp-phone-text {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
}

.rlp-access-link-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.rlp-access-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.rlp-access-link:hover {
    color: #f1c40f;
    transform: translateY(-2px);
}
