/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Background Gradient */
.background-gradient {
    background: linear-gradient(to bottom, #09090b, #18181b, #000000);
}

/* Fade In Animation */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Tab Content Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-trigger.active {
    background-color: rgb(17 24 39);
    color: white;
    font-weight: 600;
}

/* Accordion Content Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 500px;
}

/* Chevron Animation */
.chevron {
    transition: transform 0.3s ease;
}

.chevron.open {
    transform: rotate(180deg);
}

/* Hero Section Styles */
.hero-section {
    min-height: 60vh;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 80vh;
    }
}

/* Ensure responsive image */
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85%;
}
.pumpkin-icon {
    margin-top: -6px;
}

@media (max-width: 768px) {
    .hero-bg-image {
        object-position: 75%;
    }
    .remove-padding-mob {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* CTA Button Animation */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, #ea580c, #db2777, #f97316, #ec4899);
    background-size: 300% 100%;
    animation: gradient-shift 4s ease infinite;
}

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

/* Shimmer effect on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Overview Cards Background Gradients */
.overview-card-1,
.overview-card-2,
.overview-card-3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card-1 {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(12, 74, 110, 0.2), rgba(30, 41, 59, 0.8));
}

.overview-card-2 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15), rgba(30, 41, 59, 0.8));
}

.overview-card-3 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(20, 184, 166, 0.15), rgba(30, 41, 59, 0.8));
}

/* Card hover effects */
.overview-card-1:hover,
.overview-card-2:hover,
.overview-card-3:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mechanics Section Table Styling */
#deposits table,
#daily table {
    table-layout: fixed;
}

#deposits table td,
#deposits table th,
#daily table td,
#daily table th {
    width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Table Row Striping for Better Readability */
#deposits table tbody tr:nth-child(odd),
#daily table tbody tr:nth-child(odd) {
    background-color: rgba(39, 39, 42, 0.4);
}

#deposits table tbody tr:nth-child(even),
#daily table tbody tr:nth-child(even) {
    background-color: rgba(63, 63, 70, 0.4);
}

/* FAQ Section Styling */
.faq-accordion {
    background: rgba(9, 9, 11, 0.8);
    border: 1px solid rgb(39 39 42);
}

.accordion-item {
    background-color: rgba(17, 24, 39, 0.6);
}

.accordion-content-inner {
    padding: 1rem 1.25rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgb(212 212 216);
}

@media (min-width: 768px) {
    .accordion-content-inner {
        padding: 1.25rem 1.5rem 2rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Open accordion content background */
.accordion-content.open .accordion-content-inner {
    background-color: rgba(24, 24, 27, 0.6);
}

/* Info Cards Styling - Subtle and Readable */
.info-card {
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-card h2 {
    position: relative;
}

.info-card svg {
    transition: color 0.3s ease;
}

.info-card:hover svg {
    color: rgb(161 161 170);
}

