/* Modern Loyalty Program Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
}

/* Background Images */
.background-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.15;
    filter: blur(3px);
    transition: all 0.5s ease;
}

.bg-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.bg-2 {
    top: 40%;
    right: 5%;
    transform: rotate(10deg);
}

.bg-3 {
    bottom: 10%;
    left: 15%;
    transform: rotate(5deg);
}

/* Add a dark overlay to improve text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.97), rgba(45, 45, 45, 0.95));
    z-index: -1;
}

/* Complete Layout Redesign */
.loyalty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loyalty-header {
    text-align: center;
    margin-bottom: 40px;
}

.loyalty-header h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.loyalty-header p {
    font-size: 1.2rem;
    color: #aaa;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.loyalty-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.loyalty-card h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.loyalty-card ul {
    list-style: none;
    padding: 0;
}

.loyalty-card li {
    color: #ddd;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.loyalty-card li::before {
    content: "\2022";
    color: #FFD700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loyalty-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-header h1 {
        font-size: 2rem;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 2rem;
}

/* Points List */
.points-list {
    display: grid;
    gap: 1.5rem;
}

.points-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.points-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8f0d0d;
}

/* Benefits List */
.benefits-list {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.benefit-item i {
    color: #FFD700;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reward-card {
    text-align: center;
    padding: 2rem;
}

.reward-icon i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.reward-points {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    margin: 1rem 0;
}

.reward-condition {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 8px;
    font-style: italic;
}

/* Neon Button */
.neon-button {
    position: relative;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    color: #FFD700;
    background: transparent;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neon-button-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    z-index: -1;
    border-radius: 30px;
    animation: border-animate 3s linear infinite;
}

@keyframes border-animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.neon-button:hover {
    color: #000;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.neon-button:hover .neon-button-border {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loyalty-container {
        padding: 1rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }
}

/* Stylish Button Styles */
.cta-section {
    text-align: center;
    padding: 2rem 0;
    perspective: 1000px;
}

.join-button {
    position: relative;
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #FF4D4D, #F9CB28);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1.0);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
}

.button-content {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF4D4D, #F9CB28);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.button-particles::before,
.button-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.button-particles::before {
    left: 20%;
    top: 50%;
}

.button-particles::after {
    right: 20%;
    top: 50%;
}

/* Button Hover Effects */
.join-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.3);
}

.join-button:hover .button-glow {
    opacity: 0.6;
}

.join-button:hover .button-particles::before {
    transform: translate(-50px, -50px) scale(3);
    opacity: 0;
}

.join-button:hover .button-particles::after {
    transform: translate(50px, -50px) scale(3);
    opacity: 0;
}

/* Button Active State */
.join-button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 10px rgba(255, 77, 77, 0.2);
}

/* Button Animation */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 77, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

.join-button {
    animation: buttonPulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .join-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Loyalty Card Styles */
/* Card Container Styles */
.loyalty-cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;   
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.loyalty-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}
.loyalty-card-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Adjust existing card styles */
.loyalty-card-front,
.loyalty-card-back {
    flex: 0 0 500px;
    margin: 20px;
    transition: transform 0.6s;
}

/* Hover effects */
.loyalty-card-front:hover,
.loyalty-card-back:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .loyalty-card-wrapper {
        gap: 20px;
    }

    .loyalty-card-front,
    .loyalty-card-back {
        flex: 0 0 450px;
        margin: 15px;
    }
}

@media (max-width: 576px) {
    .loyalty-cards-container {
        padding: 10px;
        margin: 20px auto;
    }

    .loyalty-card-wrapper {
        gap: 15px;
    }

    .loyalty-card-front,
    .loyalty-card-back {
        flex: 0 0 100%;
        margin: 10px;
    }
}

.loyalty-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loyalty-cards-row {
        flex-direction: column;
        align-items: center;
    }
    
    .loyalty-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Horizontal Card Layout */
