/* CSS MIME Type Header */
/* Content-Type: text/css */

/* Super Customizable Spinner - Complete CSS */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --glow-color: #ff6a00;
    --glow-color-light: #ff8533;
    --title-font: 'Orbitron';
    --item-height: 60px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111827;
    color: #f3f4f6;
    overflow-x: hidden;
    min-height: 100vh;
}

.title-font {
    font-family: var(--title-font), sans-serif;
}

.neon-glow {
    box-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color);
}

.neon-text {
    text-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color);
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--glow-color);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-buttons button {
    padding: 0.5rem 1rem;
    background: #374151;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-buttons button:hover {
    background: #4b5563;
}

.nav-buttons button.active {
    background: var(--glow-color);
    color: #111827;
}

/* Main Content Layout */  
.main-content {
    margin-top: 80px;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    transition: all 0.3s ease;
}

/* Left Side - Spinner Area */
.spinner-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spinner-area.with-panel {
    max-width: calc(100% - 400px);
}

/* Right Side - Panel Container */
.panel-container {
    width: 0;
    overflow: hidden;
    background: rgba(17, 24, 39, 0.95);
    border-left: 1px solid #374151;
    transition: width 0.3s ease;
    backdrop-filter: blur(10px);
}

.panel-container.active {
    width: 400px;
}

.panel-content {
    width: 400px;
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Spinner Section */
.spinner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
}

.spinner-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Current Task Display in Main Area */
.current-task-display {
    background: rgba(17, 24, 39, 0.95);
    border: 2px solid var(--glow-color);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.current-task-display.hidden {
    display: none;
}

/* Ticker/Spinner Components */
.ticker-viewport {
    height: calc(var(--item-height) * 5);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid #374151;
    background-color: rgba(0,0,0,0.1);
}

.ticker-reel {
    width: 100%;
    height: 100%;
    position: relative;
}

.ticker-item {
    height: var(--item-height);
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    padding: 0 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ticker-viewport::before, .ticker-viewport::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(var(--item-height) * 2);
    z-index: 2;
    pointer-events: none;
}

.ticker-viewport::before {
    top: 0;
    background: linear-gradient(to bottom, #111827, transparent);
}

.ticker-viewport::after {
    bottom: 0;
    background: linear-gradient(to top, #111827, transparent);
}

.pointer-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: var(--item-height);
    transform: translateY(-50%);
    border-top: 2px solid var(--glow-color);
    border-bottom: 2px solid var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
    z-index: 1;
    opacity: 0.7;
}

/* Spin Button */
#spinBtn {
    padding: 1rem 2.5rem;
    background: #374151;
    color: white;
    border: 2px solid var(--glow-color);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

#spinBtn:hover:not(:disabled) {
    background: var(--glow-color);
    color: #111827;
    transform: scale(1.05);
}

#spinBtn:active:not(:disabled) {
    transform: scale(0.95);
}

/* Panel Styling */
.panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    overflow-y: auto;
    position: relative;
}

.panel.hidden {
    display: none !important;
}

.panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glow-color);
}

.panel small {
    color: #9ca3af;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.5rem;
}

/* Manage Panel Specific Layout */
#managePanel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#managePanel .task-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex items to shrink below content size */
}

#managePanel #taskList {
    flex-shrink: 0;
    max-height: 300px;
    overflow-y: auto;
}

#managePanel .completed-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    min-height: 0; /* Allow flex items to shrink below content size */
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.setting-group {
    background: rgba(55, 65, 81, 0.5);
    padding: 1rem;
    border-radius: 8px;
}

.setting-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.setting-group input, .setting-group select {
    width: 100%;
    padding: 0.5rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #f3f4f6;
}

