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

        html {
            scroll-behavior: smooth;
        }
 
        /* Enhanced Hero Banner Container */
        .premium-hero-vanguard {
            position: relative;
            max-width: 1300px;
            width: 100%;
            height: 416px;
            margin: 40px auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .premium-hero-vanguard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.6) 0%, 
                rgba(0, 0, 0, 0.3) 50%, 
                rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        }

        /* Enhanced Overlay with subtle gradient */
        .sophisticated-overlay-veil {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
                linear-gradient(45deg, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        /* Premium Pulsing Play Button */
        .dynamic-pulse-orchestrator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ff1744, #d50000);
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            box-shadow: 
                0 10px 30px rgba(255, 23, 68, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .dynamic-pulse-orchestrator::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff1744, #ff5252, #ff1744);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dynamic-pulse-orchestrator:hover::before {
            opacity: 1;
        }

        .dynamic-pulse-orchestrator:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 
                0 20px 40px rgba(255, 23, 68, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .dynamic-pulse-orchestrator .play-triangle-core {
            width: 0;
            height: 0;
            border-top: 25px solid transparent;
            border-bottom: 25px solid transparent;
            border-left: 35px solid #ffffff;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: all 0.3s ease;
            position: relative;
        }

        .dynamic-pulse-orchestrator:hover .play-triangle-core {
            border-left-color: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        /* Multi-layered pulse animations */
        .dynamic-pulse-orchestrator {
            animation: 
                primary-glow-pulse 2s ease-in-out infinite,
                secondary-glow-pulse 2s ease-in-out infinite 0.5s,
                tertiary-glow-pulse 2s ease-in-out infinite 1s;
        }

        @keyframes primary-glow-pulse {
            0%, 100% {
                box-shadow: 
                    0 0 0 0 rgba(255, 23, 68, 0.7),
                    0 10px 30px rgba(255, 23, 68, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
            50% {
                box-shadow: 
                    0 0 0 25px rgba(255, 23, 68, 0),
                    0 15px 40px rgba(255, 23, 68, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
        }

        @keyframes secondary-glow-pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        @keyframes tertiary-glow-pulse {
            0%, 100% {
                filter: brightness(1) saturate(1);
            }
            50% {
                filter: brightness(1.1) saturate(1.2);
            }
        }

        /* Enhanced Lightbox Modal */
        .cinematic-modal-curtain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(20, 20, 20, 0.98) 100%);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(8px);
        }

        .cinematic-modal-curtain.active {
            display: flex;
            opacity: 1;
        }

        .cinematic-modal-curtain.active .immersive-video-chamber {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        /* Enhanced Video Container */
        .immersive-video-chamber {
            position: relative;
            max-width: 95%;
            width: 1200px;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: scale(0.9) translateY(20px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
        }

        .immersive-video-chamber::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(0, 0, 0, 0.1) 50%, 
                rgba(0, 0, 0, 0.8) 100%);
            z-index: 2;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .immersive-video-chamber:hover::before {
            opacity: 1;
        }

        #luxury-video-core {
            width: 100%;
            height: auto;
            display: block;
            background: #000;
        }

        /* Enhanced YouTube-style Controls - Auto-hide */
        .orchestrated-control-symphony {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(0, 0, 0, 0.7) 20%, 
                transparent 100%);
            padding: 20px 25px 25px;
            display: flex;
            align-items: center;
            color: #fff;
            z-index: 3;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            border-radius: 0 0 20px 20px;
            opacity: 1;
            transform: translateY(0);
        }

        .immersive-video-chamber.playing .orchestrated-control-symphony {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }

        .immersive-video-chamber:hover.playing .orchestrated-control-symphony {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .immersive-video-chamber:hover .orchestrated-control-symphony {
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(0, 0, 0, 0.8) 20%, 
                transparent 100%);
            padding: 25px 30px 30px;
        }

        /* Control Groups */
        .primary-control-cluster {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }

        .control-play-pause-enhanced {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border: none;
            color: #fff;
            font-size: 22px;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            cursor: pointer;
            margin-right: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .control-play-pause-enhanced:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .progress-container-elegant {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            position: relative;
            cursor: pointer;
            margin: 0 20px;
            transition: all 0.3s ease;
        }

        .progress-container-elegant:hover {
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
        }

        .progress-track-smooth {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ff1744, #ff5252);
            border-radius: 3px;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
        }

        .progress-thumb-glow {
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #ff1744;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 23, 68, 0.8);
        }

        .progress-container-elegant:hover .progress-thumb-glow {
            opacity: 1;
        }

        .time-information-panel {
            font-size: 14px;
            font-weight: 500;
            margin-right: 20px;
            min-width: 100px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Volume Controls */
        .volume-control-suite {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }

        .volume-icon-container {
            margin-right: 10px;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
        }

        .volume-slider-precision {
            width: 100px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            outline: none;
            -webkit-appearance: none;
            margin-right: 10px;
        }

        .volume-slider-precision::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #ff1744, #ff5252);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(255, 23, 68, 0.4);
        }

        /* Settings and Fullscreen */
        .secondary-control-panel {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .control-button-premium {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 18px;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .control-button-premium:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Loading Indicator */
        .loading-animation-veil {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            z-index: 4;
        }

        .loading-animation-veil.active {
            display: flex;
        }

        .spinner-elegant {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid #ff1744;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Close Button */
        .close-modal-activator {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: #fff;
            font-size: 20px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 5;
            backdrop-filter: blur(10px);
            opacity: 1;
        }

        .close-modal-activator:hover {
            background: rgba(255, 23, 68, 0.8);
            transform: rotate(90deg) scale(1.1);
        }

        /* Mobile Controls - Fixed Height - Auto-hide */
        .mobile-controls-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(0, 0, 0, 0.8) 30%, 
                transparent 100%);
            z-index: 3;
            display: none;
            align-items: center;
            padding: 0 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-controls-wrapper.active {
            display: flex;
        }

        .immersive-video-chamber.playing .mobile-controls-wrapper {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }

        .immersive-video-chamber:hover.playing .mobile-controls-wrapper {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .mobile-primary-controls {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
        }

        .mobile-play-pause {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border: none;
            color: #fff;
            font-size: 20px;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-play-pause:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
            transform: scale(1.05);
        }

        .mobile-progress-section {
            display: flex;
            flex: 1;
            align-items: center;
            margin: 0 10px;
            min-width: 0;
        }

        .mobile-progress-container {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
            margin: 0 8px;
        }

        .mobile-progress-track {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ff1744, #ff5252);
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .mobile-time-display {
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }

        .mobile-volume-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-volume-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 16px;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-volume-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .mobile-fullscreen-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 16px;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-left: 5px;
        }

        .mobile-fullscreen-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1300px) {
            .premium-hero-vanguard {
                height: auto;
                padding-top: 32%;
                margin: 20px auto;
            }
        }

        @media (max-width: 1024px) {
            .immersive-video-chamber {
                max-width: 90%;
                width: 900px;
            }
        }

        @media (max-width: 768px) {
            .premium-hero-vanguard {
                margin: 20px 10px;
                border-radius: 16px;
                height: 300px;
                padding-top: 23%;
            }

            .dynamic-pulse-orchestrator {
                width: 80px;
                height: 80px;
            }

            .dynamic-pulse-orchestrator .play-triangle-core {
                border-top: 20px solid transparent;
                border-bottom: 20px solid transparent;
                border-left: 28px solid #ffffff;
            }

            .immersive-video-chamber {
                max-width: 95%;
                width: 700px;
                border-radius: 16px;
            }

            /* Hide desktop controls on mobile, show mobile controls */
            .orchestrated-control-symphony {
                display: none;
            }

            .mobile-controls-wrapper {
                display: flex;
            }

            .close-modal-activator {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .premium-hero-vanguard {
                height: 250px;
                padding-top: 19%;
                margin: 15px 5px;
                border-radius: 12px;
            }

            .dynamic-pulse-orchestrator {
                width: 70px;
                height: 70px;
            }

            .dynamic-pulse-orchestrator .play-triangle-core {
                border-top: 16px solid transparent;
                border-bottom: 16px solid transparent;
                border-left: 22px solid #ffffff;
            }

            .immersive-video-chamber {
                max-width: 98%;
                border-radius: 12px;
            }

            .mobile-controls-wrapper {
                height: 60px;
                padding: 0 10px;
            }

            .mobile-play-pause {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .mobile-progress-container {
                height: 3px;
            }

            .mobile-time-display {
                font-size: 11px;
                min-width: 70px;
            }

            .mobile-volume-btn,
            .mobile-fullscreen-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .close-modal-activator {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for accessibility */
        .dynamic-pulse-orchestrator:focus,
        .control-play-pause-enhanced:focus,
        .control-button-premium:focus,
        .progress-container-elegant:focus,
        .mobile-play-pause:focus,
        .mobile-volume-btn:focus,
        .mobile-fullscreen-btn:focus {
            outline: 2px solid #ff1744;
            outline-offset: 2px;
        }

        /* acle */

        :root {
            --border-radius: 12px;
            --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .spd-main-container {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
            padding: 30px 20px;
            box-sizing: border-box;
        }

        .spd-primary-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow-medium);
            position: relative;
            overflow: hidden;
        }

        .spd-secondary-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .spd-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid #e8eaed;
        }

        .spd-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* Leaderboard Ad - Clean Version */
        .spd-leaderboard-advert {
            width: 100%;
            max-width: 728px;
            height: 90px;
            background: #f0f0f0;
            margin: 0 auto 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            color: #666;
            border: 1px solid #ddd;
            transition: var(--transition);
            position: relative;
        }

        .spd-leaderboard-advert:hover {
            background: #e9e9e9;
            transform: scale(1.01);
        }

        .spd-leaderboard-advert::after {
            content: 'Advertisement';
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 11px;
            color: #999;
            font-weight: 400;
        }

        /* Post Header */
        .spd-post-header {
            margin-bottom: 30px;
            text-align: left;
        }

        #spd-post-heading {
            font-size: clamp(24px, 3.5vw, 32px);
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
            color: #222;
        }

        #spd-post-timestamp {
            font-size: 14px;
            color: #888;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        #spd-post-timestamp i {
            font-size: 12px;
            color: #666;
        }

        /* Content */
        .spd-content-paragraph {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.7;
            color: #444;
        }

        /* Photos Trigger - Keep This */
        .spd-photos-trigger {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f5f5f5;
            color: #333;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            margin: 25px 0;
            transition: var(--transition);
            font-weight: 500;
            border: 1px solid #e0e0e0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

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

        .spd-photos-trigger:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            background: white;
        }

        .spd-photos-trigger:hover::before {
            left: 100%;
        }

        .spd-photos-trigger i {
            font-size: 16px;
        }

        /* Gallery Modal - Keep This Enhanced Version */
        .spd-gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
            z-index: 10000;
            overflow: auto;
            backdrop-filter: blur(5px);
        }

        .spd-gallery-content {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            max-width: 90%;
            max-height: 90%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            justify-content: center;
            overflow-y: auto;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .spd-gallery-content img {
            max-width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .spd-gallery-content img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-medium);
        }

        .spd-gallery-content img::after {
            content: attr(alt);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 12px;
            text-align: center;
            font-size: 14px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .spd-gallery-content img:hover::after {
            transform: translateY(0);
        }

        .spd-close-button {
            position: fixed;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 36px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            z-index: 10001;
            border: none;
        }

        .spd-close-button:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg) scale(1.1);
        }

        /* Share Container - Keep This */
        .spd-share-container {
            position: relative;
            margin: 35px 0;
        }

        .spd-share-toggle {
            background: #f8f9fa;
            color: #333;
            padding: 14px 28px;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .spd-share-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }

        .spd-share-toggle:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            background: white;
        }

        .spd-share-toggle:hover::before {
            left: 100%;
        }

        .spd-share-options {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            box-shadow: var(--shadow-medium);
            border-radius: var(--border-radius);
            padding: 20px;
            z-index: 1000;
            min-width: 280px;
            border: 1px solid #e0e0e0;
        }

        .spd-share-options::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid transparent;
            border-top-color: white;
        }

        .spd-share-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .spd-share-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .spd-share-item:hover {
            transform: translateY(-2px);
            background: #f8f9fa;
        }

        .spd-share-item i {
            font-size: 20px;
            margin-bottom: 6px;
            color: #666;
            transition: var(--transition);
        }

        .spd-share-item:hover i {
            color: #333;
            transform: scale(1.1);
        }

        .spd-share-item span {
            font-size: 11px;
            font-weight: 500;
            color: #888;
        }

       /* comments*/

        /* Container for sorting dropdown */
        .cs-sort-wrapper {
            text-align: right;
            margin-bottom: 20px;
            padding: 0 15px;
        }

        /* Sorting dropdown */
        .cs-sort-dropdown {
            padding: 8px;
            border-radius: 8px;
            border: 1px solid #e0e4e8;
            font-size: 14px;
            cursor: pointer;
            width: 100%;
            max-width: 200px;
        }

        /* Main comment section container */
        .cs-comment-container {
            background-color: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main comment input textarea */
        .cs-comment-textarea {
            width: 100%;
            height: 100px;
            resize: none;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #e0e4e8;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .cs-comment-textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
        }

        /* Buttons for submitting comments and replies */
        .cs-post-comment-btn, .cs-post-reply-btn, .cs-cancel-reply-btn {
            background-color: #007bff;
            color: white;
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            margin-right: 8px;
        }
        .cs-post-comment-btn:hover, .cs-post-reply-btn:hover, .cs-cancel-reply-btn:hover {
            background-color: #0056b3;
        }

        /* Reply button */
        .cs-reply-toggle-btn {
            background: none;
            border: none;
            padding: 8px;
            font-size: 16px;
            line-height: 1;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .cs-reply-toggle-btn:hover {
            transform: scale(1.2);
        }

        /* Cancel reply button */
        .cs-cancel-reply-btn {
            background-color: #6c757d;
        }
        .cs-cancel-reply-btn:hover {
            background-color: #5a6268;
        }

        /* Character counter */
        .cs-char-count {
            font-size: 13px;
            color: #6c757d;
            margin-bottom: 10px;
            text-align: right;
        }

        /* Error message */
        .cs-error-message {
            color: #dc3545;
            font-size: 13px;
            margin-bottom: 10px;
            display: none;
        }

        /* Comment list container */
        .cs-comment-list {
            margin-top: 20px;
        }

        /* Individual comment and reply styles */
        .cs-comment-item, .cs-reply-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .cs-comment-item:hover, .cs-reply-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        }
        .cs-reply-item {
            margin-left: 20px;
            background-color: #f1f3f5;
        }

        /* Comment and reply text */
        .cs-comment-content, .cs-reply-content {
            margin: 0 0 8px;
            color: #2c3e50;
            font-size: 15px;
            line-height: 1.5;
        }
        .cs-reply-content {
            font-size: 14px;
        }

        /* Comment and reply date */
        .cs-comment-timestamp, .cs-reply-timestamp {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 8px;
        }

        /* Voting controls */
        .cs-vote-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .cs-vote-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: transform 0.2s ease;
        }
        .cs-vote-btn:hover {
            transform: scale(1.2);
        }
        .cs-vote-btn.voted {
            color: #007bff;
            font-weight: bold;
        }
        .cs-vote-count {
            font-size: 13px;
            color: #2c3e50;
            font-weight: 600;
        }

        /* Reply form */
        .cs-reply-form {
            margin-top: 10px;
            margin-left: 20px;
            display: none;
        }
        .cs-reply-textarea {
            width: 100%;
            height: 60px;
            resize: none;
            padding: 10px;
            margin-bottom: 8px;
            border: 1px solid #e0e4e8;
            border-radius: 6px;
            font-size: 13px;
        }
        .cs-reply-textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
        }

        /* Responsive design for mobile and tablets (up to 1024px) */
        @media (max-width: 1024px) {
            .cs-comment-container {
                padding: 15px;
                border-radius: 8px;
            }
            .cs-comment-textarea, .cs-reply-textarea {
                font-size: 14px;
                padding: 10px;
            }
            .cs-comment-content, .cs-reply-content {
                font-size: 14px;
            }
            .cs-reply-item {
                margin-left: 10px;
            }
            .cs-post-comment-btn, .cs-post-reply-btn, .cs-cancel-reply-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            .cs-sort-dropdown {
                max-width: 100%;
            }
            .cs-vote-controls {
                gap: 6px;
            }
            .cs-vote-btn {
                font-size: 14px;
            }
            .cs-vote-count {
                font-size: 12px;
            }
        }

        /* Additional tweaks for smaller mobile screens (up to 600px) */
        @media (max-width: 600px) {
            .cs-comment-container {
                padding: 10px;
            }
            .cs-comment-textarea, .cs-reply-textarea {
                height: 80px;
            }
            .cs-comment-content, .cs-reply-content {
                font-size: 13px;
            }
            .cs-comment-timestamp, .cs-reply-timestamp {
                font-size: 11px;
            }
            .cs-char-count, .cs-error-message {
                font-size: 12px;
            }
        }

        /* Sidebar Contact - Simple Clean */
        .spd-ad-contact-box {
            text-align: center;
            padding: 30px;
            border: 1px solid #e0e0e0;
        }

        .spd-ad-contact-box h3 {
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .spd-ad-contact-box p {
            margin-bottom: 20px;
            color: #666;
            font-size: 14px;
        }

        .spd-ad-contact-box a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: inline-block;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: var(--transition);
        }

        .spd-ad-contact-box a:hover {
            background: white;
            transform: translateY(-1px);
            box-shadow: var(--shadow-light);
        }

        /* Simple News List - No Carousel */
        .spd-news-list {
            padding: 0;
        }

        .spd-news-item {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: var(--transition);
        }

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

        .spd-news-item:hover {
            background: #f8f9fa;
            padding-left: 10px;
        }

        .spd-news-item img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .spd-news-item h3 {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 1.4;
            color: #333;
        }

        .spd-news-item a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .spd-news-item p {
            color: #888;
            font-size: 13px;
            line-height: 1.5;
        }

        .spd-news-header {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        /* Sidebar Ads - Simple */
        .spd-sidebar-ad {
            width: 100%;
            height: 250px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border: 1px solid #ddd;
            transition: var(--transition);
            position: relative;
        }

        .spd-sidebar-ad:hover {
            background: #e9e9e9;
            transform: translateY(-2px);
        }

        .spd-sidebar-ad .ad-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .spd-sidebar-ad .ad-subtitle {
            font-size: 13px;
            color: #666;
        }

        .spd-sidebar-ad::after {
            content: 'Ad';
            position: absolute;
            top: 8px;
            right: 12px;
            background: #ddd;
            color: #666;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 500;
        }

        /* Follow Section - Simple Grid */
        .spd-follow-section {
            text-align: center;
        }

        .spd-follow-section h3 {
            margin-bottom: 25px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .spd-social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
            gap: 15px;
        }

        .spd-social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 10px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #666;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }

        .spd-social-item:hover {
            transform: translateY(-3px);
            background: white;
            box-shadow: var(--shadow-light);
            color: #333;
        }

        .spd-social-item i {
            font-size: 20px;
            margin-bottom: 8px;
            transition: var(--transition);
        }

        .spd-social-item:hover i {
            transform: scale(1.1);
        }

        .spd-social-item span {
            font-size: 10px;
            font-weight: 500;
            opacity: 0.8;
        }

        /* Responsive Design - ARTICLE FIRST ON MOBILE */
        @media (max-width: 1024px) {
            .spd-main-container {
                grid-template-columns: 1fr; /* Single column */
                gap: 25px;
                padding: 20px;
            }
            
            /* MOBILE: Article FIRST, then Sidebar */
            .spd-primary-content {
                order: 1; /* Article shows FIRST */
                grid-column: 1; /* Full width */
            }
            
            .spd-secondary-sidebar {
                order: 2; /* Sidebar shows SECOND */
                grid-column: 1; /* Full width */
            }
            
            .spd-primary-content {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            .spd-main-container {
                padding: 15px;
                gap: 20px;
            }
            
            /* Ensure article is first on mobile */
            .spd-primary-content {
                order: 1; /* Article FIRST */
                grid-column: 1;
                padding: 25px 20px;
                border-radius: 8px;
            }
            
            .spd-secondary-sidebar {
                order: 2; /* Sidebar SECOND */
                grid-column: 1;
            }
            
            .spd-leaderboard-advert {
                height: 70px;
                font-size: 14px;
            }
            
            .spd-gallery-content {
                grid-template-columns: 1fr;
                padding: 25px;
                max-width: 95%;
            }
            
            .spd-share-options {
                min-width: 100%;
                left: 0;
                transform: none;
                bottom: auto;
                top: 100%;
                border-radius: 8px;
            }
            
            .spd-share-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .spd-social-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .spd-primary-content {
                padding: 20px 15px;
            }
            
            .spd-card {
                padding: 20px 15px;
            }
            
            .spd-share-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .spd-social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .spd-news-item img {
                height: 100px;
            }
        }

        /* Simple Loading Animation */
        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .spd-animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .spd-animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }


         /* footer*/

        /* Footer Styles */
        .siteFooterContainer {
            background: #1a1a1a;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .footerWrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            position: relative;
        }

        /* Logo Section */
        .brandIdentitySection {
            text-align: center;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeSlideUp 0.8s ease-out forwards;
        }

        .logoLink {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: #fff;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .logoLink:hover {
            color: #ff0000;
            transform: translateY(-3px) scale(1.05);
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .logoIcon {
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .logoLink:hover .logoIcon {
            transform: rotate(360deg);
        }

        /* Navigation Grid */
        .navGridLayout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .navColumnGroup {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.7s ease-out forwards;
        }

        .navColumnGroup:nth-child(2) { animation-delay: 0.1s; }
        .navColumnGroup:nth-child(3) { animation-delay: 0.2s; }
        .navColumnGroup:nth-child(4) { animation-delay: 0.3s; }

        .columnHeader {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .columnHeader::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #ff6b6b);
            transition: width 0.3s ease;
        }

        .navColumnGroup:hover .columnHeader::after {
            width: 60px;
        }

        .navLinkContainer {
            list-style: none;
        }

        .navLinkItem {
            margin-bottom: 0.6rem;
        }

        .navLinkAnchor {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

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

        .navLinkAnchor:hover {
            color: #fff;
            transform: translateX(5px);
            padding-left: 0.5rem;
        }

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

        .linkIcon {
            font-size: 0.8rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .navLinkAnchor:hover .linkIcon {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footerWrapper {
                padding: 1.5rem 1rem;
            }

            .brandIdentitySection {
                margin-bottom: 1.5rem;
            }

            .logoLink {
                font-size: 1.5rem;
            }

            .logoIcon {
                font-size: 1.7rem;
            }

            .navGridLayout {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .columnHeader {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footerWrapper {
                padding: 1rem 0.8rem;
            }

            .logoLink {
                font-size: 1.3rem;
                flex-direction: column;
                gap: 0.3rem;
            }

            .navLinkAnchor {
                font-size: 0.9rem;
            }

            .columnHeader {
                font-size: 0.95rem;
            }
        }

        /* Animations */
        @keyframes fadeSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Floating particles effect */
        .particleLayer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            width: 4px;
            height: 4px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 6px;
            height: 6px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            width: 3px;
            height: 3px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

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

        /* Scroll-triggered animation */
        .scrollReveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scrollReveal.animate {
            opacity: 1;
            transform: translateY(0);
        }