@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        :root {
            --tc834-primary: #1e40af;
            --tc834-primary-light: #3b82f6;
            --tc834-primary-dark: #1e3a8a;
            --tc834-secondary: #64748b;
            --tc834-accent: #0ea5e9;
            --tc834-success: #10b981;
            --tc834-warning: #f59e0b;
            --tc834-error: #ef4444;
            --tc834-gray-50: #f8fafc;
            --tc834-gray-100: #f1f5f9;
            --tc834-gray-200: #e2e8f0;
            --tc834-gray-300: #cbd5e1;
            --tc834-gray-400: #94a3b8;
            --tc834-gray-500: #64748b;
            --tc834-gray-600: #475569;
            --tc834-gray-700: #334155;
            --tc834-gray-800: #1e293b;
            --tc834-gray-900: #0f172a;
            --tc834-white: #ffffff;
            --tc834-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --tc834-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --tc834-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --tc834-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --tc834-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --tc834-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --tc834-gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
            --tc834-gradient-secondary: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
            --tc834-gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0891b2 100%);
        }

      .container_body {
	background: linear-gradient(135deg, #d3dae1 0%, #9da6b3 25%, #b1c1d5 50%, #94a3b8 75%, #64748b 100%);
	min-height: 100vh;
	padding: 60px 30px;
	position: relative;
	overflow-x: hidden;
	color: var(--tc834-gray-800);
	border-radius: 16px;
}

        .tc834-background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 15% 25%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 45% 55%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
            animation: tc834-background-shift 30s ease-in-out infinite;
        }

        @keyframes tc834-background-shift {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .tc834-floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .tc834-floating-element {
            position: absolute;
            background: rgba(30, 64, 175, 0.05);
            border-radius: 50%;
            animation: tc834-float 25s infinite ease-in-out;
        }

        @keyframes tc834-float {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.05; }
            25% { transform: translateY(-50px) translateX(30px) rotate(90deg); opacity: 0.1; }
            50% { transform: translateY(-100px) translateX(-30px) rotate(180deg); opacity: 0.05; }
            75% { transform: translateY(-50px) translateX(30px) rotate(270deg); opacity: 0.08; }
        }

        .tc834-main-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .tc834-professional-card {
            background: var(--tc834-white);
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 40px;
            box-shadow: var(--tc834-shadow-2xl);
            border: 1px solid var(--tc834-gray-200);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tc834-professional-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--tc834-gradient-primary);
            border-radius: 24px 24px 0 0;
        }

        .tc834-professional-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                var(--tc834-shadow-2xl),
                0 35px 60px -12px rgba(30, 64, 175, 0.15);
        }

        .tc834-header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .tc834-brand-logo {
            width: 120px;
            height: 120px;
            background: var(--tc834-gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            box-shadow: var(--tc834-shadow-xl);
            position: relative;
        }

        .tc834-brand-logo::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: conic-gradient(from 0deg, var(--tc834-primary), var(--tc834-primary-light), var(--tc834-accent), var(--tc834-primary));
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            animation: tc834-logo-rotate 20s linear infinite;
        }

        @keyframes tc834-logo-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .tc834-brand-logo-text {
            font-family: 'JetBrains Mono', monospace;
            font-size: 28px;
            font-weight: 900;
            color: var(--tc834-white);
            letter-spacing: -1px;
        }

        .tc834-main-title {
            font-size: 56px;
            font-weight: 800;
            color: var(--tc834-gray-900);
            margin-bottom: 24px;
            line-height: 1.1;
            font-family: 'Source Sans Pro', sans-serif;
            letter-spacing: -1px;
        }

        .tc834-main-subtitle {
            font-size: 14px;
            color: var(--tc834-gray-600);
            font-weight: 500;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Inter', sans-serif;
        }

        .tc834-countdown-section {
            margin-bottom: 60px;
        }

        .tc834-countdown-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--tc834-gray-800);
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Source Sans Pro', sans-serif;
            position: relative;
        }

        .tc834-countdown-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--tc834-gradient-primary);
            border-radius: 4px;
        }

        .tc834-countdown-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .tc834-time-unit {
            background: var(--tc834-white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--tc834-shadow-lg);
            border: 1px solid var(--tc834-gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tc834-time-unit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--tc834-gradient-primary);
            border-radius: 20px 20px 0 0;
        }

        .tc834-time-unit:hover {
            transform: translateY(-6px);
            box-shadow: 
                var(--tc834-shadow-xl),
                0 20px 40px -8px rgba(30, 64, 175, 0.15);
        }

        .tc834-time-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--tc834-primary);
            display: block;
            margin-bottom: 16px;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -2px;
        }

        .tc834-time-label {
            font-size: 16px;
            font-weight: 600;
            color: var(--tc834-gray-600);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Inter', sans-serif;
        }

        .tc834-progress-section {
            margin-bottom: 50px;
        }

        .tc834-progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--tc834-gray-700);
            font-family: 'Inter', sans-serif;
        }

        .tc834-progress-bar-container {
            width: 100%;
            height: 12px;
            background: var(--tc834-gray-200);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .tc834-progress-bar {
            height: 100%;
            background: var(--tc834-gradient-primary);
            border-radius: 12px;
            transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
        }

        .tc834-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: tc834-progress-shine 3s infinite;
        }

        @keyframes tc834-progress-shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .tc834-controls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .tc834-control-card {
            background: var(--tc834-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--tc834-shadow-lg);
            border: 1px solid var(--tc834-gray-200);
            transition: all 0.3s ease;
            position: relative;
        }

        .tc834-control-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--tc834-gradient-accent);
            border-radius: 20px 20px 0 0;
        }

        .tc834-control-card:hover {
            transform: translateY(-4px);
            box-shadow: 
                var(--tc834-shadow-xl),
                0 20px 40px -8px rgba(14, 165, 233, 0.15);
        }

        .tc834-control-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--tc834-gray-800);
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .tc834-current-time {
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 30px;
            font-family: 'JetBrains Mono', monospace;
            color: var(--tc834-primary);
            letter-spacing: -1px;
        }

        .tc834-timezone-select {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--tc834-gray-300);
            border-radius: 12px;
            background: var(--tc834-white);
            font-size: 16px;
            font-weight: 500;
            color: var(--tc834-gray-700);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 16px center;
            background-repeat: no-repeat;
            background-size: 20px;
            padding-right: 50px;
        }

        .tc834-timezone-select:focus {
            outline: none;
            border-color: var(--tc834-primary);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        .tc834-custom-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

/*         .tc834-time-input {
            padding: 16px 20px;
            border: 2px solid var(--tc834-gray-300);
            border-radius: 12px;
            background: var(--tc834-white);
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            color: var(--tc834-gray-700);
            transition: all 0.3s ease;
            font-family: 'JetBrains Mono', monospace;
        } */

     .tc834-time-input {
	padding: 16px 20px;
	border: 2px solid var(--tc834-gray-300);
	border-radius: 12px;
	background: var(--tc834-white);
	font-size: 20px !important;
	font-weight: 600;
	text-align: center;
	color: var(--tc834-gray-700);
	transition: all 0.3s ease;
	font-family: 'JetBrains Mono', monospace;
}

        .tc834-time-input:focus {
            outline: none;
            border-color: var(--tc834-primary);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        .tc834-custom-button {
            width: 100%;
            padding: 16px 32px;
            background: var(--tc834-gradient-primary);
            color: var(--tc834-white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            box-shadow: var(--tc834-shadow-md);
        }

        .tc834-custom-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--tc834-shadow-lg);
        }


      .tc834-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(323px, 1fr));
	gap: 7px;
	margin-bottom: 60px;
} 



        .tc834-feature-card {
            background: var(--tc834-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--tc834-shadow-lg);
            border: 1px solid var(--tc834-gray-200);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .tc834-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--tc834-gradient-secondary);
            border-radius: 20px 20px 0 0;
        }

        .tc834-feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 
                var(--tc834-shadow-xl),
                0 25px 50px -12px rgba(100, 116, 139, 0.15);
        }

        .tc834-feature-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--tc834-gray-800);
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Professional Analog Clock */
        .tc834-analog-clock {
            width: 280px;
            height: 280px;
            border: 20px solid var(--tc834-gray-800);
            border-radius: 50%;
            position: relative;
            margin: 0 auto 30px;
            background: 
                radial-gradient(circle at 35% 35%, var(--tc834-white) 0%, var(--tc834-gray-50) 30%, var(--tc834-gray-100) 70%, var(--tc834-gray-200) 100%);
            box-shadow: 
                var(--tc834-shadow-2xl),
                inset 0 8px 16px rgba(255, 255, 255, 0.9),
                inset 0 -8px 16px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .tc834-analog-clock::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 3px solid var(--tc834-gray-300);
            border-radius: 50%;
            background: 
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
        }

