/* CueMasters Custom Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #E4B65E;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F0D08C;
}

/* Active nav link */
.nav-link.active {
    color: #E4B65E;
    background-color: rgba(228, 182, 94, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #E4B65E 0%, #F0D08C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 182, 94, 0.1);
}

/* Hover glow effect */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(228, 182, 94, 0.4);
}

/* Card styles */
.card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(228, 182, 94, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #E4B65E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 182, 94, 0.2);
}

/* Rich text content styling */
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: #E4B65E;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.rich-content h1 {
    font-size: 2.25rem;
}

.rich-content h2 {
    font-size: 1.875rem;
}

.rich-content h3 {
    font-size: 1.5rem;
}

.rich-content h4 {
    font-size: 1.25rem;
}

.rich-content p {
    margin-bottom: 1em;
    line-height: 1.75;
    color: #d1d5db;
}

.rich-content ul,
.rich-content ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

.rich-content ul {
    list-style-type: disc;
}

.rich-content ol {
    list-style-type: decimal;
}

.rich-content li {
    margin-bottom: 0.5em;
    color: #d1d5db;
}

.rich-content li::marker {
    color: #E4B65E;
}

.rich-content a {
    color: #E4B65E;
    text-decoration: underline;
    transition: color 0.2s;
}

.rich-content a:hover {
    color: #F0D08C;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5em 0;
}

.rich-content blockquote {
    border-left: 4px solid #E4B65E;
    padding-left: 1em;
    margin: 1.5em 0;
    font-style: italic;
    color: #9ca3af;
}

.rich-content code {
    background: rgba(228, 182, 94, 0.1);
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.rich-content pre {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(228, 182, 94, 0.2);
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5em 0;
}

.rich-content pre code {
    background: none;
    padding: 0;
}

.rich-content hr {
    position: relative;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(228, 182, 94, 0.3) 20%, rgba(228, 182, 94, 0.6) 50%, rgba(228, 182, 94, 0.3) 80%, transparent 100%);
    margin: 3em 0;
    overflow: visible;
}

.rich-content hr::before {
    content: "\f140";
    /* FontAwesome bullseye icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #E4B65E;
    font-size: 1.5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(228, 182, 94, 0.5);
}

/* Table styles */
.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(228, 182, 94, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

.styled-table thead {
    background: linear-gradient(135deg, #E4B65E 0%, #C99A3D 100%);
}

.styled-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.styled-table td {
    padding: 1rem;
    border-top: 1px solid rgba(228, 182, 94, 0.1);
    color: #d1d5db;
}

.styled-table tbody tr {
    transition: background-color 0.2s;
}

.styled-table tbody tr:hover {
    background-color: rgba(228, 182, 94, 0.05);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #E4B65E 0%, #C99A3D 100%);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(228, 182, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E4B65E;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #E4B65E;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(228, 182, 94, 0.1);
    transform: translateY(-2px);
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: rgba(228, 182, 94, 0.2);
    color: #E4B65E;
    border: 1px solid #E4B65E;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E4B65E 50%, transparent 100%);
    margin: 2rem 0;
}

span.nav-link {
    cursor: default;
}