@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

.container {
    max-width: 1200px;
}

.bg-green-500 {
    background-color: #10B981;
}

.bg-blue-600 {
    background-color: #2563EB;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-xl {
    border-radius: 1rem;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 300ms;
}

/* FAQ accordion */
.bg-white.p-6.rounded-lg h3+p {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
    }

    .text-5xl {
        font-size: 2.5rem;
    }
}

nav {
    background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

a:hover {
    opacity: 0.9;
}

a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

a:hover:after {
    width: 100%;
}

.download-btn {
    background: white;
    color: #2563EB;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.download-btn:hover {
    background: #f1f1f1;
    opacity: 1;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

footer {
    background: #1F2937;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E5E7EB;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #9CA3AF;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #10B981;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Enhanced table styles */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

th {
    background-color: #1F2937;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td,
th {
    padding: 12px 16px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #F9FAFB;
}

/* Bar chart animation */
@keyframes barRise {
    from {
        height: 0;
    }

    to {
        height: var(--target-height);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    table {
        font-size: 0.875rem;
    }

    td,
    th {
        padding: 8px 10px;
    }
}

.bonus-container {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 2rem 0;
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.bonus-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.bonus-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bonus-cta {
    display: inline-block;
    background: white;
    color: #ef4444;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bonus-decoration {
    position: absolute;
    opacity: 0.1;
}

.coin-1 {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
}

.coin-2 {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .bonus-features {
        grid-template-columns: 1fr;
    }
}