        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

        /* Navigation */
        nav {
            background: #FFF;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
            box-shadow: 0 10px 7px rgba(0, 0, 0, 0.2);
            border-bottom: #662e93 4px solid;
        }

        nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

        .logo {
            font-size: 2rem;
            font-weight: 900;
            font-style: italic;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo span {
            display: inline-block;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            font-size: 20px;
            text-transform: uppercase;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff4757;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle, rgba(255,71,87,0.3) 10%, transparent 10%),
                radial-gradient(circle, rgba(255,195,0,0.3) 10%, transparent 10%);
            background-size: 100px 100px;
            background-position: 0 0, 50px 50px;
            animation: float 20s infinite linear;
            opacity: 0.5;
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        .hero .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }

        .hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        /* Deal the Deck Widget */
        .deal-widget {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            margin: 2rem auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.3s;
        }

        .deal-widget:hover {
            transform: perspective(1000px) rotateY(2deg);
        }

        .card-display {
            width: 300px;
            height: 420px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.3s;
        }

        .card-display:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .card-display.shuffling {
            animation: shuffle 0.5s ease-in-out;
        }

        @keyframes shuffle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg) translateX(-20px); }
            75% { transform: rotate(5deg) translateX(20px); }
        }

        .card-content {
            text-align: center;
            padding: 2rem;
            color: white;
        }

        .card-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 900;
        }

        .card-content p {
            font-size: 1.2rem;
            line-height: 1.4;
        }

        .deal-button {
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 1.3rem;
            font-weight: 900;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255,71,87,0.4);
        }

        .deal-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,71,87,0.6);
        }

        .deal-button:active {
            transform: translateY(-1px);
        }

        /* Classic Deck Feature */
        .deck-feature {
            padding: 5rem 2rem;
            background: #fff;
        }

        .deck-feature .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .deck-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 900;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .deck-info h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .deck-info p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            padding: 1rem 2.5rem;
            margin-right:5px;            
            text-decoration: none;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255,71,87,0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,71,87,0.6);
        }
        .learn-more-button {
            display: inline-block;
            background: #f8f9fa;
            color: #333;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255,71,87,0.4);
        }

        .learn-more-button:hover,
        .learn-more-button.active {
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            border-color: #ff4757;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,71,87,0.6);
        }

        /* Why Dinner Deck */
        .why-section {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .why-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-section h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 3rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }

        .benefit:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .benefit p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Featured Blog */
        .blog-section {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }

        .blog-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-section h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 3rem;
            text-align: center;
            text-transform: uppercase;
            color: #000;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .blog-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #555;
        }

        .blog-content {
            padding: 3rem;
        }

        .blog-content h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #000;
        }

        .blog-content .date {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .blog-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: #ff4757;
            text-decoration: none;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #ff6348;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 3rem;
            text-align: center;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 900;
            text-transform: uppercase;
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .reviews-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .reviews-header h2 {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #FFF;
        }

        .rating-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: 1.2rem;
        }

        .stars {
            color: #ffd700;
            font-size: 1.5rem;
        }

        .review-slider-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .review-grid {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255,71,87,0.4);
            z-index: 10;
        }

        .slider-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(255,71,87,0.6);
        }

        .slider-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-button:disabled:hover {
            transform: translateY(-50%);
        }

        .slider-button.prev {
            left: 0;
        }

        .slider-button.next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #ff4757;
            width: 30px;
            border-radius: 6px;
        }

        .review-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s;
            flex: 0 0 calc((100% - 4rem) / 3);
            
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-name {
            font-weight: 900;
            text-transform: uppercase;
            color: #333;
        }

        .review-stars {
            color: #ffd700;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .review-date {
            font-size: 0.85rem;
            color: #999;
        }


        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        footer .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        footer h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 900;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 0.5rem;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #ff4757;
        }

        .charity-note {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            text-align: center;
        }

        .charity-note p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .copyright {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .deal-widget {
                padding: 2rem 1rem;
            }

            .card-display {
                width: 250px;
                height: 350px;
            }

            .deck-feature .container,
            .blog-card {
                grid-template-columns: 1fr;
            }

            .deck-info h2,
            .why-section h2,
            .blog-section h2,
            .testimonials h2 {
                font-size: 2rem;
            }

            .benefits {
                grid-template-columns: 1fr;
            }
            .learn-more-button {
                margin-top:10px;
            }
            .review-slider-container {
                padding: 0;
            }

            .review-grid {
                gap: 0;
            }

            .review-card {
                flex: 0 0 100%;
            }

            .slider-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .slider-button.prev {
                left: 10px;
            }

            .slider-button.next {
                right: 10px;
            }
        }
