:root {
            --primary: #ff2a6d;
            --secondary: #05d9e8;
            --accent: #d1f7ff;
            --dark: #0a0a0f;
            --darker: #050508;
            --card-bg: rgba(15, 15, 25, 0.85);
            --glass: rgba(255, 255, 255, 0.05);
            --neon-pink: #ff2a6d;
            --neon-cyan: #05d9e8;
            --neon-purple: #b026ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--darker);
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(255, 42, 109, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(5, 217, 232, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(176, 38, 255, 0.1) 0%, transparent 50%),
                var(--darker);
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255, 42, 109, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(5, 217, 232, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 15s infinite;
            box-shadow: 0 0 10px var(--primary);
        }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 42, 109, 0.2);
            padding: 0 2rem;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 42, 109, 0.5);
            cursor: pointer;
            letter-spacing: 2px;
        }

        nav {
            display: flex;
            gap: 0.5rem;
        }

        .nav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

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

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

        .nav-btn:hover, .nav-btn.active {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
            transform: translateY(-2px);
        }

        .nav-btn.active {
            background: rgba(255, 42, 109, 0.15);
        }

        .nav-btn i {
            font-size: 0.9rem;
        }

        /* Search Bar */
        .search-container {
            position: relative;
            width: 300px;
        }

        .search-input {
            width: 100%;
            padding: 0.7rem 1rem 0.7rem 2.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Main Content */
        main {
            margin-top: 70px;
            padding: 2rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 3rem 0 2rem;
            position: relative;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filters */
        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }

        .filter-label {
            font-weight: 600;
            color: var(--secondary);
            margin-right: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            background: rgba(255, 42, 109, 0.2);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--neon-purple));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 15px rgba(255, 42, 109, 0.4);
        }

        /* Sort Dropdown */
        .sort-select {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 8px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            cursor: pointer;
            outline: none;
        }

        .sort-select option {
            background: var(--dark);
        }

        /* Anime Grid */
        .anime-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        /* Anime Card */
        .anime-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .anime-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.3), 0 0 60px rgba(255, 42, 109, 0.1);
        }

        .anime-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.9) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .card-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .card-content {
            padding: 1rem;
            position: relative;
            z-index: 2;
            margin-top: -60px;
        }

        .card-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.3rem;
            line-height: 1.3;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .card-rating {
            color: #ffd700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .card-genre {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            background: rgba(5, 217, 232, 0.15);
            color: var(--secondary);
            border-radius: 12px;
            font-size: 0.75rem;
            margin-top: 0.5rem;
            border: 1px solid rgba(5, 217, 232, 0.3);
        }

        /* Card Actions */
        .card-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 3;
            display: flex;
            gap: 0.5rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .anime-card:hover .card-actions {
            opacity: 1;
            transform: translateY(0);
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .action-btn:hover {
            transform: scale(1.1);
        }

        .action-btn.heart-btn:hover, .action-btn.heart-btn.active {
            background: var(--primary);
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }

        .action-btn.heart-btn.active {
            animation: heartBeat 0.3s ease;
        }

        .action-btn.watch-btn:hover, .action-btn.watch-btn.active {
            background: var(--secondary);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.5);
        }

        .action-btn.library-btn:hover, .action-btn.library-btn.active {
            background: var(--neon-purple);
            box-shadow: 0 0 15px rgba(176, 38, 255, 0.5);
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }

        /* Status Badges */
        .status-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 3;
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
        }

        .status-badge {
            padding: 0.25rem 0.6rem;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-fav {
            background: var(--primary);
            color: #fff;
        }

        .badge-watched {
            background: var(--secondary);
            color: var(--dark);
        }

        .badge-library {
            background: var(--neon-purple);
            color: #fff;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            grid-column: 1 / -1;
        }

        .empty-state i {
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.2);
            margin-bottom: 1rem;
        }

        .empty-state h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .empty-state p {
            color: rgba(255, 255, 255, 0.4);
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1rem 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-width: 120px;
        }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--card-bg);
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            animation: modalIn 0.3s ease;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--primary);
            transform: rotate(90deg);
        }

        .modal-header {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

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

        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(transparent, var(--card-bg));
        }

        .modal-body {
            padding: 2rem;
            margin-top: -100px;
            position: relative;
            z-index: 2;
        }

        .modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .modal-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .modal-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal-meta-item i {
            color: var(--secondary);
        }

        .modal-genres {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .modal-genre-tag {
            padding: 0.4rem 1rem;
            background: rgba(5, 217, 232, 0.15);
            border: 1px solid rgba(5, 217, 232, 0.3);
            color: var(--secondary);
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .modal-description {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .modal-action-btn {
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            border: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .btn-fav {
            background: linear-gradient(135deg, var(--primary), #ff0055);
            color: #fff;
        }

        .btn-fav.active {
            background: linear-gradient(135deg, #ff0055, #cc0044);
        }

        .btn-watch {
            background: linear-gradient(135deg, var(--secondary), #00a8b5);
            color: var(--dark);
        }

        .btn-library {
            background: linear-gradient(135deg, var(--neon-purple), #7c1fd1);
            color: #fff;
        }

        /* Loading */
        .loading {
            text-align: center;
            padding: 3rem;
            grid-column: 1 / -1;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 42, 109, 0.2);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

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

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

        ::-webkit-scrollbar-track {
            background: var(--darker);
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                height: auto;
                padding: 1rem 0;
                gap: 1rem;
            }

            nav {
                order: 3;
                width: 100%;
                justify-content: center;
            }

            .search-container {
                width: 100%;
                order: 2;
            }

            main {
                margin-top: 140px;
                padding: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .anime-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 1rem;
            }

            .filters {
                padding: 1rem;
            }

            .modal-header {
                height: 250px;
            }
        }

        /* Toast Notification */
        .toast-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 3000;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .toast {
            padding: 1rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        @keyframes toastIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes toastOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }

        .toast-icon {
            font-size: 1.2rem;
        }

        .toast.success .toast-icon { color: var(--secondary); }
        .toast.error .toast-icon { color: var(--primary); }
        .toast.info .toast-icon { color: #ffd700; }
    
        /* External Links */
        .external-links {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.8rem;
        }

        .external-link-btn {
            flex: 1;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            text-decoration: none;
        }

        .external-link-btn:hover {
            transform: translateY(-2px);
            border-color: var(--secondary);
            box-shadow: 0 4px 12px rgba(5, 217, 232, 0.2);
            background: rgba(5, 217, 232, 0.1);
        }

        .external-link-btn.crunchyroll:hover {
            border-color: #f47521;
            box-shadow: 0 4px 12px rgba(244, 117, 33, 0.2);
            background: rgba(244, 117, 33, 0.1);
        }

        .external-link-btn.anikai:hover {
            border-color: #ff6b6b;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
            background: rgba(255, 107, 107, 0.1);
        }

        .external-link-btn i {
            font-size: 0.85rem;
        }

        .modal-external-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-external-btn {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            text-decoration: none;
        }

        .modal-external-btn:hover {
            transform: translateY(-3px);
        }

        .modal-external-btn.crunchyroll {
            border-color: rgba(244, 117, 33, 0.3);
        }

        .modal-external-btn.crunchyroll:hover {
            background: rgba(244, 117, 33, 0.15);
            border-color: #f47521;
            box-shadow: 0 8px 25px rgba(244, 117, 33, 0.3);
        }

        .modal-external-btn.anikai {
            border-color: rgba(255, 107, 107, 0.3);
        }

        .modal-external-btn.anikai:hover {
            background: rgba(255, 107, 107, 0.15);
            border-color: #ff6b6b;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .modal-external-btn i {
            font-size: 1.1rem;
        }
/* Daily Pick Button - Super Visible with Character */
.daily-pick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    border: 3px solid #fff;
    border-radius: 60px;
    color: #1a1a2e;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 107, 53, 0.3),
        0 0 60px rgba(255, 107, 53, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: dailyPulse 2s infinite;
}

@keyframes dailyPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 107, 53, 0.3),
            0 0 60px rgba(255, 107, 53, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 50px rgba(255, 107, 53, 0.5),
            0 0 70px rgba(255, 107, 53, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.daily-pick-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.daily-pick-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.9),
        0 0 60px rgba(255, 107, 53, 0.5),
        0 0 90px rgba(255, 107, 53, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
}

.daily-pick-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.daily-pick-btn i {
    font-size: 1.4rem;
    animation: diceSpin 3s infinite linear;
}

@keyframes diceSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

/* Character decoration near the button */
.hero {
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 10%;
    width: 150px;
    height: 150px;
    background: url('https://i.imgur.com/JQ9qWzP.png') no-repeat center/contain;
    opacity: 0.9;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    animation: floatChar 3s ease-in-out infinite;
}

@keyframes floatChar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}


/* Daily Pick Container with Characters */
.daily-pick-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.daily-char-left,
.daily-char-right {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    animation: charBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.daily-char-left {
    animation-delay: 0s;
    transform: scaleX(-1); /* Flip to face center */
}

.daily-char-right {
    animation-delay: 1s;
}

@keyframes charBounce {
    0%, 100% { transform: translateY(0px) scaleX(-1); }
    50% { transform: translateY(-20px) scaleX(-1); }
}

.daily-char-right {
    animation: charBounceRight 2s ease-in-out infinite;
}

@keyframes charBounceRight {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.daily-pick-container:hover .daily-char-left,
.daily-pick-container:hover .daily-char-right {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.9));
    transform: scale(1.1) scaleX(-1);
}

.daily-pick-container:hover .daily-char-right {
    transform: scale(1.1);
}

/* Remove the old ::after pseudo-element character */
.hero::after {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .daily-char-left,
    .daily-char-right {
        width: 60px;
        height: 60px;
    }
    .daily-pick-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .daily-pick-container {
        gap: 0.5rem;
    }
}
