/* Gold-themed styling for BuyGoldFast.com */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

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

.hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    text-align: center;
    padding: 60px 20px;
    color: #1a1a1a;
}

/* Styles for mobile and default view (which is a mobile-first approach) */
.main-logo-icon {
    max-width: 300px;
    margin-bottom: 20px;
    height: auto;
}

.domain-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: 1.5rem;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 10px 0;
}

.sub-headline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.primary-btn {
    background-color: #1a1a1a;
    color: #FFD700;
}

.primary-btn:hover {
    background-color: #333;
}

.section {
    padding: 60px 20px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
}

.highlight-text {
    color: #FFD700;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.kpi-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.kpi-label {
    font-size: 1rem;
    color: #666;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.kpi-trend {
    font-size: 0.9rem;
}

.kpi-trend.positive { color: #28a745; }
.kpi-trend.warning { color: #dc3545; }

.chart-container-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.chart-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 800px;
}

.chart-visual {
    max-width: 100%;
}

.chart-summary {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.tweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.twitter-tweet {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.opportunity-section {
    background: #f1f1f1;
    text-align: center;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.large-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.contact-info {
    font-size: 1rem;
    margin-top: 20px;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .domain-name { font-size: 2rem; }
    .tagline { font-size: 1.2rem; }
    .sub-headline { font-size: 1rem; }
}

/* Add this to your style.css */
.chart-container-wrapper {
    height: 400px; /* Or a different fixed height */
    width: 100%;
}

.hidden {
  display: none;
}