.setting-group input:focus, .setting-group select:focus {
    outline: none;
    border-color: var(--glow-color);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

/* Range Input Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: #374151;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

input[type="range"]:hover { 
    opacity: 1; 
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--glow-color);
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--glow-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Button Styles */
.custom-button {
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.custom-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.custom-button.primary {
    background: linear-gradient(135deg, var(--glow-color), var(--glow-color-light));
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.custom-button.primary:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.custom-button.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.custom-button.success:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.custom-button.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.custom-button.danger:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(50%);
}

/* Checkbox Styling */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--glow-color);
    cursor: pointer;
}

/* Task Management */
#taskInput {
    flex: 1;
    padding: 0.75rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px 0 0 6px;
    color: #f3f4f6;
}

#taskInput:focus {
    outline: none;
    border-color: var(--glow-color);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

#addTaskBtn {
    padding: 0.75rem 1rem;
    background: var(--glow-color);
    color: #111827;
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

#addTaskBtn:hover {
    background: var(--glow-color-light);
}

#searchInput {
    width: 100%;
    padding: 0.75rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #f3f4f6;
}

#searchInput:focus {
    outline: none;
    border-color: var(--glow-color);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

#taskList {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

#completedTaskList {
    flex: 1;
    min-height: 100px;
    overflow-y: auto;
    color: #9ca3af;
}

.task-item {
    background: #374151;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.task-item:hover {
    background: #4b5563;
    border-left-color: var(--glow-color);
    transform: translateX(5px);
}

.task-item .remove-btn,
.completed-task-item .remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.task-item .remove-btn:hover,
.completed-task-item .remove-btn:hover {
    background: #dc2626;
}

/* Viewer Controls */
.viewer-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 8px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-group span {
    font-weight: 600;
    color: #d1d5db;
}

#filterControls, #sortControls {
    display: flex;
}

/* Task Grid for Viewer */
.task-grid {
    display: grid;
    gap: 0.5rem;
    width: 100%;
    height: 400px;
    overflow-y: auto;
}

.task-grid-item {
    background-color: #374151;
    border-radius: 8px;
    color: #f3f4f6;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    overflow: hidden;
    word-break: break-word;
    min-height: 50px;
}

.task-grid-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.task-grid-item.completed {
    background-color: #166534;
    color: #d1fae5;
}

/* Viewer Controls */
.viewer-btn {
    padding: 0.5rem 1rem;
    background-color: #4b5563;
    color: white;
    transition: all 0.2s ease-in-out;
    border: 1px solid #374151;
    font-weight: 600;
    cursor: pointer;
}

.viewer-btn:hover {
    background-color: #374151;
}

.viewer-btn.active {
    background-color: var(--glow-color);
    color: #111827;
    box-shadow: 0 0 8px var(--glow-color);
    border-color: var(--glow-color);
    transform: scale(1.05);
}

#filterControls button:first-child, #sortControls button:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

#filterControls button:last-child, #sortControls button:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Viewer Header */
.viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fullscreen-btn {
    background: #4b5563;
    border: 2px solid #6b7280;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-btn:hover {
    background: var(--glow-color);
    border-color: var(--glow-color);
    color: #111827;
    box-shadow: 0 0 8px var(--glow-color);
    transform: scale(1.05);
}

/* Fullscreen Styles */
.viewer-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111827;
    z-index: 9999;
    padding: 2rem;
    box-sizing: border-box;
    overflow: auto;
}

.viewer-fullscreen .viewer-header {
    margin-bottom: 2rem;
}

.viewer-fullscreen .viewer-header h2 {
    font-size: 2.5rem;
}

.viewer-fullscreen .fullscreen-btn {
    font-size: 1.5rem;
    min-width: 50px;
    height: 50px;
}

.viewer-fullscreen .task-grid {
    height: calc(100vh - 200px);
    gap: 1rem;
}

.viewer-fullscreen .task-grid-item {
    font-size: 1.1rem;
    padding: 1.5rem;
    min-height: 80px;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(8px);
}

.modal.opacity-0 {
    opacity: 0;
}

.modal.pointer-events-none {
    pointer-events: none;
}

