body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #f5f0e1;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
/* Modern Background Design */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(214, 138, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(214, 138, 74, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(214, 138, 74, 0.05) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(214, 138, 74, 0.08) 100%),
        url('images/all_pano.jpg') center/cover no-repeat;
    background-attachment: fixed;
    animation: backgroundShift 20s ease-in-out infinite;
}
@keyframes backgroundShift {
    0%, 100% { filter: brightness(0.8) contrast(1.2) saturate(1.1); }
    50% { filter: brightness(0.9) contrast(1.3) saturate(1.2); }
}
/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(214, 138, 74, 0.1), rgba(214, 138, 74, 0.05));
    animation: float 15s ease-in-out infinite;
}
.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 85%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(214, 138, 74, 0.08), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 5s;
    background: linear-gradient(135deg, rgba(214, 138, 74, 0.06), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 15%;
    animation-delay: 10s;
    background: linear-gradient(225deg, rgba(214, 138, 74, 0.05), transparent);
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        opacity: 0.6;
    }
}
/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(214, 138, 74, 0.6);
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
}
.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}
.particle:nth-child(2) {
    left: 40%;
    animation-delay: 5s;
    animation-duration: 30s;
}
.particle:nth-child(3) {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 20s;
}
.particle:nth-child(4) {
    left: 80%;
    animation-delay: 15s;
    animation-duration: 35s;
}
.particle:nth-child(5) {
    left: 90%;
    animation-delay: 20s;
    animation-duration: 28s;
}
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}
header {
    padding: 3rem 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(ellipse at top, rgba(214, 138, 74, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(10px);
    position: relative;
    border-bottom: 1px solid rgba(214, 138, 74, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(214, 138, 74, 0.03) 50%, transparent 60%);
    animation: headerShine 8s ease-in-out infinite;
}
@keyframes headerShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 26, 26, 0.85);
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(214, 138, 74, 0.1),
        inset 0 1px 0 rgba(214, 138, 74, 0.1);
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 138, 74, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero:hover::before {
    opacity: 1;
}
.hero-logo {
    max-width: 300px;
    width: 40%;
    height: auto;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(214, 138, 74, 0.2));
}
.hero-logo:hover {
    transform: scale(1.05) rotate(1deg);
}
.hero-text {
    width: 60%;
    position: relative;
}
.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    color: #d68a4a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}
.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d68a4a, transparent);
    border-radius: 2px;
}
.hero-text p {
    max-width: 100%;
    margin: 0 0 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}
h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #d68a4a;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d68a4a, #b5753e);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: justify;
}
.info-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(214, 138, 74, 0.1);
    backdrop-filter: blur(10px);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    position: relative;
}
.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 138, 74, 0.02) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.info-section:hover::before {
    opacity: 1;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}
.benefit-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(214, 138, 74, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 138, 74, 0.1), transparent);
    transition: left 0.5s ease;
}
.benefit-card:hover::before {
    left: 100%;
}
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(214, 138, 74, 0.2);
    border-color: rgba(214, 138, 74, 0.3);
}
.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.benefit-card p {
    text-align: justify;
    position: relative;
    z-index: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
}
.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.6s ease;
    border: 2px solid transparent;
}
.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(214, 138, 74, 0.3);
    border-color: rgba(214, 138, 74, 0.5);
}
.gallery-img::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #f5f0e1;
    font-size: 0.9rem;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-img:hover::after {
    opacity: 1;
}
.gallery-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.6s ease;
    border: 2px solid transparent;
}
.gallery-video:hover {
    filter: grayscale(0%);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(214, 138, 74, 0.3);
    border-color: rgba(214, 138, 74, 0.5);
}
.chart-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(214, 138, 74, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}
.chart-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}
.chart-img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(214, 138, 74, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.chart-img:hover {
    border-color: rgba(214, 138, 74, 0.5);
    box-shadow: 0 20px 40px rgba(214, 138, 74, 0.3);
    transform: scale(1.02);
}
.chart-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, rgba(214, 138, 74, 0.9), rgba(214, 138, 74, 0.7));
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(214, 138, 74, 0.3);
}
.chart-arrow:hover {
    background: linear-gradient(45deg, rgba(214, 138, 74, 1), rgba(214, 138, 74, 0.8));
    transform: translateY(-50%) scale(1.1);
}
.chart-arrow.left {
    left: 20px;
}
.chart-arrow.right {
    right: 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}
