/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #ffc107;
    --secondary-color: #ffdc5a;
    --success-color: #20c997;
    --warning-color: #ff8c00;
    --danger-color: #e74c3c;
    --info-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #ffc107 0%, #ffdc5a 100%);
    --gradient-2: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
    --gradient-3: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #ffc107 0%, #ffdc5a 20%, #ffd700 40%, #ff8c00 60%, #6c757d 80%, #000000 100%);
    background-size: 400% 400%;
    animation: gradient-wave 15s ease infinite;
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--dark-color);
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-size: 16px;
}

@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p, .card-text {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}

.text-gradient {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* Navigation */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: transparent;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 20h100V0c-5 5-15 5-20 0s-15-5-20 0-15 5-20 0-15-5-20 0-15 5-20 0v20z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 100px; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 400;
    opacity: 0.95;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: white !important;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.bounce-animation {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Cat Meme Grid */
.cat-meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 2rem;
}

.cat-meme {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.cat-meme:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cat-meme img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.cat-meme:hover img {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-cat {
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards */
.auth-card, .form-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    border: none;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-text {
    font-weight: 400;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Professional Navigation & UI Elements */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.form-label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.btn-sm {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.badge {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.auth-icon, .form-icon {
    margin-bottom: 1rem;
}

.auth-title, .form-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle, .form-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 2rem;
}

.feature-card {
    background: #e8e8e8;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: none;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-3);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Dashboard */
.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-content h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.stat-content p {
    margin: 0;
    color: #6c757d;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.stat-card.bg-warning .stat-icon {
    color: var(--warning-color);
}

.stat-card.bg-success .stat-icon {
    color: var(--success-color);
}

.stat-card.bg-info .stat-icon {
    color: var(--info-color);
}

.quick-actions {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

/* Task Sections */
.task-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.task-card {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--warning-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.task-card.completed-task {
    border-left-color: var(--success-color);
    background: #f0fdf4;
}

.task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.task-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
    flex: 1;
    margin-right: 1rem;
}

.task-actions {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.task-description {
    color: #6c757d;
    margin-bottom: 1rem;
    flex: 1;
}

.task-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Procrastination Suggestions */
.procrastination-suggestion {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 220, 90, 0.15));
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.procrastination-suggestion::before {
    content: '😸';
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.suggestion-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.suggestion-text {
    font-style: italic;
    color: #495057;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.95rem;
}

.procrastinate-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #343a40 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.procrastinate-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    color: #343a40 !important;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

/* Form Enhancements */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: var(--transition);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Motivation Box */
.motivation-box {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.motivation-list {
    margin: 0;
    padding-left: 1.5rem;
}

.motivation-list li {
    margin-bottom: 0.5rem;
}

/* Task Info */
.task-info {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--info-color);
}

.info-grid {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .task-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .task-title {
        margin-right: 0;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cat-meme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary {
    background: var(--gradient-1) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-2) !important;
}

.bg-gradient-info {
    background: var(--gradient-3) !important;
}

/* Custom Alert Styles */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

footer .container p {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 600;
}

footer .text-muted {
    color: #cccccc !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a359a;
}

/* Mascot Styles */
.snoozepaw-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    animation: gentle-bounce 3s ease-in-out infinite;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

@keyframes gentle-bounce {
    0%, 50%, 100% { transform: translateY(0); }
    25% { transform: translateY(-3px); }
    75% { transform: translateY(-1px); }
}

/* Distraction Bubble Styles */
.distraction-bubble {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    max-width: 300px;
    border: 3px solid #fff;
}

.distraction-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.distraction-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.mascot-icon {
    font-size: 20px;
    animation: wiggle 2s ease-in-out infinite;
}

.distraction-text {
    flex: 1;
    font-size: 12px;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.distraction-close {
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    color: #ff6b6b;
    transition: all 0.2s ease;
}

.distraction-close:hover {
    background: white;
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Llama Popup Styles */
.llama-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #a8e6cf, #dcedc1);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 400px;
    text-align: center;
    border: 4px solid #fff;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.llama-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.llama-popup-content {
    position: relative;
}

.llama-head {
    font-size: 60px;
    margin-bottom: 15px;
    animation: head-bob 2s ease-in-out infinite;
}

.llama-fact {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.4;
}

.llama-popup button {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.llama-popup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.4);
}

@keyframes head-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SnoozePaw Interruption */
.snoozepaw-interruption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    z-index: 15;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.snoozepaw-interruption.active {
    opacity: 1;
    animation: sleepy-float 2s ease-in-out infinite;
}

@keyframes sleepy-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg) translateY(-10px); }
}

/* Maximum Distraction Button */
.distraction-master-btn {
    background: linear-gradient(135deg, #ff7675, #fab1a0, #00b894, #0984e3);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    border: none;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: scale(1);
    transition: all 0.3s ease;
}

.distraction-master-btn:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 30px rgba(255, 118, 117, 0.4);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Enhanced Task Cards for Distraction */
.task-card {
    position: relative;
    overflow: visible;
}

.task-card.pending-task:hover {
    transform: translateY(-3px) rotate(0.5deg);
}

/* Mascot Navigation Enhancement */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .snoozepaw-logo {
    transition: all 0.3s ease;
}

.navbar-brand:hover .snoozepaw-logo {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

/* Llamoji Emojis */
.llamoji {
    display: inline-block;
    animation: llamoji-bounce 2s ease-in-out infinite;
}

@keyframes llamoji-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Random Chaos Elements */
.chaos-element {
    position: fixed;
    pointer-events: none;
    z-index: 5;
    font-size: 30px;
    opacity: 0.7;
    animation: chaos-float 10s linear infinite;
}

@keyframes chaos-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Lounging Cats Background */
.lounging-cat {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    font-size: 4rem !important;
    opacity: 0.6;
    animation: cat-lounge 20s ease-in-out infinite;
}

.lounging-cat.cat-1 {
    bottom: 20px;
    left: 50px;
    animation-delay: 0s;
}

.lounging-cat.cat-2 {
    bottom: 100px;
    right: 80px;
    animation-delay: 5s;
}

.lounging-cat.cat-3 {
    top: 200px;
    left: 200px;
    animation-delay: 10s;
}

.lounging-cat.cat-4 {
    top: 50%;
    right: 50px;
    animation-delay: 15s;
}

.lounging-cat.cat-5 {
    top: 10%;
    left: 25%;
    animation-delay: 3s;
}

.lounging-cat.cat-6 {
    bottom: 15%;
    right: 20%;
    animation-delay: 8s;
}

.lounging-cat.cat-7 {
    top: 45%;
    left: 2%;
    animation-delay: 12s;
}

.lounging-cat.cat-8 {
    bottom: 60%;
    right: 8%;
    animation-delay: 18s;
}

@keyframes cat-lounge {
    0%, 100% {
        transform: rotate(-5deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.1);
    }
    50% {
        transform: rotate(-3deg) scale(0.9);
    }
    75% {
        transform: rotate(2deg) scale(1.05);
    }
}

/* High Contrast Text - No Glow */
.hero-title, .hero-subtitle, h1, h2, h3, h4, h5, h6, p, .nav-link, .navbar-brand {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* Card text should be dark for contrast against white backgrounds */
.card, .auth-card, .form-card, .task-card, .task-section, .quick-actions {
    color: #343a40 !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.card-title, .card-text, .task-title, .task-description, .stat-content h3, .stat-content p {
    color: #343a40 !important;
    text-shadow: none !important;
}

/* Form labels and inputs */
.form-label {
    color: #343a40 !important;
    text-shadow: none !important;
}

/* Button text */
.btn {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.btn-outline-primary:hover {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Enhanced Glowing Cards */
.glow-card {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
    animation: card-glow 3s ease-in-out infinite alternate;
}

@keyframes card-glow {
    from {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3), 0 0 80px rgba(255, 255, 255, 0.1);
    }
}

/* Floating Particles Background - Enhanced Visibility */
.particle {
    position: fixed;
    pointer-events: none;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Optimized Beer Bottles - Simplified for performance */
.beer-bottle {
    position: fixed;
    pointer-events: none;
    font-size: 20px;
    z-index: 3;
    animation: simple-wobble 8s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}

.beer-bottle.bottle-1 {
    bottom: 10px;
    left: 90px;
}

.beer-bottle.bottle-2 {
    bottom: 80px;
    right: 120px;
}

.beer-bottle.bottle-3 {
    top: 220px;
    left: 240px;
}

.beer-bottle.bottle-4 {
    top: 50%;
    right: 90px;
}

.beer-bottle.bottle-5 {
    top: 20%;
    left: 30%;
}

.beer-bottle.bottle-6 {
    bottom: 40%;
    right: 15%;
}

@keyframes simple-wobble {
    0%, 100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

/* Enhanced Navigation Glow */
.navbar {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    backdrop-filter: blur(10px);
}

.custom-navbar {
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%) !important;
    border-bottom: 2px solid var(--primary-color);
}

.custom-navbar .navbar-brand {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

/* Enhanced Button Glows - Non-text elements only */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.btn:hover {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    transform: translateY(-2px);
}

/* Optimized Glowing Cards - Static glow for better performance */
.glow-card {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.25);
}

/* Optimized Icons - Static glow for better performance */
.fa-cat, .fas, .snoozepaw-logo {
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

.btn-primary {
    background: linear-gradient(45deg, #212529, #495057);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    color: white !important;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.8);
    transform: translateY(-3px) scale(1.05);
    color: #343a40 !important;
    border-color: #fff;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #343a40 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.8);
}

/* Optimized Floating Animals - Reduced complexity for performance */
.lounging-cat, .moving-cat, .frolicking-llama, .camel, .floating-animal {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
    animation: simple-float 6s ease-in-out infinite alternate;
}

.moving-cat {
    font-size: 4rem !important;
}

.frolicking-llama {
    font-size: 5rem !important;
}

@keyframes simple-float {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Animated Stars Background */
.star {
    position: fixed;
    pointer-events: none;
    color: #fff;
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Wave Sweep Animation */
@keyframes wave-sweep {
    0% {
        transform: translateX(-200px) scaleX(0);
    }
    50% {
        transform: translateX(50vw) scaleX(1);
    }
    100% {
        transform: translateX(100vw) scaleX(0);
    }
}

/* Frolicking Animals */
.frolicking-cat, .frolicking-llama, .frolicking-camel {
    position: fixed;
    pointer-events: none;
    z-index: 3;
    animation: frolic-bounce 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.frolicking-cat {
    font-size: 4rem !important;
}

.frolicking-llama {
    font-size: 5rem !important;
}

.frolicking-camel {
    font-size: 5rem !important;
}

@keyframes frolic-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(0.9) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(5deg);
    }
}

/* Zen Mode Styles */
.zen-toggle {
    align-items: center;
    margin-top: 8px;
}

.zen-label {
    color: white !important;
    font-weight: 500;
    margin-left: 8px;
    font-size: 0.9rem;
    text-shadow: none !important;
}

.form-check-input {
    background-color: #6c757d;
    border-color: #6c757d;
}

.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

/* Zen Mode Active State */
body.zen-mode {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    animation: none !important;
}

body.zen-mode .floating-animal,
body.zen-mode .particle,
body.zen-mode .star,
body.zen-mode .twinkle-star,
body.zen-mode .beer-bottle,
body.zen-mode .chaos-element,
body.zen-mode .lounging-cat,
body.zen-mode .moving-cat,
body.zen-mode .frolicking-llama,
body.zen-mode .frolicking-camel {
    display: none !important;
}

body.zen-mode .hero-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

body.zen-mode .features-section {
    background: #f8f9fa !important;
}

body.zen-mode .feature-card {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

body.zen-mode .navbar {
    background: rgba(52, 58, 64, 0.95) !important;
    backdrop-filter: blur(10px);
}

body.zen-mode .task-card,
body.zen-mode .auth-card,
body.zen-mode .form-card {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

body.zen-mode .procrastinate-btn {
    display: none !important;
}

body.zen-mode .distraction-button {
    display: none !important;
}

body.zen-mode .llamoji {
    display: none !important;
}

body.zen-mode .snoozepaw-logo {
    display: none !important;
}

body.zen-mode .cat-meme-grid {
    display: none !important;
}

/* Zen Mode Text Styling - Black text for readability */
body.zen-mode,
body.zen-mode h1,
body.zen-mode h2,
body.zen-mode h3,
body.zen-mode h4,
body.zen-mode h5,
body.zen-mode h6,
body.zen-mode p,
body.zen-mode .lead,
body.zen-mode .hero-title,
body.zen-mode .hero-subtitle,
body.zen-mode .feature-title,
body.zen-mode .task-title,
body.zen-mode .card-title,
body.zen-mode .form-label,
body.zen-mode .btn,
body.zen-mode .alert,
body.zen-mode .badge,
body.zen-mode .text-muted {
    color: #212529 !important;
    text-shadow: none !important;
}

body.zen-mode .hero-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

body.zen-mode .navbar-brand,
body.zen-mode .nav-link {
    color: white !important;
}

body.zen-mode .zen-label {
    color: white !important;
}

body.zen-mode .footer {
    color: white !important;
}

body.zen-mode .task-meta,
body.zen-mode .task-description {
    color: #6c757d !important;
}

/* Procrastination Timer Styles */
.procrastination-timer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.timer-display {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: 6px;
    padding: 10px;
    font-weight: 500;
}

.timer-text {
    color: #dc3545;
    font-size: 0.95rem;
}

.timer-count {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1rem;
}

.timer-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pro Level Progress Bar */
.progress .progress-bar.bg-gradient {
    background: linear-gradient(45deg, #ffc107, #fd7e14, #dc3545) !important;
    animation: shimmer 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/* Hide timer elements in zen mode */
body.zen-mode .procrastination-timer {
    display: none !important;
}

/* ===== CHAOS DISTRACTIONS STYLES ===== */

/* Screen shake animation */
@keyframes screen-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.screen-shake {
    animation: screen-shake 0.8s ease-in-out;
}

/* Cat Video Popup */
.chaos-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffc107;
    animation: chaos-popup-appear 0.5s ease-out;
}

@keyframes chaos-popup-appear {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.3) rotate(180deg);
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

.popup-content {
    padding: 20px;
    text-align: center;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffc107;
}

.popup-header h4 {
    margin: 0;
    color: #ff6b6b;
    font-family: 'Comic Neue', cursive;
}

.close-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #e55757;
    transform: rotate(90deg);
}

/* Random Fact Bubble */
.fact-bubble {
    position: fixed;
    z-index: 9998;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 20px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bubble-bounce 0.6s ease-out;
}

@keyframes bubble-bounce {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(-45deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(5deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
    }
}

.bubble-content {
    text-align: center;
}

.bubble-text {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bubble-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bubble-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Floating Memes */
.floating-meme {
    position: fixed;
    z-index: 9997;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float-spin 3s ease-in-out infinite;
}

@keyframes float-spin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.floating-meme:hover {
    transform: scale(1.3) rotate(20deg);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Fake Notifications */
.fake-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9996;
    background: white;
    border: 2px solid #17a2b8;
    border-radius: 10px;
    padding: 15px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slide-in-right 0.5s ease-out;
}

@keyframes slide-in-right {
    0% { 
        opacity: 0; 
        transform: translateX(100%);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}

.notification-content {
    text-align: left;
}

.notification-text {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #495057;
}

.notification-actions {
    display: flex;
    gap: 8px;
}

/* Chaos Modal */
.chaos-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9995;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: modal-appear 0.5s ease-out;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.chaos-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modal-bounce 0.6s ease-out;
}

@keyframes modal-appear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes modal-bounce {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-100px);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translateY(0);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
    }
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Temporary Obstacle */
.temporary-obstacle {
    background: rgba(255, 193, 7, 0.95);
    border: 3px dashed #ff6b6b;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: obstacle-pulse 1s ease-in-out infinite;
}

@keyframes obstacle-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.obstacle-content {
    text-align: center;
    padding: 15px;
    color: #495057;
}

.obstacle-content h4 {
    margin-bottom: 10px;
    color: #ff6b6b;
}

/* Bouncing Ball */
.bouncing-ball {
    position: fixed;
    z-index: 9994;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bouncing-ball:hover {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

/* Fake Cookie Consent */
.fake-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9993;
    background: #2c3e50;
    color: white;
    padding: 20px;
    animation: slide-up 0.5s ease-out;
}

@keyframes slide-up {
    0% { 
        opacity: 0; 
        transform: translateY(100%);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.consent-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Fake Update Notification */
.fake-update-notification {
    position: fixed;
    top: 50px;
    left: 20px;
    z-index: 9992;
    background: #495057;
    color: white;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    animation: slide-in-left 0.5s ease-out;
}

@keyframes slide-in-left {
    0% { 
        opacity: 0; 
        transform: translateX(-100%);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}

.update-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-icon {
    font-size: 1.5rem;
}

.update-text {
    flex: 1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.update-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* Hide all chaos elements in zen mode */
body.zen-mode .chaos-popup,
body.zen-mode .fact-bubble,
body.zen-mode .floating-meme,
body.zen-mode .fake-notification,
body.zen-mode .chaos-modal,
body.zen-mode .temporary-obstacle,
body.zen-mode .bouncing-ball,
body.zen-mode .fake-cookie-consent,
body.zen-mode .fake-update-notification {
    display: none !important;
}

body.zen-mode.screen-shake {
    animation: none !important;
}

/* Enhanced button hover effects */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for chaos elements */
@media (max-width: 768px) {
    .chaos-popup {
        width: 90%;
        max-width: 350px;
    }
    
    .chaos-popup iframe {
        width: 280px;
        height: 157px;
    }
    
    .fact-bubble {
        max-width: 250px;
        font-size: 0.85rem;
    }
    
    .fake-notification {
        max-width: 280px;
        right: 10px;
    }
    
    .fake-update-notification {
        max-width: 250px;
        left: 10px;
    }
    
    .chaos-modal .modal-content {
        max-width: 300px;
        padding: 20px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.pricing-featured {
    border: 3px solid #ffd700 !important;
}

.pricing-badge {
    z-index: 10;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
}

.price-period {
    font-size: 1rem;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer .btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