/*         .tc834-clock-face {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        } */

     .tc834-clock-face {
	position: absolute;
	top: -35px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

        .tc834-clock-numbers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .tc834-clock-number {
            position: absolute;
            font-size: 20px;
            font-weight: 800;
            color: var(--tc834-gray-800);
            font-family: 'JetBrains Mono', monospace;
            transform: translate(-50%, -50%);
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
            z-index: 6;
        }

        .tc834-hour-marks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .tc834-hour-mark {
            position: absolute;
            width: 5px;
            height: 30px;
            background: linear-gradient(180deg, var(--tc834-gray-800) 0%, var(--tc834-gray-600) 100%);
            left: 50%;
            margin-left: -2.5px;
            transform-origin: 50% 140px;
            top: 20px;
            border-radius: 3px;
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
        }

        .tc834-minute-mark {
            position: absolute;
            width: 2px;
            height: 18px;
            background: linear-gradient(180deg, var(--tc834-gray-500) 0%, var(--tc834-gray-400) 100%);
            left: 50%;
            margin-left: -1px;
            transform-origin: 50% 140px;
            top: 32px;
            border-radius: 1px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .tc834-clock-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 24px;
            height: 24px;
            background: 
                radial-gradient(circle, var(--tc834-gray-800) 0%, var(--tc834-gray-600) 70%, var(--tc834-gray-500) 100%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            box-shadow: 
                var(--tc834-shadow-lg),
                inset 0 3px 6px rgba(255, 255, 255, 0.4),
                inset 0 -3px 6px rgba(0, 0, 0, 0.3);
            border: 4px solid var(--tc834-white);
        }

        .tc834-clock-hand {
            position: absolute;
            transform-origin: bottom center;
            border-radius: 8px;
            box-shadow: 
                var(--tc834-shadow-lg),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .tc834-hour-hand {
            width: 10px;
            height: 80px;
            top: 60px;
            left: 50%;
            margin-left: -5px;
            background: linear-gradient(180deg, var(--tc834-gray-800) 0%, var(--tc834-gray-600) 50%, var(--tc834-gray-500) 100%);
            border-radius: 5px;
            z-index: 12;
        }

        .tc834-minute-hand {
            width: 8px;
            height: 100px;
            top: 40px;
            left: 50%;
            margin-left: -4px;
            background: linear-gradient(180deg, var(--tc834-gray-800) 0%, var(--tc834-gray-600) 50%, var(--tc834-gray-500) 100%);
            border-radius: 4px;
            z-index: 13;
        }

        .tc834-second-hand {
            width: 3px;
            height: 110px;
            top: 30px;
            left: 50%;
            margin-left: -1.5px;
            background: linear-gradient(180deg, var(--tc834-primary) 0%, var(--tc834-primary-dark) 50%, var(--tc834-primary-dark) 100%);
            border-radius: 1.5px;
            z-index: 14;
            box-shadow: 
                0 4px 8px rgba(30, 64, 175, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .tc834-digital-time {
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--tc834-gray-700);
            font-family: 'JetBrains Mono', monospace;
        }

        .tc834-stats-grid {
            display: grid;
            gap: 20px;
        }

        .tc834-stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: var(--tc834-gray-50);
            border-radius: 12px;
            border-left: 4px solid var(--tc834-primary);
            box-shadow: var(--tc834-shadow-sm);
            transition: all 0.2s ease;
        }

        .tc834-stat-item:hover {
            transform: translateX(4px);
            box-shadow: var(--tc834-shadow-md);
        }

        .tc834-stat-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--tc834-gray-600);
            font-family: 'Inter', sans-serif;
        }

        .tc834-stat-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--tc834-gray-800);
            font-family: 'JetBrains Mono', monospace;
        }

        .tc834-content-section {
            background: var(--tc834-white);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--tc834-shadow-2xl);
            border: 1px solid var(--tc834-gray-200);
            position: relative;
            overflow: hidden;
        }

        .tc834-content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--tc834-gradient-primary);
            border-radius: 24px 24px 0 0;
        }

        .tc834-content-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--tc834-gray-900);
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Source Sans Pro', sans-serif;
            position: relative;
            letter-spacing: -1px;
        }

        .tc834-content-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: var(--tc834-gradient-primary);
            border-radius: 4px;
        }

        .tc834-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .tc834-content-card {
            background: var(--tc834-gray-50);
            border-radius: 16px;
            padding: 40px;
            border-left: 6px solid var(--tc834-primary);
            box-shadow: var(--tc834-shadow-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tc834-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), transparent);
            border-radius: 0 16px 0 120px;
        }

        .tc834-content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--tc834-shadow-lg);
        }

        .tc834-content-card-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--tc834-gray-800);
            margin-bottom: 24px;
            font-family: 'Source Sans Pro', sans-serif;
            position: relative;
            z-index: 1;
        }

        .tc834-content-text {
            font-size: 17px;
            line-height: 1.7;
            color: var(--tc834-gray-600);
            margin-bottom: 24px;
            font-family: 'Inter', sans-serif;
            position: relative;
            z-index: 1;
        }

        .tc834-content-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .tc834-list-item {
            font-size: 16px;
            color: var(--tc834-gray-600);
            margin-bottom: 16px;
            padding-left: 28px;
            position: relative;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
        }

        .tc834-list-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--tc834-primary);
            font-weight: 800;
            font-size: 18px;
        }

        .tc834-keyword-highlight {
            color: var(--tc834-primary);
            font-weight: 700;
        }

        .tc834-faq-section {
            margin-top: 60px;
        }

        .tc834-faq-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--tc834-gray-800);
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .tc834-faq-grid {
            display: grid;
            gap: 30px;
        }

        .tc834-faq-item {
            background: var(--tc834-gray-50);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--tc834-gray-200);
            box-shadow: var(--tc834-shadow-sm);
            transition: all 0.3s ease;
        }

        .tc834-faq-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--tc834-shadow-md);
        }

        .tc834-faq-question {
            font-size: 20px;
            font-weight: 700;
            color: var(--tc834-gray-800);
            margin-bottom: 16px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .tc834-faq-answer {
            font-size: 16px;
            line-height: 1.6;
            color: var(--tc834-gray-600);
            font-family: 'Inter', sans-serif;
        }
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

       /*────────────────────────────────────────
   Responsive Media Queries for tc834 Styles
   Breakpoints: 992px, 768px, 600px, 400px, 375px
   Place these rules at the very end of your stylesheet.
────────────────────────────────────────*/

/*────────── ≤ 992px ──────────*/
@media (max-width: 992px) {
  /* Container padding */
  .container_body {
    padding: 50px 20px !important;
  }

  /* Professional Card */
  .tc834-professional-card {
    padding: 50px 30px !important;
    margin-bottom: 30px !important;
  }
  .tc834-brand-logo {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 30px !important;
  }
  .tc834-brand-logo-text {
    font-size: 24px !important;
  }
  .tc834-main-title {
    font-size: 48px !important;
    margin-bottom: 20px !important;
  }
  .tc834-main-subtitle {
    font-size: 13px !important;
    max-width: 700px !important;
    line-height: 1.5 !important;
  }

  /* Countdown Section */
  .tc834-countdown-section {
    margin-bottom: 40px !important;
  }
  .tc834-countdown-title {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }
  .tc834-countdown-display {
    gap: 24px !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  }
  .tc834-time-unit {
    padding: 36px 26px !important;
  }
  .tc834-time-number {
    font-size: 40px !important;
    margin-bottom: 12px !important;
  }
  .tc834-time-label {
    font-size: 14px !important;
  }

  /* Progress Section */
  .tc834-progress-section {
    margin-bottom: 40px !important;
  }
  .tc834-progress-info {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }
  .tc834-progress-bar-container {
    height: 10px !important;
  }

  /* Controls Grid (2 columns) */
  .tc834-controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 32px !important;
    margin-bottom: 40px !important;
  }
  .tc834-control-card {
    padding: 32px 28px !important;
  }
  .tc834-control-title {
    font-size: 22px !important;
    margin-bottom: 24px !important;
  }
  .tc834-current-time {
    font-size: 32px !important;
    margin-bottom: 24px !important;
  }
  .tc834-timezone-select {
    font-size: 15px !important;
    padding: 14px 18px !important;
  }
  .tc834-custom-inputs {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }
  .tc834-time-input {
    font-size: 18px !important;
    padding: 14px 18px !important;
  }
  .tc834-custom-button {
    font-size: 15px !important;
    padding: 14px 28px !important;
  }

  /* Features Grid (2 columns) */
  .tc834-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
    margin-bottom: 50px !important;
  }
  .tc834-feature-card {
    padding: 32px 28px !important;
  }
  .tc834-feature-title {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }

  /* Analog Clock scaling */
  .tc834-analog-clock {
    width: 220px !important;
    height: 220px !important;
    border-width: 16px !important;
    margin-bottom: 24px !important;
  }
  .tc834-analog-clock::before {
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    border-width: 2.5px !important;
  }
  .tc834-hour-mark {
    width: 4px !important;
    height: 26px !important;
    transform-origin: 50% 110px !important;
    top: 18px !important;
  }
  .tc834-minute-mark {
    width: 2px !important;
    height: 16px !important;
    transform-origin: 50% 110px !important;
    top: 30px !important;
  }
  .tc834-clock-center {
    width: 22px !important;
    height: 22px !important;
  }
  .tc834-hour-hand {
    width: 8px !important;
    height: 70px !important;
    top: 50px !important;
    margin-left: -4px !important;
  }
  .tc834-minute-hand {
    width: 6px !important;
    height: 90px !important;
    top: 30px !important;
    margin-left: -3px !important;
  }
  .tc834-second-hand {
    width: 3px !important;
    height: 100px !important;
    top: 20px !important;
    margin-left: -1.5px !important;
  }
  .tc834-digital-time {
    font-size: 18px !important;
    margin-top: 8px !important;
  }

  /* Stats Grid */
  .tc834-stats-grid {
    gap: 16px !important;
  }
  .tc834-stat-item {
    padding: 16px 20px !important;
  }
  .tc834-stat-label {
    font-size: 14px !important;
  }
  .tc834-stat-value {
    font-size: 16px !important;
  }

  /* Content Section */
  .tc834-content-section {
    padding: 50px 30px !important;
  }
  .tc834-content-title {
    font-size: 40px !important;
    margin-bottom: 40px !important;
  }
  .tc834-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 32px !important;
    margin-bottom: 50px !important;
  }
  .tc834-content-card {
    padding: 32px 28px !important;
  }
  .tc834-content-card-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  .tc834-content-text {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  .tc834-list-item {
    font-size: 15px !important;
    padding-left: 24px !important;
  }
  .tc834-list-item::before {
    font-size: 18px !important;
  }

  /* FAQ Section */
  .tc834-faq-section {
    margin-top: 50px !important;
  }
  .tc834-faq-title {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }
  .tc834-faq-grid {
    gap: 24px !important;
  }
  .tc834-faq-item {
    padding: 24px !important;
  }
  .tc834-faq-question {
    font-size: 18px !important;
    margin-bottom: 14px !important;
  }
  .tc834-faq-answer {
    font-size: 15px !important;
  }
}