.modal-content {
    background: #374151;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
    transform: scale(1);
    transition: transform 0.25s ease;
    max-width: 500px;
    width: 100%;
}

.modal-content.scale-95 {
    transform: scale(0.95);
}

.modal-content h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
}

.modal-content #winnerText {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.modal-content .flex {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Current Task Styling */
#currentTaskContainer {
    text-align: center;
}

#currentTaskText {
    font-size: 2rem;
    line-height: 1.2;
    margin: 1rem 0;
}

#currentTaskActions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Confetti Animation */
.confetti-particle {
    position: fixed;
    top: 105vh;
    left: var(--x-start);
    pointer-events: none;
    font-size: var(--size);
    opacity: 0;
    animation: confetti-arc forwards;
    animation-duration: var(--duration);
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: var(--delay);
}

@keyframes confetti-arc {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) translateX(var(--x-end)) rotate(720deg);
        opacity: 0;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.border-t {
    border-top: 1px solid #374151;
}

.border-gray-600 {
    border-color: #4b5563;
}

/* Settings Panel Specific */
.settings-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.settings-panel small {
    color: #9ca3af;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.5rem;
}

/* Current Task Specific */
#taskStatusHeader {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

#completionStats {
    font-size: 1.125rem;
    font-weight: 600;
    color: #d1d5db;
}

#currentTaskText {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 1.5rem 0;
}

#currentTaskActions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Task Lists */
.completed-task-item {
    background: rgba(55, 65, 81, 0.5);
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Button Groups */
.flex.mb-4 {
    gap: 0.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--glow-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--glow-color-light);
}

/* Focus States */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.settings-panel {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
    }
}

#spinBtn:not(:disabled):hover {
    animation: pulse-glow 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .main-content {
        margin-top: 120px;
    }
    
    .spinner-section h1 {
        font-size: 2rem;
    }
    
    #currentTaskActions {
        flex-direction: column;
        align-items: center;
    }
    
    .flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    .space-x-4 > * + * {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .setting-group {
        padding: 0.75rem;
    }
    
    .custom-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .ticker-viewport {
        margin: 0 0.5rem;
    }
    
    #spinBtn {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .nav-bar,
    .settings-panel,
    .custom-button,
    .confetti-particle {
        display: none ;
    }
    
    body {
        background: white ;
        color: black ;
    }
    
    .task-grid-item {
        border: 1px solid #ccc ;
        background: white ;
        color: black ;
    }
    
    .task-grid-item.completed {
        background: #e6ffe6 ;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms ;
        animation-iteration-count: 1 ;
        transition-duration: 0.01ms ;
    }
    
    .confetti-particle {
        display: none;
    }
}

@media (prefers-contrast: high) {
    :root {
        --glow-color: #ffaa00;
    }
    
    .custom-button {
        border: 2px solid currentColor;
    }
    
    .task-item {
        border: 1px solid #666;
    }
}

/* Buy Me a Coffee Footer - Super Specific Selectors */
footer.coffee-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(31, 41, 55, 0.95) !important;
    padding: 20px 0 !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

footer.coffee-footer .coffee-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 0 50px 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

footer.coffee-footer .coffee-text {
    color: #9ca3af !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-align: right !important;
    font-family: 'Poppins', sans-serif !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

footer.coffee-footer a.coffee-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, var(--glow-color, #ff6a00), var(--glow-color-light, #ff8533)) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

footer.coffee-footer a.coffee-button:hover {
    background: linear-gradient(135deg, var(--glow-color-light, #ff8533), var(--glow-color, #ff6a00)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(255, 106, 0, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

footer.coffee-footer a.coffee-button span {
    font-size: 1.2rem !important;
}



/* Adjust main content to account for footer */
body {
    padding-bottom: 120px !important;
}

/* Hide footer in fullscreen mode */
body.fullscreen .coffee-footer {
    display: none !important;
}

