/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors (HSL format) */
    --background: hsl(0, 0%, 5%);
    --foreground: hsl(0, 0%, 75%);
    --card: hsl(0, 0%, 8%);
    --card-foreground: hsl(0, 0%, 72%);
    --muted: hsl(0, 0%, 12%);
    --muted-foreground: hsl(0, 0%, 55%);
    --primary: hsl(25, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(168, 76%, 42%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --border: hsl(0, 0%, 15%);
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 3rem 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 2.5rem;
    width: auto;
}

.mobile-menu-btn,
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover,
.search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #000;
    z-index: 100;
    transition: left 0.3s ease;
    border-right: 1px solid var(--border);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('/images/hero-casino.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-image: url('/images/hero-casino.webp');
        min-height: 100svh;
        min-height: 100vh;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 5rem 1rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
}

.hero-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--foreground);
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 40rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-description {
        text-align: left;
    }
}

.hero-recommendations {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-recommendations {
        padding: 2rem;
    }
}

.recommendations-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.recommendations-header h2 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--foreground);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .recommendations-header h2 {
        font-size: 1.5rem;
    }
}

.text-primary {
    color: var(--primary);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.recommendation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommendation-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.recommendation-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .recommendation-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
    }
}

.badge-primary {
    background-color: var(--primary);
}

.badge-primary:hover {
    opacity: 0.9;
}

.badge-secondary {
    background-color: var(--secondary);
}

.badge-secondary:hover {
    opacity: 0.9;
}

.badge-dark {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dark:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 700;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(40, 45%, 48%), hsl(42, 50%, 55%));
    color: hsl(0, 0%, 20%);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, hsl(42, 50%, 52%), hsl(44, 55%, 58%));
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: linear-gradient(to bottom, var(--background), #000);
}

.welcome-section {
    padding: 4rem 0;
}

.welcome-section .container {
    max-width: 64rem;
}

.welcome-section > .container > div {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem;
}

.welcome-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.welcome-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.welcome-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-section > .container > div {
        padding: 2rem 1.5rem;
    }
    
    .welcome-section h2 {
        font-size: 1.5rem;
    }
    
    .welcome-content p {
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trophy-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

@media (max-width: 767px) {
    .table-responsive {
        overflow-x: visible;
    }
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card);
    border-radius: 0.5rem;
    overflow: hidden;
}

.data-table thead {
    background-color: var(--muted);
}

.data-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
}

.data-table tbody tr {
    border-top: 1px solid var(--border);
    transition: background-color 0.3s;
}

.data-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.data-table td {
    padding: 1.5rem;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.casino-name {
    font-weight: bold;
    font-size: 1.125rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.bonus {
    color: var(--primary);
    font-weight: 600;
}

.text-muted {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: hsl(168, 76%, 42%);
}

.badge-muted {
    background-color: var(--muted);
    color: var(--muted-foreground);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.slot-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.slot-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
}

.slot-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--muted);
    overflow: hidden;
}

.slot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.slot-content {
    padding: 1rem;
}

.slot-title {
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .slot-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .slot-title {
        font-size: 1.125rem;
    }
}

.slot-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.slot-provider {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.slot-provider-label {
    display: none;
}

@media (min-width: 640px) {
    .slot-provider {
        font-size: 0.875rem;
    }
    
    .slot-provider-label {
        display: inline;
    }
}

.slot-multiplier {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.problem-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.text-destructive {
    color: var(--destructive);
}

.problem-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--muted);
    color: var(--foreground);
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-contact {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }

    .logo {
        height: 3rem;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
    
    .casino-card {
        display: none;
    }
    
    .data-table {
        display: table;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        text-align: left;
        align-items: flex-start;
    }

    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Casino/Sportsbook Cards */
.casino-card {
    display: none;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Detailed Casino Cards - Always Visible */
.casino-detail-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.casino-card-info {
    flex: 1;
}

.casino-card-name {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.casino-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.casino-card-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.casino-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.casino-card-value {
    font-size: 0.875rem;
    text-align: right;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
    
    .data-table {
        display: none;
    }
    
    .casino-card {
        display: block;
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-text {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Utility Classes */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding-top: 5rem;
}

.search-modal.active {
    opacity: 1;
    pointer-events: all;
}

.search-modal-content {
    width: 100%;
    max-width: 42rem;
    margin: 0 1rem;
}

.search-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    color: var(--foreground);
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: var(--muted-foreground);
}

.search-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.search-results {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.5rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-result-category {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.search-result-title {
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 500;
}

.search-empty {
    text-align: center;
    color: var(--muted-foreground);
    padding: 3rem 2rem;
    font-size: 1rem;
}

/* Search Results Scrollbar */
.search-results::-webkit-scrollbar {
    width: 0.5rem;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0.25rem;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: hsl(25, 100%, 60%);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: hsl(25, 100%, 60%);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 2.5rem;
        height: 2.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}