/*────────── ≤ 768px ──────────*/
@media (max-width: 768px) {
  .container_body {
    padding: 40px 18px !important;
  }
  .tc834-professional-card {
    padding: 40px 24px !important;
    margin-bottom: 30px !important;
  }
  .tc834-brand-logo {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 24px !important;
  }
  .tc834-brand-logo-text {
    font-size: 22px !important;
  }
  .tc834-main-title {
    font-size: 40px !important;
    margin-bottom: 18px !important;
  }
  .tc834-main-subtitle {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .tc834-countdown-section {
    margin-bottom: 36px !important;
  }
  .tc834-countdown-title {
    font-size: 28px !important;
    margin-bottom: 36px !important;
  }
  .tc834-countdown-display {
    gap: 20px !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  }
  .tc834-time-unit {
    padding: 32px 24px !important;
  }
  .tc834-time-number {
    font-size: 36px !important;
  }
  .tc834-time-label {
    font-size: 14px !important;
  }

  .tc834-progress-section {
    margin-bottom: 36px !important;
  }
  .tc834-progress-info {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc834-progress-bar-container {
    height: 10px !important;
  }

  .tc834-controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 36px !important;
  }
  .tc834-control-card {
    padding: 28px 22px !important;
  }
  .tc834-control-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc834-current-time {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
  .tc834-timezone-select {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
  .tc834-custom-inputs {
    gap: 14px !important;
    margin-bottom: 20px !important;
  }
  .tc834-time-input {
    font-size: 17px !important;
    padding: 12px 16px !important;
  }
  .tc834-custom-button {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }

  .tc834-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 50px !important;
  }
  .tc834-feature-card {
    padding: 28px 22px !important;
  }
  .tc834-feature-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .tc834-analog-clock {
    width: 200px !important;
    height: 200px !important;
    border-width: 14px !important;
    margin-bottom: 20px !important;
  }
  .tc834-analog-clock::before {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    border-width: 2px !important;
  }
  .tc834-hour-mark {
    width: 4px !important;
    height: 24px !important;
    transform-origin: 50% 100px !important;
    top: 18px !important;
  }
  .tc834-minute-mark {
    width: 2px !important;
    height: 14px !important;
    transform-origin: 50% 100px !important;
    top: 28px !important;
  }
  .tc834-clock-center {
    width: 20px !important;
    height: 20px !important;
  }
  .tc834-hour-hand {
    width: 7px !important;
    height: 60px !important;
    top: 48px !important;
    margin-left: -3.5px !important;
  }
  .tc834-minute-hand {
    width: 6px !important;
    height: 80px !important;
    top: 28px !important;
    margin-left: -3px !important;
  }
  .tc834-second-hand {
    width: 3px !important;
    height: 90px !important;
    top: 18px !important;
    margin-left: -1.5px !important;
  }
  .tc834-digital-time {
    font-size: 17px !important;
  }

  .tc834-stats-grid {
    gap: 14px !important;
  }
  .tc834-stat-item {
    padding: 14px 18px !important;
  }
  .tc834-stat-label {
    font-size: 13px !important;
  }
  .tc834-stat-value {
    font-size: 15px !important;
  }

  .tc834-content-section {
    padding: 40px 28px !important;
  }
  .tc834-content-title {
    font-size: 36px !important;
    margin-bottom: 36px !important;
  }
  .tc834-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 28px !important;
    margin-bottom: 50px !important;
  }
  .tc834-content-card {
    padding: 28px 22px !important;
  }
  .tc834-content-card-title {
    font-size: 22px !important;
    margin-bottom: 22px !important;
  }
  .tc834-content-text {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  .tc834-list-item {
    font-size: 14px !important;
    padding-left: 22px !important;
  }
  .tc834-list-item::before {
    font-size: 16px !important;
  }

  .tc834-faq-section {
    margin-top: 50px !important;
  }
  .tc834-faq-title {
    font-size: 28px !important;
    margin-bottom: 36px !important;
  }
  .tc834-faq-grid {
    gap: 20px !important;
  }
  .tc834-faq-item {
    padding: 20px !important;
  }
  .tc834-faq-question {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .tc834-faq-answer {
    font-size: 15px !important;
  }
}

/*────────── ≤ 600px ──────────*/
@media (max-width: 600px) {
  .container_body {
    padding: 30px 16px !important;
  }
  .tc834-professional-card {
    padding: 32px 20px !important;
    margin-bottom: 28px !important;
  }
  .tc834-brand-logo {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 20px !important;
  }
  .tc834-brand-logo-text {
    font-size: 20px !important;
  }
  .tc834-main-title {
    font-size: 32px !important;
    margin-bottom: 16px !important;
  }
  .tc834-main-subtitle {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .tc834-countdown-section {
    margin-bottom: 32px !important;
  }
  .tc834-countdown-title {
    font-size: 24px !important;
    margin-bottom: 32px !important;
  }
/*   .tc834-countdown-display {
    gap: 16px !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  } */
	.tc834-countdown-display {
	gap: 16px !important;
	display: flex;
	flex-direction: column;
}
  .tc834-time-unit {
    padding: 28px 20px !important;
  }
  .tc834-time-number {
    font-size: 32px !important;
  }
  .tc834-time-label {
    font-size: 13px !important;
  }

  .tc834-progress-section {
    margin-bottom: 32px !important;
  }
  .tc834-progress-info {
    font-size: 13px !important;
    margin-bottom: 14px !important;
  }
  .tc834-progress-bar-container {
    height: 8px !important;
  }

  .tc834-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
  }
  .tc834-control-card {
    padding: 28px 20px !important;
  }
  .tc834-control-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc834-current-time {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
  .tc834-timezone-select {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
  .tc834-custom-inputs {
    gap: 12px !important;
    margin-bottom: 20px !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .tc834-time-input {
    font-size: 16px !important;
    padding: 12px 16px !important;
  }
  .tc834-custom-button {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }

  .tc834-features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }
  .tc834-feature-card {
    padding: 28px 20px !important;
  }
  .tc834-feature-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .tc834-analog-clock {
    width: 180px !important;
    height: 180px !important;
    border-width: 12px !important;
    margin-bottom: 18px !important;
  }
  .tc834-analog-clock::before {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    border-width: 2px !important;
  }
  .tc834-hour-mark {
    width: 3px !important;
    height: 22px !important;
    transform-origin: 50% 90px !important;
    top: 18px !important;
  }
  .tc834-minute-mark {
    width: 2px !important;
    height: 14px !important;
    transform-origin: 50% 90px !important;
    top: 30px !important;
  }
  .tc834-clock-center {
    width: 18px !important;
    height: 18px !important;
  }
  .tc834-hour-hand {
    width: 7px !important;
    height: 60px !important;
    top: 45px !important;
    margin-left: -3.5px !important;
  }
  .tc834-minute-hand {
    width: 6px !important;
    height: 80px !important;
    top: 25px !important;
    margin-left: -3px !important;
  }
  .tc834-second-hand {
    width: 3px !important;
    height: 90px !important;
    top: 18px !important;
    margin-left: -1.5px !important;
  }
  .tc834-digital-time {
    font-size: 16px !important;
  }

  .tc834-stats-grid {
    gap: 12px !important;
  }
  .tc834-stat-item {
    padding: 14px 18px !important;
  }
  .tc834-stat-label {
    font-size: 13px !important;
  }
  .tc834-stat-value {
    font-size: 15px !important;
  }

  .tc834-content-section {
    padding: 32px 24px !important;
  }
  .tc834-content-title {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }
  .tc834-content-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 36px !important;
  }
  .tc834-content-card {
    padding: 24px 20px !important;
  }
  .tc834-content-card-title {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }
  .tc834-content-text {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }
  .tc834-list-item {
    font-size: 14px !important;
    padding-left: 24px !important;
  }
  .tc834-list-item::before {
    font-size: 16px !important;
  }

  .tc834-faq-section {
    margin-top: 40px !important;
  }
  .tc834-faq-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc834-faq-grid {
    gap: 20px !important;
  }
  .tc834-faq-item {
    padding: 20px !important;
  }
  .tc834-faq-question {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .tc834-faq-answer {
    font-size: 15px !important;
  }
}

/*────────── ≤ 400px ──────────*/
@media (max-width: 400px) {
  .container_body {
    padding: 24px 12px !important;
  }
  .tc834-professional-card {
    padding: 28px 16px !important;
    margin-bottom: 24px !important;
  }
  .tc834-brand-logo {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 18px !important;
  }
  .tc834-brand-logo-text {
    font-size: 18px !important;
  }
  .tc834-main-title {
    font-size: 28px !important;
    margin-bottom: 14px !important;
  }
  .tc834-main-subtitle {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .tc834-countdown-section {
    margin-bottom: 28px !important;
  }
  .tc834-countdown-title {
    font-size: 24px !important;
    margin-bottom: 28px !important;
  }
  .tc834-countdown-display {
    gap: 12px !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
  }
  .tc834-time-unit {
    padding: 24px 16px !important;
  }
  .tc834-time-number {
    font-size: 28px !important;
  }
  .tc834-time-label {
    font-size: 12px !important;
  }

  .tc834-progress-section {
    margin-bottom: 28px !important;
  }
  .tc834-progress-info {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .tc834-progress-bar-container {
    height: 6px !important;
  }

  .tc834-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .tc834-control-card {
    padding: 24px 16px !important;
  }
  .tc834-control-title {
    font-size: 18px !important;
    margin-bottom: 18px !important;
  }
  .tc834-current-time {
    font-size: 24px !important;
    margin-bottom: 18px !important;
  }
  .tc834-timezone-select {
    font-size: 12px !important;
    padding: 10px 14px !important;
  }
  .tc834-custom-inputs {
    gap: 10px !important;
    margin-bottom: 18px !important;
  }
  .tc834-time-input {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  .tc834-custom-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .tc834-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
  }
  .tc834-feature-card {
    padding: 24px 16px !important;
  }
  .tc834-feature-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .tc834-analog-clock {
    width: 160px !important;
    height: 160px !important;
    border-width: 10px !important;
    margin-bottom: 16px !important;
  }
  .tc834-analog-clock::before {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    border-width: 2px !important;
  }
  .tc834-hour-mark {
    width: 3px !important;
    height: 20px !important;
    transform-origin: 50% 80px !important;
    top: 16px !important;
  }
  .tc834-minute-mark {
    width: 2px !important;
    height: 12px !important;
    transform-origin: 50% 80px !important;
    top: 28px !important;
  }
  .tc834-clock-center {
    width: 18px !important;
    height: 18px !important;
  }
  .tc834-hour-hand {
    width: 6px !important;
    height: 50px !important;
    top: 42px !important;
    margin-left: -3px !important;
  }
  .tc834-minute-hand {
    width: 5px !important;
    height: 70px !important;
    top: 22px !important;
    margin-left: -2.5px !important;
  }
  .tc834-second-hand {
    width: 2px !important;
    height: 80px !important;
    top: 18px !important;
    margin-left: -1px !important;
  }
  .tc834-digital-time {
    font-size: 16px !important;
  }

  .tc834-stats-grid {
    gap: 12px !important;
  }
  .tc834-stat-item {
    padding: 12px 16px !important;
  }
  .tc834-stat-label {
    font-size: 12px !important;
  }
  .tc834-stat-value {
    font-size: 14px !important;
  }

  .tc834-content-section {
    padding: 28px 20px !important;
  }
  .tc834-content-title {
    font-size: 28px !important;
    margin-bottom: 28px !important;
  }
  .tc834-content-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 28px !important;
  }
  .tc834-content-card {
    padding: 20px 16px !important;
  }
  .tc834-content-card-title {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }
  .tc834-content-text {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc834-list-item {
    font-size: 14px !important;
    padding-left: 22px !important;
  }
  .tc834-list-item::before {
    font-size: 16px !important;
  }

  .tc834-faq-section {
    margin-top: 32px !important;
  }
  .tc834-faq-title {
    font-size: 24px !important;
    margin-bottom: 28px !important;
  }
  .tc834-faq-grid {
    gap: 16px !important;
  }
  .tc834-faq-item {
    padding: 18px !important;
  }
  .tc834-faq-question {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  .tc834-faq-answer {
    font-size: 14px !important;
  }
	.tc834-countdown-display {
	gap: 16px !important;
	display: flex;
	flex-direction: column;
}
}

/*────────── ≤ 375px ──────────*/
@media (max-width: 375px) {
  .container_body {
    padding: 20px 10px !important;
  }
  .tc834-professional-card {
    padding: 24px 16px !important;
    margin-bottom: 20px !important;
  }
  .tc834-brand-logo {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 16px !important;
  }
  .tc834-brand-logo-text {
    font-size: 18px !important;
  }
  .tc834-main-title {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }
  .tc834-main-subtitle {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .tc834-countdown-section {
    margin-bottom: 24px !important;
  }
  .tc834-countdown-title {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }
  .tc834-countdown-display {
    gap: 8px !important;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
  }
  .tc834-time-unit {
    padding: 20px 14px !important;
  }
  .tc834-time-number {
    font-size: 24px !important;
  }
  .tc834-time-label {
    font-size: 11px !important;
  }

  .tc834-progress-section {
    margin-bottom: 24px !important;
  }
  .tc834-progress-info {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
  .tc834-progress-bar-container {
    height: 6px !important;
  }

  .tc834-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .tc834-control-card {
    padding: 22px 14px !important;
  }
  .tc834-control-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc834-current-time {
    font-size: 22px !important;
    margin-bottom: 16px !important;
  }
  .tc834-timezone-select {
    font-size: 12px !important;
    padding: 10px 14px !important;
  }
  .tc834-custom-inputs {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .tc834-time-input {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  .tc834-custom-button {
    font-size: 12px !important;
    padding: 10px 20px !important;
  }

  .tc834-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  }
  .tc834-feature-card {
    padding: 24px 16px !important;
  }
  .tc834-feature-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .tc834-analog-clock {
    width: 140px !important;
    height: 140px !important;
    border-width: 8px !important;
    margin-bottom: 14px !important;
  }
  .tc834-analog-clock::before {
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    border-width: 1.5px !important;
  }
  .tc834-hour-mark {
    width: 3px !important;
    height: 18px !important;
    transform-origin: 50% 70px !important;
    top: 14px !important;
  }
  .tc834-minute-mark {
    width: 2px !important;
    height: 12px !important;
    transform-origin: 50% 70px !important;
    top: 26px !important;
  }
  .tc834-clock-center {
    width: 16px !important;
    height: 16px !important;
  }
  .tc834-hour-hand {
    width: 6px !important;
    height: 50px !important;
    top: 40px !important;
    margin-left: -3px !important;
  }
  .tc834-minute-hand {
    width: 5px !important;
    height: 60px !important;
    top: 24px !important;
    margin-left: -2.5px !important;
  }
  .tc834-second-hand {
    width: 2px !important;
    height: 70px !important;
    top: 18px !important;
    margin-left: -1px !important;
  }
  .tc834-digital-time {
    font-size: 14px !important;
  }

  .tc834-stats-grid {
    gap: 10px !important;
  }
  .tc834-stat-item {
    padding: 10px 14px !important;
  }
  .tc834-stat-label {
    font-size: 12px !important;
  }
  .tc834-stat-value {
    font-size: 14px !important;
  }

  .tc834-content-section {
    padding: 24px 20px !important;
  }
  .tc834-content-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc834-content-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }
  .tc834-content-card {
    padding: 20px 16px !important;
  }
  .tc834-content-card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc834-content-text {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc834-list-item {
    font-size: 13px !important;
    padding-left: 20px !important;
  }
  .tc834-list-item::before {
    font-size: 16px !important;
  }

  .tc834-faq-section {
    margin-top: 32px !important;
  }
  .tc834-faq-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc834-faq-grid {
    gap: 16px !important;
  }
  .tc834-faq-item {
    padding: 16px !important;
  }
  .tc834-faq-question {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .tc834-faq-answer {
    font-size: 14px !important;
  }
	.tc834-countdown-display {
	gap: 16px !important;
	display: flex;
	flex-direction: column;
}
}
