/* Reserve Circle Page Styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.reserve-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(44, 24, 16, 0.95) 0%, 
        rgba(91, 13, 19, 0.9) 50%,
        rgba(44, 24, 16, 0.95) 100%),
        url('../images/about1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    padding: 100px 20px 60px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #d4a574, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 30px 0;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Monthly Winners Section */
.monthly-winners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 15px 0;
    color: #2c1810;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 50px 0;
}

.winners-announcement {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.month-badge {
    background: linear-gradient(45deg, #d4a574, #f4d03f);
    color: #2c1810;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.selection-info {
    color: #666;
    font-size: 0.9rem;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.winner-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.winner-card:hover {
    border-color: #d4a574;
    transform: translateY(-2px);
}

.winner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin: 0 0 8px 0;
}

.winner-id {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.loading-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    grid-column: 1 / -1;
}

.loading-message p {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.next-announcement {
    font-weight: 600;
    color: #d4a574;
}

/* Program Details */
.program-details {
    padding: 80px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    color: #2c1810;
}

.card-content p {
    margin: 0 0 20px 0;
    color: #333;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d4a574;
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h4 {
    margin: 0;
    color: #2c1810;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Content Schedule */
.content-schedule {
    padding: 80px 0;
    background: #2c1810;
    color: white;
}

.content-schedule .section-title {
    color: #d4a574;
}

.content-schedule .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.schedule-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #d4a574, #f4d03f);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4a574, #f4d03f);
    color: #2c1810;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 30px;
    z-index: 2;
    position: relative;
}

.timeline-content h4 {
    margin: 0 0 10px 0;
    color: #d4a574;
    font-size: 1.2rem;
}

.timeline-content p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 20%, #f4d03f 50%, #d4a574 80%, transparent 100%);
    opacity: 0.3;
}

.how-it-works .section-title {
    color: white;
    text-align: center;
    margin-bottom: 120px;
    font-size: 5rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.how-it-works-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.how-it-works-item {
    display: flex;
    align-items: center;
    gap: 100px;
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(0,0,0,0.2) 100%);
    border: 1px solid rgba(212, 165, 116, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    position: relative;
}

.how-it-works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.how-it-works-item:hover::before {
    opacity: 1;
}

.how-it-works-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.3);
}

.how-it-works-item:nth-child(1) { animation-delay: 0.2s; }
.how-it-works-item:nth-child(2) { animation-delay: 0.4s; }
.how-it-works-item:nth-child(3) { animation-delay: 0.6s; }
.how-it-works-item:nth-child(4) { animation-delay: 0.8s; }
.how-it-works-item:nth-child(5) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-icon {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.work-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    transition: transform 0.8s ease;
}

.work-icon:hover::before {
    transform: rotate(-45deg) translate(100%, 100%);
}

.work-icon:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.25);
    border-color: rgba(212, 165, 116, 0.5);
}

.loyalty-badge {
    background: linear-gradient(135deg, 
        rgba(212, 165, 116, 0.15) 0%, 
        rgba(244, 208, 63, 0.1) 30%,
        rgba(212, 165, 116, 0.12) 100%);
    border: 3px solid #d4a574;
    color: #d4a574;
    padding: 18px 24px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 32px rgba(212, 165, 116, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(212, 165, 116, 0.1);
    text-shadow: 0 2px 12px rgba(212, 165, 116, 0.4);
    backdrop-filter: blur(10px);
}

.loyalty-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s ease;
}

.loyalty-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.work-icon:hover .loyalty-badge {
    transform: scale(1.08) rotateY(5deg);
    color: #f4d03f;
    border-color: #f4d03f;
    box-shadow: 
        0 20px 50px rgba(244, 208, 63, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.25),
        0 0 0 2px rgba(244, 208, 63, 0.2),
        0 0 30px rgba(244, 208, 63, 0.3);
    text-shadow: 0 4px 15px rgba(244, 208, 63, 0.6);
    background: linear-gradient(135deg, 
        rgba(244, 208, 63, 0.2) 0%, 
        rgba(212, 165, 116, 0.15) 30%,
        rgba(244, 208, 63, 0.18) 100%);
}

