 @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@400;700;800&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        :root {
            --glow-color: #00e5ff;
            --highlight-red: #ff3b3b;
        }

        body {
            font-family: "Noto Serif Bengali", serif;
            /*font-family: 'Poppins', sans-serif;*/
            margin: 0;
            min-height: 100vh;
            /*background: linear-gradient(315deg, #1e2a53, #3a1c5d, #0d5d6a, #2f1d5e);*/
            background: #e7e7e7;
            background-size: 400% 400%;
            animation: meshGradient 25s ease infinite;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .main-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            padding: 20px;
        }

        @keyframes meshGradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .main-content {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 auto;
            margin: 0 auto;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
        }
        .bn{
          font-family: "Noto Serif Bengali", serif;
        }

        #dkPhotocard {
            width: 100%;
            max-width: 360px;
            margin: auto;
        }
        
        /* The whole photocard container */
        .dk-header {
            overflow: visible;
        }
        
        /* Header row – no overflow hidden */
        .dk-header .row {
            overflow: visible;
            align-items: center;
            margin: 0;
        }
        
        /* Logo column – give a fixed width and allow overflow */
        .dk-logo {
            width: 100px;           /* fixed width for the logo area */
            text-align: right;
            overflow: visible;
        }
        
        /* Logo image – ensure it stays inside */
        .dk-logo img {
            max-width: 100%;
            height: auto;
            display: inline-block;
            vertical-align: middle;
        }
        
        /* Ensure no parent has hidden overflow */
        .glass-card {
            overflow: visible;      /* important for html2canvas */
        }
        
        .dk-header div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem;
            color: #333;
        }

        .dk-header .dk-meta {
            display: inline-block;
            text-align: center;
            font-size: 0.7rem;
        }

        .dk-meta .fw-bold {
            font-weight: 700;
            color: #1c1c1c;
        }

        .dk-pc-photo {
            position: relative;
            text-align: center;
            padding: 0 1rem;
        }

        .dk-pc-photo img.featured-image {
            width: 100%;
            height: 182px;
            object-fit: cover;
            border-radius: 8px;
        }

        #clickable-heading {
            font-weight: 800;
            text-align: center;
            padding: 0 15px;
            margin-top: 10px;
            min-height: 85px;
            color: #1c1c1c;
            font-family: "Noto Serif Bengali", serif;
            cursor: pointer;
            flex-grow: 1;
        }

        #clickable-heading .highlight {
            color: var(--highlight-red);
        }

        .dk-footer {
            margin-top: auto;
        }

        .dk-learn-more {
            font-size: 12px;
            text-align: center;
            color: #555;
            padding: 10px 0 5px 0;
        }

        .sponsor-banner-container {
            background: #fff;
        }

        .sponsor-banner-container img {
            width: 100%;
            height: 45px;
            object-fit: contain;
            display: block;
        }

        .dk-web-address {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(45deg, #3a71a2, #23527c);
            padding: 8px 15px;
            font-family: 'Poppins', sans-serif;
            color: white;
            font-weight: 600;
            border-radius: 1rem;
        }

        .footer-left {
            font-size: 12px;
            letter-spacing: 1px;
        }

        .footer-right {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
        }

        .social-icon {
            display: inline-flex;
            color: white;
            text-decoration: none;
        }

        .social-icon svg {
            width: 16px;
            height: 16px;
        }

        .control-panel {
            margin-top: 20px;
            width: 100%;
            max-width: 400px;
            padding: 30px;
            background: #2b5d89;
            border: 1px solid black;
            border-radius: 1rem;
        }

        .control-panel .form-label {
            font-weight: 400;
            color: #b4ffe6;
        }

        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            /*background: rgba(0, 229, 255, 0.15);*/
            border-radius: 5px;
            outline: none;
            cursor: pointer;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            background: #fff;
            border-radius: 50%;
            border: 3px solid var(--glow-color);
            box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
        }

        .btn-all {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: 10px;
        }

        .btn-custom {
            border-radius: 10px;
            padding: 10px 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 2px solid transparent;
        }

        .btn-custom svg {
            width: 18px;
            height: 18px;
        }

        .btn-download {
            background: #22a222;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
        }

        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
            color: white;
        }

        .btn-back {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-back:hover {
            background: #6ad8e9;
            color: #121828;
        }
        
        .footer-credit {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-credit a {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
        }

        footer a {
            color: white;
        }