.product-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(214, 138, 74, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 138, 74, 0.1), transparent);
    transition: left 0.5s ease;
}
.product-card:hover::before {
    left: 100%;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(214, 138, 74, 0.2);
    border-color: rgba(214, 138, 74, 0.3);
}
.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.product-card p {
    text-align: justify;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.product-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.product-img:hover {
    border-color: rgba(214, 138, 74, 0.5);
    box-shadow: 0 10px 20px rgba(214, 138, 74, 0.2);
}
.buy-button {
    display: inline-block;
    background: linear-gradient(45deg, #d68a4a, #b5753e);
    color: #000000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(214, 138, 74, 0.3);
    position: relative;
    z-index: 1;
}
.buy-button:hover {
    background: linear-gradient(45deg, #b5753e, #d68a4a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 138, 74, 0.4);
}
.note {
    font-style: italic;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}
ol {
    max-width: 800px;
    margin: 1rem auto;
    padding-left: 2rem;
    text-align: left;
}
ol li {
    margin-bottom: 1rem;
    text-align: left;
}
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    margin-top: 3rem;
    border-top: 1px solid rgba(214, 138, 74, 0.2);
    backdrop-filter: blur(10px);
}
footer a {
    color: #d68a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #b5753e;
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.close {
    cursor: pointer;
    position: absolute;
    color: #f5f0e1;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    top: 20px;
    right: 30px;
}
.close:hover {
    color: #d68a4a;
    transform: scale(1.1);
}
/* Regular navigation arrows (for gallery and chart images) */
.prev, .next {
    cursor: pointer;
    position: absolute;
    color: #f5f0e1;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(214, 138, 74, 0.7);
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
}
.prev:hover, .next:hover {
    color: #000;
    background: rgba(214, 138, 74, 1);
    transform: translateY(-50%) scale(1.1);
}
.prev {
    left: 30px;
}
.next {
    right: 30px;
}
/* Product-specific arrows (for product images) */
.product-arrow {
    cursor: pointer;
    position: absolute;
    color: #000;
    background: linear-gradient(45deg, rgba(214, 138, 74, 0.9), rgba(214, 138, 74, 0.7));
    border: none;
    font-size: 2rem;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(214, 138, 74, 0.4);
}
.product-arrow:hover {
    background: linear-gradient(45deg, rgba(214, 138, 74, 1), rgba(214, 138, 74, 0.8));
    transform: translateY(-50%) scale(1.1);
}
.product-arrow.left {
    left: 30px;
}
.product-arrow.right {
    right: 30px;
}
#caption {
    margin-top: 15px;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.1rem;
}
.image-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}
.image-slider img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}
.arrow {
    background: linear-gradient(45deg, rgba(214, 138, 74, 0.8), rgba(214, 138, 74, 0.6));
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(214, 138, 74, 0.3);
}
.arrow:hover {
    background: linear-gradient(45deg, rgba(214, 138, 74, 1), rgba(214, 138, 74, 0.8));
    transform: translateY(-50%) scale(1.1);
}
.arrow.left {
    left: 10px;
}
.arrow.right {
    right: 10px;
}
/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .background-overlay {
        background-attachment: scroll;
    }
   
    .hero {
        flex-direction: column;
        text-align: center;
        border-radius: 15px;
        padding: 1.5rem;
    }
   
    .hero-logo {
        width: 70%;
        margin: 0 auto 1rem;
    }
   
    .hero-text {
        width: 100%;
    }
   
    .hero-text h1, .hero-text p {
        text-align: center;
    }
   
    .hero-text h1 {
        font-size: 2rem;
    }
   
    h2 { font-size: 1.75rem; }
   
    .info-section {
        padding: 1.5rem;
        border-radius: 15px;
    }
   
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
   
    p {
        text-align: left;
    }
   
    .benefit-card p, .product-card p {
        text-align: left;
    }
   
    .product-img {
        height: 250px;
    }
   
    .product-arrow {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
    }
   
    .product-arrow.left {
        left: 15px;
    }
   
    .product-arrow.right {
        right: 15px;
    }
   
    .prev, .next {
        font-size: 30px;
        padding: 8px 12px;
    }
   
    .prev {
        left: 15px;
    }
   
    .next {
        right: 15px;
    }
   
    .geometric-shape {
        display: none;
    }
   
    .floating-particles {
        display: none;
    }
}
/* Affiliates Program Section */
.affiliates-program {
    background-color: #1f1f1b; /* soft warm tone to match food theme */
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.affiliates-program h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #c47f1e; /* rich golden brown */
    text-align: center;
}
.affiliates-program h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    text-align: center;
    color: #444;
    font-weight: normal;
}
.affiliates-program p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    text-align: center;
}
.affiliates-program ul {
    max-width: 800px;
    margin: 0 auto 30px;
    padding-left: 20px;
}
.affiliates-program li {
    margin-bottom: 10px;
    line-height: 1.5;
}
.affiliate-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.affiliate-image img {
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Button styling */
.bitcoin-button {
    background-color: #f7931a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px 0;
    text-decoration: none;
    display: inline-block;
}
.bitcoin-button:hover {
    background-color: #e67e22;
}
/* SATS price styling */
.sats-price {
    margin: 10px 0;
    font-size: 24px;
    padding: 0;
    color: #f7931a; /* Bitcoin orange to match theme */
}
