:root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --dark-bg: #0a0e17;
        --darker-bg: #050811;
        --glass-bg: rgba(255, 255, 255, 0.08);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a0aec0;
        --accent-color: #d70abc;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --danger-color: #ef4444;
    }

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

    body {
        font-family: 'Noto Sans Bengali', sans-serif;
        background: var(--darker-bg);
        color: var(--text-primary);
        min-height: 100vh;
        overflow-x: hidden;
        background-image:
            radial-gradient(circle at 15% 50%, rgba(28, 28, 68, 0.3) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(86, 35, 120, 0.3) 0%, transparent 25%);
    }

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

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

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

    ::-webkit-scrollbar-thumb:hover {
        background: #7c3aed;
    }

    /* Glassmorphism Effect */
    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .gradient-border {
        position: relative;
        border-radius: 16px;
        z-index: 1;
    }

    .gradient-border::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: var(--primary-gradient);
        border-radius: 18px;
        z-index: -1;
        animation: border-pulse 3s infinite;
    }

    @keyframes border-pulse {

        0%,
        100% {
            opacity: 0.8;
        }

        50% {
            opacity: 0.4;
        }
    }

    /* Floating Elements */
    .floating {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Neon Glow Effect */
    .neon-text {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--accent-color), 0 0 20px var(--accent-color);
        animation: neon-flicker 2s infinite alternate;
    }

    @keyframes neon-flicker {

        0%,
        19%,
        21%,
        23%,
        25%,
        54%,
        56%,
        100% {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--accent-color), 0 0 20px var(--accent-color);
        }

        20%,
        24%,
        55% {
            text-shadow: none;
        }
    }

    /* Story Container */
    .story-container {
        background: rgba(13, 17, 28, 0.8);
        border-radius: 24px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        margin-bottom: 3rem;
        position: relative;
    }

    .story-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    }

    /* Story Header */
    .story-header {
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(35, 45, 63, 0.8) 100%);
        padding: 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .story-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .story-title {
        font-size: 2.8rem;
        font-weight: 900;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.2;
        background: var(--primary-gradient);
        background-clip: text;
    }

    .story-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .meta-item {
        display: flex;
        align-items: center;
        font-size: 1rem;
        color: var(--text-secondary);
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .meta-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .meta-icon {
        margin-right: 0.5rem;
        font-size: 1.2rem;
        color: var(--accent-color);
    }

    /* Author Info */
    .author-info {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        margin: 1.5rem 0;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .author-info:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .author-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--accent-color);
        margin-right: 15px;
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    }

    .author-name {
        color: var(--success-color);
        font-weight: 700;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .author-name:hover {
        color: #059669;
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

    .verify-badge {
        color: var(--accent-color);
        font-size: 1.1rem;
        margin-left: 5px;
        filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
    }

    /* Social Share */
    .social-share {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

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

    .social-btn:hover::before {
        transform: translateY(0);
    }

    .social-btn:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    /* Audio Player Styles */
    .audio-player-container {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(74, 85, 104, 0.9) 100%);
        border-radius: 20px;
        padding: 2rem;
        margin: 2rem 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .audio-player-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 L100,50" stroke="rgba(255,255,255,0.05)" stroke-width="0.5" /></svg>');
        background-size: 20px 20px;
        opacity: 0.3;
    }

    .audio-player-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .audio-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0;
    }

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

    .audio-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-gradient);
        color: white;
        border: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }

    .audio-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .audio-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .play-btn {
        background: var(--success-color);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .progress-container {
        flex: 1;
        background: rgba(255, 255, 255, 0.1);
        height: 8px;
        border-radius: 4px;
        position: relative;
        cursor: pointer;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        background: var(--primary-gradient);
        border-radius: 4px;
        width: 0%;
        transition: width 0.1s ease;
    }

    .time-display {
        display: flex;
        justify-content: space-between;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .audio-features {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .speed-control,
    .volume-control {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .speed-btn,
    .volume-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .speed-btn:hover,
    .volume-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .speed-btn.active {
        background: var(--accent-color);
    }

    .volume-slider {
        width: 100px;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        outline: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

    .volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--accent-color);
        cursor: pointer;
    }

    .highlighted-text {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
        padding: 2px 4px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    /* Story Content */
    .story-content {
        padding: 2.5rem;
        line-height: 1.9;
        font-size: 1.25rem;
        color: var(--text-primary);
        text-align: justify;
        position: relative;
    }

    .story-content::first-letter {
        initial-letter: 3;
        font-weight: 700;
        color: var(--accent-color);
        margin-right: 0.5rem;
        font-size: 3.5rem;
        line-height: 1;
    }

    .story-content p {
        margin-bottom: 1.8rem;
        position: relative;
    }

    .story-content p::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--primary-gradient);
        margin: 1.5rem 0;
        opacity: 0.3;
    }

    /* Interaction Section */
    .interaction-section {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 2rem 0;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
    }

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

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .stat-item:hover::before {
        transform: scaleX(1);
    }

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .stat-value {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Like and Rating Buttons */
    .interaction-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .like-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        cursor: pointer;
        border: none;
    }

    .like-btn.liked {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }

    .like-btn:hover:not(.liked) {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

    .like-btn:disabled {
        cursor: default;
        opacity: 0.8;
    }

    .rating-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rating-stars {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .rating-stars i {
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--warning-color);
        text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }

    .rating-stars i:hover {
        transform: scale(1.3);
        text-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    }

    /* Comment Section */
    .comment-section {
        padding: 15px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--accent-color);
        color: white;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 50px;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }

    .comment-form {
        background: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 20px;
        margin-bottom: 3rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .comment-form:focus-within {
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .form-floating {
        position: relative;
    }

    .form-floating label {
        color: var(--text-secondary);
        padding: 1.2rem;
    }

    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label {
        color: var(--accent-color);
        transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
    }

    #butsave_comment {
        background: var(--primary-gradient);
        border: none;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        cursor: pointer;
    }

    #butsave_comment:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
    }

    /* Comments List */
    .comment-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .comment-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .comment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .comment-card:hover::before {
        opacity: 1;
    }

    .comment-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .comment-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .comment-author {
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .comment-date {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .comment-text {
        color: var(--text-primary);
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    .reply-card {
        background: rgba(255, 255, 255, 0.03);
        border-left: 3px solid var(--accent-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1.5rem;
        position: relative;
    }

    .reply-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--primary-gradient);
        border-radius: 3px;
    }

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

    .episode-card {
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(35, 45, 63, 0.8) 100%);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .episode-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    }

    .episode-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .episode-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
    }

    .episode-title:hover {
        color: var(--accent-color);
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }

    .episode-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .badge {
        padding: 0.5rem 1rem;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .episode-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .episode-stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        color: var(--text-secondary);
    }

    /* Locked Content */
    .locked-content {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.8) 0%, rgba(74, 85, 104, 0.8) 100%);
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
        margin: 3rem 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .locked-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 L100,50" stroke="rgba(255,255,255,0.05)" stroke-width="0.5" /></svg>');
        background-size: 20px 20px;
        opacity: 0.5;
    }

    .locked-icon {
        font-size: 4rem;
        color: var(--warning-color);
        margin-bottom: 1.5rem;
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-gradient);
        color: white;
        border-radius: 50%;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--secondary-gradient);
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .story-title {
            font-size: 2.2rem;
        }

        .story-meta {
            flex-direction: column;
            gap: 1rem;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .interaction-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .episodes-grid {
            grid-template-columns: 1fr;
        }

        .audio-player-header {
            flex-direction: column;
            gap: 1rem;
        }

        .audio-controls {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .story-title {
            font-size: 1.8rem;
        }

        .story-content {
            padding: 1.5rem;
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 1.6rem;
        }

        .comment-form,
        .comment-card {
            padding: 10px;
        }

        .audio-features {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
    }

    @media (max-width: 576px) {
        .story-header {
            padding: 1.5rem;
        }

        .story-title {
            font-size: 1.6rem;
        }

        .author-info {
            flex-direction: column;
            text-align: center;
        }

        .author-img {
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .social-share {
            justify-content: center;
        }

        .audio-player-container {
            padding: 1.5rem;
        }
    }

    /* Animation Classes */
    .fade-in {
        animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .slide-in-left {
        animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .slide-in-right {
        animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Custom Button Styles */
    .btn-primary-custom {
        background: var(--primary-gradient);
        border: none;
        border-radius: 12px;
        padding: 1rem 2rem;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
        border-radius: 12px;
        padding: 1rem 2rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .btn-outline-custom:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    
    /* Login Alert */
    .login-alert {
        cursor: pointer;
    }