/* Navbar Components */
.navbar-light .navbar-brand,
.navbar-light .nav-link {
    color: #FF7B00 !important;
}

.navbar-brand {
    font-family: 'Hogfish', sans-serif;
    font-size: 2.5rem;
    padding: 0.5rem 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-chub {
    color: white;
    margin-right: 3px;
}

.brand-hub {
    background-color: #FF7B00;
    color: black;
    padding: 2px 10px;
    border-radius: 8px;
    text-transform: lowercase;
}

/* Table Components */
.table-responsive {
    background: #f8f9fb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    padding: 0;
    border: 1px solid #e0e0e0;
    background-image: 
        linear-gradient(90deg, #ff9f8730 1px, transparent 1px),
        linear-gradient(#f8f9fb 1.5em, #c7d4e8 1px);
    background-size: 
        3em 100%,
        100% 1.5em;
    background-position: 0 0;
    background-repeat: repeat;
}

.table {
    color: #333 !important;
    background: #f8f9fb;
    margin-left: 45px;
    width: calc(100% - 45px);
}

/* Navigation Buttons */
.nav-btn {
    background-color: transparent;
    color: #FF7B00 !important;
    border: 2px solid #FF7B00;
    border-radius: 24px !important;
    padding: 8px 20px !important;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-link.logout-btn {
    background-color: #FF7B00;
    color: black !important;
    border-radius: 20px;
    padding: 8px 20px;
    margin-left: auto;
}

/* Points Display */
.points-display {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-right: 1rem;
}

.points-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.points-display i {
    font-size: 1.1rem;
}

.points-value {
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, color 0.3s;
}

/* Audio Player */
.audio-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 10px;
    border-top: 2px solid #FF7B00;
    z-index: 1000;
    height: 100px;
}

/* FAQ Components */
.faq-container {
    border: 3px solid #ff8c00;
    border-radius: 24px;
    padding: 24px;
    background-color: #1a1a1a;
    margin: 2rem auto;
    max-width: 1200px;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 24px;
}

.faq-header h1 {
    font-size: 3rem;
    color: #ff8c00;
}

.accordion .accordion-item {
    background-color: #1a1a1a;
    border: 2px solid #FF7B00;
    margin-bottom: 1rem;
    border-radius: 24px;
    overflow: hidden;
}

.accordion-button {
    background-color: #1a1a1a !important;
    color: #FF7B00 !important;
    font-family: 'Hogfish', sans-serif;
    font-size: 1.3rem;
    padding: 1.5rem;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #FF7B00 !important;
    color: black !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #1a1a1a;
    color: #FF7B00;
    font-family: 'Futura Handwritten', sans-serif;
    font-size: 1.1rem;
    padding: 1.5rem;
}

.faq-list, .step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li, .step-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-list li {
    display: flex;
    align-items: center;
}

.step-number {
    background: linear-gradient(135deg, #FF7B00, #ff9d45);
    color: black;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 1rem;
    box-shadow: 0 2px 4px rgba(255, 123, 0, 0.3);
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    line-height: 1.4;
}

.btn-get-started {
    background-color: #FF7B00;
    color: black;
    font-family: 'Hogfish', sans-serif;
    font-size: 1.5rem;
    padding: 1rem 3rem;
    border-radius: 24px;
    border: 2px solid #FF7B00;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
}

/* ... other component styles ... */ 