/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-link {
    color: #ff6b35;
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff6b35;
}

.cart-icon {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #ff6b35;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ff6b35" width="1200" height="600"/><circle fill="%23ffffff" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23ffffff" opacity="0.1" cx="800" cy="300" r="150"/><circle fill="%23ffffff" opacity="0.1" cx="1000" cy="100" r="80"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Beats Section */
.beats-section {
    padding: 80px 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beat-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.beat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.beat-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.beat-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beat-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.beat-info .producer {
    color: #ff6b35;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.beat-info .genre {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.beat-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.beat-actions {
    display: flex;
    gap: 0.5rem;
}

.play-beat-btn,
.add-to-cart-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.play-beat-btn {
    background: #333;
    color: #fff;
}

.play-beat-btn:hover {
    background: #555;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-content {
    text-align: center;
    color: #fff;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature p {
    color: #888;
    margin: 0;
}

/* Upload Section */
.upload-page-main {
    min-height: 100vh;
    padding-top: 90px;
    background: #0a0a0a;
}

.upload-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.upload-intro {
    text-align: center;
    color: #b9b9b9;
    margin: -1.5rem auto 2rem;
    max-width: 700px;
}

.upload-form {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.upload-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.upload-form input,
.upload-form select,
.upload-form button {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.upload-form input[type="file"] {
    padding: 0.6rem;
}

.upload-file-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.upload-file-field label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.upload-file-field label span {
    color: #b9b9b9;
    font-weight: 400;
}

.upload-form button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.upload-form button:hover {
    transform: translateY(-1px);
}

.upload-status {
    color: #ff8c42;
    min-height: 1.2rem;
}

.upload-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.upload-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.moderation-shell {
    max-width: 980px;
}

.moderation-auth {
    background: linear-gradient(150deg, #171717, #232323);
    border: 1px solid #333;
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.moderation-auth label {
    display: block;
    color: #fff;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.moderation-auth-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
}

.moderation-auth-row input,
.moderation-auth-row button {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.moderation-auth-row button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.moderation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.moderation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(150deg, #171717, #232323);
    border: 1px solid #333;
    border-radius: 14px;
    padding: 1.2rem;
}

.moderation-card-art {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    overflow: hidden;
}

.moderation-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moderation-card-main h3 {
    color: #fff;
    margin-bottom: 0.4rem;
}

.moderation-card-main p {
    color: #b9b9b9;
    margin-bottom: 0.2rem;
}

.moderation-approve-btn {
    width: auto;
    min-width: 160px;
}

.moderation-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.moderation-reject-btn {
    min-width: 160px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-right: 1rem;
    width: 30px;
}

.contact-item span {
    color: #fff;
}
.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #fff;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info {
    color: #fff;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-info .price {
    color: #ff6b35;
    font-weight: bold;
}

.remove-item {
    background: #ff4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #333;
}

.cart-total {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.checkout-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.provider-btn {
    border: 1px solid #444;
    background: #242424;
    color: #ddd;
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-btn.active,
.provider-btn:hover {
    border-color: #ff8c42;
    color: #fff;
    background: #2f2f2f;
}

.supported-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: #b9b9b9;
    font-size: 0.85rem;
}

.supported-cards i {
    font-size: 1.45rem;
    color: #e2e2e2;
}

.supported-cards span {
    margin-left: 0.1rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 1rem;
    z-index: 1000;
    transition: bottom 0.3s ease;
    border: 1px solid #333;
}

.audio-player.active {
    bottom: 20px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    background: #ff6b35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.track-info {
    flex: 1;
    color: #fff;
}

.track-name {
    font-weight: 600;
}

.progress-bar {
    flex: 2;
    height: 5px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #ff6b35;
    width: 0%;
    transition: width 0.1s ease;
}

.close-player {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #888;
    font-size: 3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.empty-state {
    color: #888;
    text-align: center;
    padding: 2rem;
    border: 1px dashed #333;
    border-radius: 12px;
}

.beat-meta {
    color: #bbb;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.form-status {
    margin-top: 0.8rem;
    color: #ff8c42;
    min-height: 1.2rem;
}

.toast-stack {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 4000;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    color: #fff;
    min-width: 250px;
    max-width: 360px;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #3a3a3a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: toastIn 0.2s ease;
}

.toast.success {
    border-color: #3ea96f;
}

.toast.error {
    border-color: #d85757;
}

.toast.info {
    border-color: #ff8c42;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.cart-overlay:focus-visible {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

.checkout-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.15), transparent 42%), #0a0a0a;
    padding: 2rem 0 3rem;
}

.checkout-shell {
    max-width: 980px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
}

.checkout-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.45rem;
}

.checkout-subtitle {
    color: #bdbdbd;
    margin-bottom: 1.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.checkout-card {
    background: linear-gradient(150deg, #171717, #232323);
    border: 1px solid #333;
    border-radius: 14px;
    padding: 1.2rem;
}

.checkout-card h2 {
    color: #fff;
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
}

.checkout-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.checkout-method {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #242424;
    border: 1px solid #444;
    color: #ddd;
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.checkout-method.active,
.checkout-method:hover {
    border-color: #ff8c42;
    color: #fff;
    background: #2d2d2d;
}

.checkout-card-note {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin: 0.95rem 0;
}

.checkout-supported-cards {
    margin-bottom: 1rem;
}

.checkout-helper {
    color: #ff8c42;
    margin-top: 0.65rem;
    min-height: 1.2rem;
    font-size: 0.9rem;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #262626;
    border: 1px solid #343434;
    border-radius: 10px;
    padding: 0.7rem;
    color: #fff;
}

.checkout-item-row h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.checkout-item-row p {
    color: #b7b7b7;
    font-size: 0.86rem;
}

.checkout-total-row {
    margin-top: 0.8rem;
    border-top: 1px solid #3b3b3b;
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.08rem;
}

.checkout-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    color: #fff;
    background: #202020;
}

.checkout-status h3 {
    margin-bottom: 0.3rem;
}

.checkout-status.success {
    border-color: #3ea96f;
    background: rgba(62, 169, 111, 0.15);
}

.checkout-status.error {
    border-color: #d85757;
    background: rgba(216, 87, 87, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .audio-player {
        width: 95%;
    }
    
    .player-controls {
        flex-wrap: wrap;
    }
    
    .filter-bar {
        justify-content: center;
    }

    .upload-row {
        grid-template-columns: 1fr;
    }

    .moderation-auth-row,
    .moderation-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .moderation-card-art {
        width: 100%;
        min-width: 0;
        height: 180px;
    }

    .moderation-card-actions {
        width: 100%;
    }

    .moderation-approve-btn {
        width: 100%;
    }

    .moderation-reject-btn {
        width: 100%;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .beats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beat-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c42;
}