.loyalty-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.loyalty-card {
    position: relative;
    width: 400px;
    height: 250px;
    background: linear-gradient(45deg, #5C0000, #8B0000);
    border-radius: 20px;
    padding: 10px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.loyalty-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-logo {
    width: 60px;
    height: auto;
    opacity: 0.9;
}

.card-number {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: #FF4500;
    opacity: 0.3;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

/* Card Shine Effect */
.loyalty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.loyalty-card:hover::before {
    left: 200%;
}

/* Responsive Design */
@media (max-width: 480px) {
    .loyalty-card {
        width: 320px;
        height: 200px;
        padding: 20px;
    }

    .member-name {
        font-size: 1.5rem;
    }

    .card-number {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .card-footer {
        font-size: 0.8rem;
    }
}

.loyalty-card-back {
    position: relative;
    width: 500px;
    height: 300px;
    background: linear-gradient(145deg, #5c0000 0%, #8B0000 100%);
    border-radius: 15px;
    padding: 30px;
    color: #FFE5B4;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.benefits-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #FF4500;
    background: linear-gradient(90deg, #800303, #FFE5B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.benefits-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 80%;
    background: #72100d;
    transform: translateY(-50%);
    border-radius: 5px;
}

.benefits-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.logo-section {
    flex: 0 0 100px;
}

.benefits-logo {
    width: 100px;
    height: auto;
    opacity: 0.8;
}

.benefits-list {
    list-style: none;
    padding: 0;
    flex: 1;
}

.benefits-list li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.benefits-list li span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 229, 180, 0.8);
    margin-top: 3px;
}

.contact-section {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 229, 180, 0.2);
    padding-top: 15px;
}

.contact-section h3 {
    font-size: 18px;
    color: #72100d;
    margin-bottom: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.contact-info p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #72100d;
}

.decorative-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.1);
}

.circle-1 {
    width: 150px;
    height: 150px;
    right: -50px;
    top: -50px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    left: 30%;
    bottom: -30px;
}

.circle-3 {
    width: 80px;
    height: 80px;
    right: 20%;
    top: 40%;
}

/* Hover Effects */
.loyalty-card-back:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .loyalty-card-back {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .benefits-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

.membership-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1.618/1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Subtle Pattern Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.343 0L13.857 8.485 15.272 9.9l7.9-7.9h-.83zm5.657 0L19.514 8.485 20.93 9.9l8.485-8.485h-1.415zM32.686 0L26.2 6.485 27.616 7.9l7.9-7.9h-2.83zm5.657 0L29.857 8.485 31.272 9.9l8.485-8.485h-1.415zM38.343 0L29.857 8.485 31.272 9.9l8.485-8.485h-1.415zm5.657 0L35.514 8.485 36.93 9.9l8.485-8.485h-1.415zM44 0L35.514 8.485 36.93 9.9l8.485-8.485H44zm5.657 0L41.17 8.485l1.415 1.415 7.9-7.9h-1.415zm5.657 0l-7.071 7.071 1.414 1.414L57 0h-1.343zM0 0c2.019 8.072 5.744 12.544 10.343 17.143l1.414-1.414C7.13 11.101 3.576 6.871 1.757 0H0zm2.828 0c2.019 8.072 5.744 12.544 10.343 17.143l1.414-1.414C9.957 11.101 6.404 6.871 4.585 0H2.828z" fill="rgba(255,255,255,0.03)" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo Area */
.card-logo {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Member Information */
.member-info {
    margin-top: auto;
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Points Display */
.points-container {
    margin-top: 2rem;
    text-align: right;
}

.points {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
}

.points-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Card Number */
.card-number {
    font-family: monospace;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin-top: 2rem;
}

/* Metallic Accent */
.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(30px);
}

/* Hover Effects */
.membership-card:hover .card-accent {
    transform: skewX(-20deg) translateX(-200px);
    transition: transform 1s ease;
}

.membership-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Enhanced Background */
.loyalty-container {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%),
        url('../images/special-dish-banner.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Floating Gifts Animation */
.floating-gifts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-gifts i {
    position: absolute;
    color: #FFD700;
    opacity: 0.5;
    animation: float 15s linear infinite;
}

.gift-1 { top: 10%; left: 10%; font-size: 24px; animation-delay: 0s; }
.gift-2 { top: 20%; right: 15%; font-size: 18px; animation-delay: 2s; }
.gift-3 { top: 35%; left: 25%; font-size: 20px; animation-delay: 4s; }
.gift-4 { top: 50%; right: 30%; font-size: 22px; animation-delay: 6s; }
.gift-5 { top: 65%; left: 40%; font-size: 16px; animation-delay: 8s; }
.gift-6 { top: 80%; right: 20%; font-size: 26px; animation-delay: 10s; }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(0) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(20px) rotate(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.5;
    }
}

/* Surprise Gift Animation */
.benefit-card:hover .benefit-icon i {
    animation: surprise 0.5s ease-in-out;
}

@keyframes surprise {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(15deg); }
    100% { transform: scale(1); }
}

/* Card Adjustments for New Background */
.loyalty-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(5px);
}

.loyalty-program {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    color: #fff;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/special-dish-banner.jpg') center/cover;
    border-radius: 20px;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

.how-it-works {
    text-align: center;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.step {
    flex: 1;
    max-width: 300px;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin: 20px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Add shine effect to cards */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-15deg);
    transition: 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #FFD700;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.benefit-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
}

.join-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 1.2rem;
    color: #1a1a1a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s;
}

.join-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}
/* Add to existing loyalty.css */
.admin-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    color: #4CAF50;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    color: #f44336;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.loyalty-form input[type="text"],
.loyalty-form input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-top: 8px;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #FFC800;
    transform: translateY(-2px);
}
/* Points Management Styles */
.points-section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.points-section h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.member-info {
    margin-top: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-card p {
    margin: 10px 0;
    color: #fff;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.transaction-table th,
.transaction-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-table th {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.transaction-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: #4a4a4a;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
}
