/* FuzeTopV1 Page-specific Styles */
/* Note: Shared component styles are in shared-styles.css */

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

.hero {
    background: #a8ab9e;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid #b5b8ab;
}

.hero h2 {
    color: #3a3d32;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a4d40;
}

.features {
    background: #a8ab9e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #b5b8ab;
}

.features h3 {
    color: #3a3d32;
    margin-bottom: 1rem;
}

.features ul {
    list-style-type: none;
    padding-left: 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #9a9d90;
    color: #4a4d40;
}

.features li:before {
    content: "✓ ";
    color: #5a6350;
    font-weight: bold;
}

/* Page-specific content styles */

/* Action buttons section */
.action-buttons {
    background: #a8ab9e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #b5b8ab;
}

.action-buttons h3 {
    color: #3a3d32;
    margin-bottom: 1.5rem;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #9a9c8e;
    color: #f0f0ed;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid #b0b2a4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.action-button:hover {
    background: #b0b2a4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.chronoflow-button {
    background: #a5a892;
    border: 1px solid #b5b8a5;
}

.chronoflow-button:hover {
    background: #b5b8a5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}