.work-icon:hover .loyalty-badge::before {
    left: 100%;
}

.work-icon:hover .loyalty-badge::after {
    opacity: 1;
}

.bottle-icon {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, 
        #d4a574 0%, 
        #e8c89f 20%,
        #f4d03f 50%, 
        #e8c89f 80%,
        #d4a574 100%);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.35),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.bottle-icon::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 38px;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 30%,
        #0a0a0a 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1),
        0 3px 12px rgba(212, 165, 116, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.3);
}

.bottle-icon::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 52px;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 20%,
        #0a0a0a 80%,
        #1a1a1a 100%);
    border-radius: 10px;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1),
        0 3px 12px rgba(212, 165, 116, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.3);
}

.work-icon:hover .bottle-icon {
    box-shadow: 
        0 25px 60px rgba(244, 208, 63, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(244, 208, 63, 0.3),
        0 0 40px rgba(244, 208, 63, 0.25);
    transform: scale(1.1) rotateY(12deg) rotateX(2deg);
    background: linear-gradient(135deg, 
        #f4d03f 0%, 
        #e8c89f 25%,
        #d4a574 50%, 
        #e8c89f 75%,
        #f4d03f 100%);
}

.calendar-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        #d4a574 0%, 
        #e8c89f 20%,
        #f4d03f 50%, 
        #e8c89f 80%,
        #d4a574 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.35),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.calendar-icon::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 50%, #c19660 100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
}

.calendar-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 28px;
    width: 10px;
    height: 24px;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 50%,
        #0a0a0a 100%);
    border-radius: 5px;
    box-shadow: 
        34px 0 0 linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%), 
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.calendar-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 2;
}

.work-icon:hover .calendar-icon {
    box-shadow: 
        0 25px 60px rgba(244, 208, 63, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(244, 208, 63, 0.3),
        0 0 40px rgba(244, 208, 63, 0.25);
    transform: scale(1.1) rotateY(12deg) rotateX(2deg);
    background: linear-gradient(135deg, 
        #f4d03f 0%, 
        #e8c89f 25%,
        #d4a574 50%, 
        #e8c89f 75%,
        #f4d03f 100%);
}

.trophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        #d4a574 0%, 
        #e8c89f 20%,
        #f4d03f 50%, 
        #e8c89f 80%,
        #d4a574 100%);
    border-radius: 50% 50% 35px 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.35),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.trophy-icon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 22px;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 50%, #c19660 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 18px rgba(212, 165, 116, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
}

.trophy-icon::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.6rem;
    color: #0a0a0a;
    font-weight: bold;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(212, 165, 116, 0.6),
        0 0 15px rgba(244, 208, 63, 0.4);
    filter: drop-shadow(0 0 12px rgba(244, 208, 63, 0.7));
    transition: all 0.6s ease;
}

.work-icon:hover .trophy-icon {
    box-shadow: 
        0 25px 60px rgba(244, 208, 63, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(244, 208, 63, 0.3),
        0 0 40px rgba(244, 208, 63, 0.25);
    transform: scale(1.1) rotateY(12deg) rotateX(2deg);
    background: linear-gradient(135deg, 
        #f4d03f 0%, 
        #e8c89f 25%,
        #d4a574 50%, 
        #e8c89f 75%,
        #f4d03f 100%);
}

.work-icon:hover .trophy-icon::after {
    color: #0a0a0a;
    transform: translate(-50%, -50%) scale(1.15) rotateZ(18deg);
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(244, 208, 63, 0.8),
        0 0 25px rgba(244, 208, 63, 0.6);
    filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.9));
}

.list-icon {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, 
        #d4a574 0%, 
        #e8c89f 20%,
        #f4d03f 50%, 
        #e8c89f 80%,
        #d4a574 100%);
    border-radius: 15px;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.35),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.list-icon::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    height: 5px;
    background: linear-gradient(90deg, 
        #1a1a1a 0%, 
        #2d2d2d 50%,
        #0a0a0a 100%);
    border-radius: 3px;
    box-shadow: 
        0 12px 0 linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%), 
        0 24px 0 linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%),
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.list-icon::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 12px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 50%,
        #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: 
        0 12px 0 linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%), 
        0 24px 0 linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%),
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.work-icon:hover .list-icon {
    box-shadow: 
        0 25px 60px rgba(244, 208, 63, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(244, 208, 63, 0.3),
        0 0 40px rgba(244, 208, 63, 0.25);
    transform: scale(1.1) rotateY(12deg) rotateX(2deg);
    background: linear-gradient(135deg, 
        #f4d03f 0%, 
        #e8c89f 25%,
        #d4a574 50%, 
        #e8c89f 75%,
        #f4d03f 100%);
}

.work-content {
    position: relative;
}

.work-content h3 {
    font-size: 2.8rem;
    font-weight: 300;
    color: white;
    margin: 0;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-item:hover .work-content h3 {
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(10px);
    text-shadow: 0 6px 25px rgba(212, 165, 116, 0.3);
}

.work-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #f4d03f);
    transition: width 0.5s ease;
}

.how-it-works-item:hover .work-content::after {
    width: 100px;
}

/* Not Discount Club Section */
.not-discount-club {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    text-align: left;
    border-top: 1px solid #333;
}

.club-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin: 0 0 50px 0;
    color: white;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.club-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.club-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 40px 0;
    color: rgba(255,255,255,0.9);
    font-style: normal;
    font-family: 'Playfair Display', serif;
}

.club-description {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

.cta-content p {
    font-size: 1.2rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #2c1810;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .winners-announcement {
        padding: 25px;
    }
    
    .announcement-header {
        flex-direction: column;
        text-align: center;
    }
    
    .winners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .winner-card {
        padding: 15px;
    }
    
    .winner-name {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .detail-card,
    .faq-item {
        padding: 25px 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 auto 20px auto;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* How It Works Mobile */
    .how-it-works {
        padding: 80px 0;
    }
    
    .how-it-works .section-title {
        font-size: 3rem;
        margin-bottom: 60px;
        letter-spacing: -0.5px;
    }
    
    .how-it-works-grid {
        padding: 0 30px;
        gap: 50px;
    }
    
    .how-it-works-item {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    
    .work-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .work-content h3 {
        font-size: 1.8rem;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Adjust icon sizes for mobile */
    .bottle-icon {
        width: 70px;
        height: 90px;
    }
    
    .calendar-icon {
        width: 70px;
        height: 70px;
    }
    
    .calendar-number {
        font-size: 1.8rem;
    }
    
    .trophy-icon {
        width: 70px;
        height: 70px;
    }
    
    .trophy-icon::after {
        font-size: 1.5rem;
    }
    
    .list-icon {
        width: 70px;
        height: 55px;
    }
    
    .loyalty-badge {
        padding: 12px 18px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    /* Not Discount Club Mobile */
    .not-discount-club {
        padding: 60px 0;
        text-align: center;
    }
    
    .club-title {
        font-size: 2.8rem;
        padding: 0 20px;
    }
    
    .club-content {
        padding: 0 20px;
    }
    
    .club-subtitle {
        font-size: 1.5rem;
    }
    
    .club-description {
        font-size: 1.2rem;
    }
}

/* Homepage Winners Section Styles */
.homepage-winners {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
}

.homepage-winners .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.homepage-winners .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.homepage-winners .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    color: #2c1810;
}

.homepage-winners .section-header p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px 0;
}

.homepage-winners .view-all-link {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.homepage-winners .view-all-link:hover {
    border-bottom-color: #d4a574;
}

.homepage-winners .homepage-winners-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px 0 !important;
}

.homepage-winners .homepage-winner-card {
    background: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    text-align: center !important;
    border: 2px solid rgba(212, 165, 116, 0.3) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    display: block !important;
}

.homepage-winners .homepage-winner-card:hover {
    border-color: #d4a574 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.homepage-winner-card .winner-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.homepage-winner-card .winner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.homepage-winner-card .winner-id {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}