  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@100;200;300;400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Exo+2:wght@100;200;300;400;500;600;700;800;900&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Rajdhani', sans-serif;
        }

        :root {
            --neon-blue: #00f5ff;
            --neon-purple: #bf00ff;
            --neon-pink: #ff0080;
            --neon-green: #00ff41;
            --neon-orange: #ff8000;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: rgba(15, 15, 25, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-accent: #00f5ff;
            --border-glow: rgba(0, 245, 255, 0.3);
            --shadow-neon: 0 0 20px rgba(0, 245, 255, 0.5);
            --shadow-purple: 0 0 20px rgba(191, 0, 255, 0.5);
            --shadow-pink: 0 0 20px rgba(255, 0, 128, 0.5);
        }

        .container_body {
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            min-height: 100vh;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
            color: var(--text-primary);
					border-radius:15px;
        }

        .tc827-animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .tc827-bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: tc827-float-bg 20s infinite ease-in-out;
        }

        @keyframes tc827-float-bg {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-100px) rotate(90deg) scale(1.1); }
            50% { transform: translateY(-200px) rotate(180deg) scale(0.9); }
            75% { transform: translateY(-100px) rotate(270deg) scale(1.1); }
        }

        .tc827-grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            pointer-events: none;
            animation: tc827-grid-pulse 4s ease-in-out infinite;
        }

        @keyframes tc827-grid-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.1; }
        }

        .tc827-main-container {
            max-width: 1800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .tc827-futuristic-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 30px;
            border: 1px solid var(--border-glow);
            box-shadow: 
                var(--shadow-neon),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tc827-futuristic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
            transition: left 2s ease;
        }

        .tc827-futuristic-card:hover::before {
            left: 100%;
        }

        .tc827-futuristic-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 20px 40px rgba(0, 245, 255, 0.3),
                var(--shadow-purple),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: var(--neon-purple);
        }

        .tc827-header-section {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .tc827-hologram-logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 40px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tc827-hologram-ring {
            position: absolute;
            border: 2px solid var(--neon-blue);
            border-radius: 50%;
            animation: tc827-rotate 10s linear infinite;
        }

        .tc827-hologram-ring:nth-child(1) {
            width: 150px;
            height: 150px;
            box-shadow: var(--shadow-neon);
        }

        .tc827-hologram-ring:nth-child(2) {
            width: 120px;
            height: 120px;
            border-color: var(--neon-purple);
            animation-direction: reverse;
            animation-duration: 8s;
            box-shadow: var(--shadow-purple);
        }

        .tc827-hologram-ring:nth-child(3) {
            width: 90px;
            height: 90px;
            border-color: var(--neon-pink);
            animation-duration: 6s;
            box-shadow: var(--shadow-pink);
        }

        @keyframes tc827-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .tc827-logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--neon-blue);
            text-shadow: 0 0 20px var(--neon-blue);
            z-index: 1;
            position: relative;
        }

        .tc827-main-title {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            line-height: 1.1;
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
            animation: tc827-title-glow 3s ease-in-out infinite alternate;
        }

        @keyframes tc827-title-glow {
            0% { filter: brightness(1) drop-shadow(0 0 20px rgba(0, 245, 255, 0.5)); }
            100% { filter: brightness(1.2) drop-shadow(0 0 30px rgba(191, 0, 255, 0.7)); }
        }

        .tc827-main-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            font-family: 'Rajdhani', sans-serif;
        }

        .tc827-countdown-section {
            margin-bottom: 50px;
        }

        .tc827-countdown-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Orbitron', monospace;
            position: relative;
            text-shadow: 0 0 20px var(--neon-blue);
        }

        .tc827-countdown-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--neon-blue), transparent);
            border-radius: 3px;
            animation: tc827-line-glow 2s ease-in-out infinite alternate;
        }

        @keyframes tc827-line-glow {
            0% { box-shadow: 0 0 10px var(--neon-blue); }
            100% { box-shadow: 0 0 20px var(--neon-purple); }
        }

        .tc827-countdown-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .tc827-time-unit {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-neon);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tc827-time-unit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            border-radius: 20px 20px 0 0;
        }

        .tc827-time-unit:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 
                0 20px 40px rgba(0, 245, 255, 0.4),
                var(--shadow-purple),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: var(--neon-purple);
        }

        .tc827-time-number {
            font-size: 56px;
            font-weight: 900;
            color: var(--neon-blue);
            display: block;
            margin-bottom: 20px;
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 20px var(--neon-blue);
            animation: tc827-number-pulse 2s ease-in-out infinite;
        }

        @keyframes tc827-number-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .tc827-time-label {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Rajdhani', sans-serif;
        }

        .tc827-progress-section {
            margin-bottom: 50px;
            position: relative;
        }

        .tc827-progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
        }

        .tc827-progress-container {
            position: relative;
            width: 100%;
            height: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-glow);
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .tc827-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            border-radius: 20px;
            transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
        }

        .tc827-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: tc827-progress-shine 3s infinite;
        }

        @keyframes tc827-progress-shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .tc827-controls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .tc827-control-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-neon);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tc827-control-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-orange));
            border-radius: 20px 20px 0 0;
        }

        .tc827-control-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 30px rgba(0, 255, 65, 0.3),
                var(--shadow-neon),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: var(--neon-green);
        }

        .tc827-control-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 15px var(--neon-green);
        }

        .tc827-current-time {
            font-size: 42px;
            font-weight: 900;
            text-align: center;
            margin-bottom: 30px;
            font-family: 'Space Mono', monospace;
            color: var(--neon-blue);
            text-shadow: 0 0 20px var(--neon-blue);
            background: rgba(0, 245, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--neon-blue);
        }

        .tc827-timezone-select {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--border-glow);
            border-radius: 15px;
            background: rgba(0, 0, 0, 0.7);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', 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='%2300f5ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 20px center;
            background-repeat: no-repeat;
            background-size: 20px;
            padding-right: 55px;
					  
        }

        .tc827-timezone-select:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
            background-color: rgba(0, 245, 255, 0.1);
					  color:black;
        }

        .tc827-custom-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .tc827-time-input {
            padding: 18px 25px;
            border: 2px solid var(--border-glow);
            border-radius: 15px;
            background: rgba(0, 0, 0, 0.7);
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            color: var(--text-primary);
            transition: all 0.3s ease;
            font-family: 'Space Mono', monospace;
        }

        .tc827-time-input:focus {
            outline: none;
            border-color: var(--neon-purple);
            box-shadow: 0 0 20px rgba(191, 0, 255, 0.4);
            background-color: rgba(191, 0, 255, 0.1);
        }

        .tc827-custom-button {
            width: 100%;
            padding: 18px 35px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--text-primary);
            border: none;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            box-shadow: 0 10px 20px rgba(0, 245, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tc827-custom-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 245, 255, 0.5);
            background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
        }



 .tc827-features-grid {
/* 	display: grid; */
	grid-template-columns: repeat(auto-fit, minmax(384px, 1fr));
	gap: 4px;
	margin-bottom: 50px;
}

        .tc827-feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-neon);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .tc827-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-orange));
            border-radius: 20px 20px 0 0;
        }

        .tc827-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(255, 0, 128, 0.3),
                var(--shadow-pink),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: var(--neon-pink);
        }



 .tc827-feature-title {
	font-size: 23px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 30px;
	text-align: center;
	font-family: 'Orbitron', monospace;
	text-shadow: 0 0 15px var(--neon-pink);
}

        /* Futuristic Holographic Clock */
        .tc827-holographic-clock {
            width: 320px;
            height: 320px;
            position: relative;
            margin: 0 auto 30px;
            background: 
                radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%),
                conic-gradient(from 0deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-green), var(--neon-blue));
            border-radius: 50%;
            padding: 10px;
            box-shadow: 
                0 0 50px rgba(0, 245, 255, 0.5),
                inset 0 0 50px rgba(0, 245, 255, 0.1);
            animation: tc827-clock-glow 4s ease-in-out infinite alternate;
        }

        @keyframes tc827-clock-glow {
            0% { box-shadow: 0 0 50px rgba(0, 245, 255, 0.5), inset 0 0 50px rgba(0, 245, 255, 0.1); }
            100% { box-shadow: 0 0 80px rgba(191, 0, 255, 0.7), inset 0 0 80px rgba(191, 0, 255, 0.2); }
        }

        .tc827-clock-inner {
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at center, var(--dark-bg) 60%, transparent 100%);
            border-radius: 50%;
            position: relative;
            border: 2px solid rgba(0, 245, 255, 0.3);
        }

    .tc827-clock-face {
	position: absolute;
	top: -39px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

        .tc827-clock-numbers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }



     .tc827-clock-number {
	/* position: absolute; */
	/* font-size: 24px; */
	/* font-weight: 800; */
	/* color: var(--neon-blue); */
	/* font-family: 'Orbitron', monospace; */
	/* transform: translate(-50%, -50%); */
	/* text-shadow: 0 0 15px var(--neon-blue); */
	/* z-index: 6; */
	/* transition: all 0.3s ease; */
	display: none;
}

        .tc827-clock-number:hover {
            color: var(--neon-purple);
            text-shadow: 0 0 20px var(--neon-purple);
            transform: translate(-50%, -50%) scale(1.2);
        }

        .tc827-hour-marks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .tc827-hour-mark {
            position: absolute;
            width: 4px;
            height: 35px;
            background: linear-gradient(180deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
            left: 50%;
            margin-left: -2px;
            transform-origin: 50% 160px;
            top: 20px;
            border-radius: 2px;
            box-shadow: 0 0 10px var(--neon-blue);
        }

        .tc827-minute-mark {
            position: absolute;
            width: 2px;
            height: 20px;
            background: linear-gradient(180deg, var(--neon-green) 0%, var(--neon-orange) 100%);
            left: 50%;
            margin-left: -1px;
            transform-origin: 50% 160px;
            top: 35px;
            border-radius: 1px;
            box-shadow: 0 0 5px var(--neon-green);
        }

        .tc827-clock-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 30px;
            background: 
                radial-gradient(circle, var(--neon-blue) 0%, var(--neon-purple) 70%, var(--neon-pink) 100%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            box-shadow: 
                0 0 30px var(--neon-blue),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.5);
        }

        .tc827-clock-hand {
            position: absolute;
            transform-origin: bottom center;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.7);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .tc827-hour-hand {
            width: 8px;
            height: 90px;
            top: 70px;
            left: 50%;
            margin-left: -4px;
            background: linear-gradient(180deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
            border-radius: 4px;
            z-index: 12;
        }

        .tc827-minute-hand {
            width: 6px;
            height: 120px;
            top: 40px;
            left: 50%;
            margin-left: -3px;
            background: linear-gradient(180deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
            border-radius: 3px;
            z-index: 13;
        }

        .tc827-second-hand {
            width: 2px;
            height: 140px;
            top: 20px;
            left: 50%;
            margin-left: -1px;
            background: linear-gradient(180deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
            border-radius: 1px;
            z-index: 14;
            box-shadow: 0 0 20px var(--neon-pink);
        }

        .tc827-digital-time {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--neon-blue);
            font-family: 'Space Mono', monospace;
            text-shadow: 0 0 15px var(--neon-blue);
            background: rgba(0, 245, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid var(--neon-blue);
        }

        .tc827-stats-grid {
            display: grid;
            gap: 20px;
        }

        .tc827-stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            border-left: 4px solid var(--neon-blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid var(--border-glow);
        }

        .tc827-stat-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 245, 255, 0.3);
            border-left-color: var(--neon-purple);
            background: rgba(0, 245, 255, 0.1);
        }

        .tc827-stat-label {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-secondary);
            font-family: 'Rajdhani', sans-serif;
        }

        .tc827-stat-value {
            font-size: 20px;
            font-weight: 800;
            color: var(--neon-blue);
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .tc827-content-section {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-neon);
            position: relative;
            overflow: hidden;
        }

        .tc827-content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-green), var(--neon-orange));
            border-radius: 20px 20px 0 0;
        }



     .tc827-content-title {
	font-size: 33px;
	font-weight: 900;
	background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	margin-bottom: 50px;
	font-family: 'Orbitron', monospace;
	position: relative;
	text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

        .tc827-content-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            border-radius: 4px;
            box-shadow: 0 0 15px var(--neon-blue);
        }

        .tc827-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .tc827-content-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            border-left: 6px solid var(--neon-blue);
            box-shadow: var(--shadow-neon);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-glow);
        }

        .tc827-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent);
            border-radius: 0 20px 0 150px;
        }

        .tc827-content-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(0, 245, 255, 0.3),
                var(--shadow-purple);
            border-left-color: var(--neon-purple);
        }



  .tc827-content-card-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 25px;
	font-family: 'Orbitron', monospace;
	position: relative;
	z-index: 1;
	text-shadow: 0 0 15px var(--neon-blue);
}

        .tc827-content-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-family: 'Rajdhani', sans-serif;
            position: relative;
            z-index: 1;
        }

        .tc827-content-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .tc827-list-item {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 18px;
            padding-left: 35px;
            position: relative;
            font-family: 'Rajdhani', sans-serif;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .tc827-list-item::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: var(--neon-blue);
            font-weight: 800;
            font-size: 16px;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .tc827-list-item:hover {
            color: var(--text-primary);
            transform: translateX(10px);
        }

        .tc827-list-item:hover::before {
            color: var(--neon-purple);
            text-shadow: 0 0 15px var(--neon-purple);
        }

        .tc827-keyword-highlight {
            color: var(--neon-blue);
            font-weight: 700;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .tc827-faq-section {
            margin-top: 60px;
        }

        .tc827-faq-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 20px var(--neon-purple);
        }

        .tc827-faq-grid {
            display: grid;
            gap: 30px;
        }

        .tc827-faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-neon);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tc827-faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-orange));
            border-radius: 20px 20px 0 0;
        }

        .tc827-faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 30px rgba(0, 255, 65, 0.3),
                var(--shadow-neon);
            border-color: var(--neon-green);
        }

        .tc827-faq-question {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 10px var(--neon-green);
        }

        .tc827-faq-answer {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            font-family: 'Rajdhani', sans-serif;
        }

        /* Mode Selector */
        .tc827-mode-selector {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tc827-mode-button {
            padding: 15px 30px;
            background: var(--glass-bg);
            border: 2px solid var(--border-glow);
            border-radius: 15px;
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .tc827-mode-button:hover,
        .tc827-mode-button.active {
            background: var(--neon-blue);
            color: var(--dark-bg);
            box-shadow: 0 0 20px var(--neon-blue);
            transform: translateY(-2px);
        }

.tc827-time-input {
	padding: 18px 25px;
	border: 2px solid var(--border-glow);
	border-radius: 15px;
	background: rgba(0, 0, 0, 0.7);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: var(--text-primary);
	transition: all 0.3s ease;
	font-family: 'Space Mono', monospace;
	font-size: 20px !important;
}

      /*────────────────────────────────────────────
  Responsive Media Queries for Neon Futuristic (tc827) Styles
  Breakpoints: 992px, 768px, 600px, 400px, 375px
  ---------------------------------------------------
  Place this entire block at the very end of your stylesheet.
────────────────────────────────────────────*/

/*────────── ≤ 992px ──────────*/
@media (max-width: 992px) {
  /* Container padding */
  .container_body {
    padding: 30px 16px !important;
  }

  /* Futuristic Card */
  .tc827-futuristic-card {
    padding: 40px !important;
    margin-bottom: 24px !important;
  }
  .tc827-futuristic-card:hover {
    transform: translateY(-5px) scale(0.98) !important;
  }

  /* Header Section */
  .tc827-hologram-logo {
    width: 130px !important;
    height: 130px !important;
    margin-bottom: 30px !important;
  }
  .tc827-hologram-ring:nth-child(1) {
    width: 130px !important;
    height: 130px !important;
  }
  .tc827-hologram-ring:nth-child(2) {
    width: 100px !important;
    height: 100px !important;
  }
  .tc827-hologram-ring:nth-child(3) {
    width: 70px !important;
    height: 70px !important;
  }
  .tc827-logo-text {
    font-size: 28px !important;
    text-shadow: 0 0 15px var(--neon-blue) !important;
  }
  .tc827-main-title {
    font-size: 56px !important;
    margin-bottom: 24px !important;
  }
  .tc827-main-subtitle {
    font-size: 20px !important;
    max-width: 700px !important;
    line-height: 1.5 !important;
    margin-bottom: 40px !important;
  }

  /* Countdown Section */
  .tc827-countdown-section {
    margin-bottom: 40px !important;
  }
  .tc827-countdown-title {
    font-size: 36px !important;
    margin-bottom: 40px !important;
  }
  .tc827-countdown-title::after {
    width: 160px !important;
    bottom: -12px !important;
  }
  .tc827-countdown-display {
    gap: 24px !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    margin-bottom: 40px !important;
  }
  .tc827-time-unit {
    padding: 32px 24px !important;
  }
  .tc827-time-number {
    font-size: 48px !important;
    margin-bottom: 16px !important;
  }
  .tc827-time-label {
    font-size: 16px !important;
  }

  /* Progress Section */
  .tc827-progress-section {
    margin-bottom: 40px !important;
  }
  .tc827-progress-info {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  .tc827-progress-container {
    height: 16px !important;
  }
  .tc827-progress-bar::after {
    animation-duration: 2.5s !important;
  }

  /* Controls Grid (Two-Column) */
  .tc827-controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .tc827-control-card {
    padding: 32px 24px !important;
  }
  .tc827-control-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-current-time {
    font-size: 36px !important;
    margin-bottom: 24px !important;
  }
  .tc827-timezone-select {
    font-size: 15px !important;
    padding: 14px 20px !important;
  }
  .tc827-custom-inputs {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }
  .tc827-time-input {
    font-size: 18px !important;
    padding: 14px 20px !important;
  }
  .tc827-custom-button {
    font-size: 16px !important;
    padding: 14px 28px !important;
  }

  /* Features Grid (Two-Column) */
  .tc827-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .tc827-feature-card {
    padding: 32px 24px !important;
  }
  .tc827-feature-title {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }

  /* Holographic Clock */
  .tc827-holographic-clock {
    width: 280px !important;
    height: 280px !important;
    margin-bottom: 24px !important;
  }
  .tc827-clock-inner {
    border-width: 2px !important;
  }
  .tc827-hour-mark {
    width: 3px !important;
    height: 32px !important;
    transform-origin: 50% 140px !important;
    top: 18px !important;
  }
  .tc827-minute-mark {
    width: 2px !important;
    height: 18px !important;
    transform-origin: 50% 140px !important;
    top: 32px !important;
  }
  .tc827-clock-center {
    width: 26px !important;
    height: 26px !important;
  }
  .tc827-hour-hand {
    width: 7px !important;
    height: 80px !important;
    top: 55px !important;
    margin-left: -3.5px !important;
  }
  .tc827-minute-hand {
    width: 6px !important;
    height: 100px !important;
    top: 35px !important;
    margin-left: -3px !important;
  }
  .tc827-second-hand {
    width: 2px !important;
    height: 120px !important;
    top: 25px !important;
    margin-left: -1px !important;
  }
  .tc827-digital-time {
    font-size: 22px !important;
    padding: 18px !important;
    margin-top: 8px !important;
  }

  /* Stats Grid (Single-Column) */
  .tc827-stats-grid {
    gap: 16px !important;
  }
  .tc827-stat-item {
    padding: 16px 20px !important;
  }
  .tc827-stat-label {
    font-size: 15px !important;
  }
  .tc827-stat-value {
    font-size: 18px !important;
  }

  /* Content Section */
  .tc827-content-section {
    padding: 50px 30px !important;
  }
  .tc827-content-title {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }
  .tc827-content-title::after {
    width: 160px !important;
    bottom: -15px !important;
  }
  .tc827-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 32px !important;
    margin-bottom: 40px !important;
  }
  .tc827-content-card {
    padding: 32px 24px !important;
  }
  .tc827-content-card-title {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }
  .tc827-content-text {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }
  .tc827-list-item {
    font-size: 16px !important;
    padding-left: 30px !important;
  }
  .tc827-list-item::before {
    font-size: 16px !important;
  }

  /* FAQ Section */
  .tc827-faq-section {
    margin-top: 50px !important;
  }
  .tc827-faq-title {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }
  .tc827-faq-grid {
    gap: 24px !important;
  }
  .tc827-faq-item {
    padding: 24px !important;
  }
  .tc827-faq-question {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }
  .tc827-faq-answer {
    font-size: 16px !important;
  }

  /* Mode Selector */
  .tc827-mode-selector {
    gap: 16px !important;
    margin-bottom: 30px !important;
  }
  .tc827-mode-button {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }
}

/*────────── ≤ 768px ──────────*/
@media (max-width: 768px) {
  .container_body {
    padding: 24px 14px !important;
  }
  .tc827-futuristic-card {
    padding: 32px !important;
    margin-bottom: 20px !important;
  }
  .tc827-futuristic-card:hover {
    transform: translateY(-4px) scale(0.98) !important;
  }

  .tc827-hologram-logo {
    width: 110px !important;
    height: 110px !important;
    margin-bottom: 24px !important;
  }
  .tc827-hologram-ring:nth-child(1) {
    width: 110px !important;
    height: 110px !important;
  }
  .tc827-hologram-ring:nth-child(2) {
    width: 90px !important;
    height: 90px !important;
  }
  .tc827-hologram-ring:nth-child(3) {
    width: 60px !important;
    height: 60px !important;
  }
  .tc827-logo-text {
    font-size: 24px !important;
  }
  .tc827-main-title {
    font-size: 48px !important;
    margin-bottom: 20px !important;
  }
  .tc827-main-subtitle {
    font-size: 18px !important;
    max-width: 650px !important;
    margin-bottom: 32px !important;
  }

  .tc827-countdown-section {
    margin-bottom: 36px !important;
  }
  .tc827-countdown-title {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }
  .tc827-countdown-display {
    gap: 20px !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    margin-bottom: 36px !important;
  }
  .tc827-time-unit {
    padding: 28px 22px !important;
  }
  .tc827-time-number {
    font-size: 44px !important;
  }
  .tc827-time-label {
    font-size: 15px !important;
  }

  .tc827-progress-section {
    margin-bottom: 36px !important;
  }
  .tc827-progress-info {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }
  .tc827-progress-container {
    height: 14px !important;
  }

  .tc827-controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }
  .tc827-control-card {
    padding: 28px 22px !important;
  }
  .tc827-control-title {
    font-size: 22px !important;
    margin-bottom: 22px !important;
  }
  .tc827-current-time {
    font-size: 32px !important;
    margin-bottom: 22px !important;
  }
  .tc827-timezone-select {
    font-size: 14px !important;
    padding: 12px 18px !important;
  }
  .tc827-custom-inputs {
    gap: 14px !important;
    margin-bottom: 22px !important;
  }
  .tc827-time-input {
    font-size: 17px !important;
    padding: 12px 18px !important;
  }
  .tc827-custom-button {
    font-size: 15px !important;
    padding: 12px 26px !important;
  }

  .tc827-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }
  .tc827-feature-card {
    padding: 28px 22px !important;
  }
  .tc827-feature-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .tc827-holographic-clock {
    width: 240px !important;
    height: 240px !important;
    margin-bottom: 20px !important;
  }
  .tc827-clock-inner {
    border-width: 2px !important;
  }
  .tc827-hour-mark {
    width: 3px !important;
    height: 28px !important;
    transform-origin: 50% 120px !important;
    top: 18px !important;
  }
  .tc827-minute-mark {
    width: 2px !important;
    height: 16px !important;
    transform-origin: 50% 120px !important;
    top: 30px !important;
  }
  .tc827-clock-center {
    width: 24px !important;
    height: 24px !important;
  }
  .tc827-hour-hand {
    width: 7px !important;
    height: 70px !important;
    top: 50px !important;
    margin-left: -3.5px !important;
  }
  .tc827-minute-hand {
    width: 6px !important;
    height: 90px !important;
    top: 30px !important;
    margin-left: -3px !important;
  }
  .tc827-second-hand {
    width: 2px !important;
    height: 100px !important;
    top: 22px !important;
    margin-left: -1px !important;
  }
  .tc827-digital-time {
    font-size: 20px !important;
    padding: 16px !important;
    margin-top: 6px !important;
  }

  .tc827-stats-grid {
    gap: 14px !important;
  }
  .tc827-stat-item {
    padding: 14px 18px !important;
  }
  .tc827-stat-label {
    font-size: 14px !important;
  }
  .tc827-stat-value {
    font-size: 16px !important;
  }

  .tc827-content-section {
    padding: 48px 28px !important;
  }
  .tc827-content-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc827-content-title::after {
    width: 140px !important;
    bottom: -18px !important;
  }
  .tc827-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc827-content-card {
    padding: 28px 22px !important;
  }
  .tc827-content-card-title {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }
  .tc827-content-text {
    font-size: 17px !important;
    margin-bottom: 18px !important;
  }
  .tc827-list-item {
    font-size: 15px !important;
    padding-left: 28px !important;
  }
  .tc827-list-item::before {
    font-size: 16px !important;
  }

  .tc827-faq-section {
    margin-top: 48px !important;
  }
  .tc827-faq-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc827-faq-grid {
    gap: 24px !important;
  }
  .tc827-faq-item {
    padding: 24px !important;
  }
  .tc827-faq-question {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }
  .tc827-faq-answer {
    font-size: 15px !important;
  }

  .tc827-mode-selector {
    gap: 14px !important;
    margin-bottom: 32px !important;
  }
  .tc827-mode-button {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }
}

/*────────── ≤ 600px ──────────*/
@media (max-width: 600px) {
  .container_body {
    padding: 20px 12px !important;
  }
  .tc827-futuristic-card {
    padding: 28px !important;
    margin-bottom: 20px !important;
  }
  .tc827-futuristic-card:hover {
    transform: translateY(-4px) scale(0.97) !important;
  }

  .tc827-hologram-logo {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 20px !important;
  }
  .tc827-hologram-ring:nth-child(1) {
    width: 100px !important;
    height: 100px !important;
  }
  .tc827-hologram-ring:nth-child(2) {
    width: 80px !important;
    height: 80px !important;
  }
  .tc827-hologram-ring:nth-child(3) {
    width: 60px !important;
    height: 60px !important;
  }
  .tc827-logo-text {
    font-size: 22px !important;
  }
  .tc827-main-title {
    font-size: 40px !important;
    margin-bottom: 18px !important;
  }
  .tc827-main-subtitle {
    font-size: 16px !important;
    max-width: 600px !important;
    margin-bottom: 28px !important;
  }

  .tc827-countdown-section {
    margin-bottom: 32px !important;
  }
  .tc827-countdown-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc827-countdown-display {
    gap: 18px !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    margin-bottom: 32px !important;
  }
  .tc827-time-unit {
    padding: 24px 18px !important;
  }
  .tc827-time-number {
    font-size: 40px !important;
  }
  .tc827-time-label {
    font-size: 14px !important;
  }

  .tc827-progress-section {
    margin-bottom: 32px !important;
  }
  .tc827-progress-info {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc827-progress-container {
    height: 12px !important;
  }

  .tc827-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
  }
  .tc827-control-card {
    padding: 24px 18px !important;
  }
  .tc827-control-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc827-current-time {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
  .tc827-timezone-select {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
  .tc827-custom-inputs {
    gap: 12px !important;
    margin-bottom: 20px !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .tc827-time-input {
    font-size: 16px !important;
    padding: 12px 16px !important;
  }
  .tc827-custom-button {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }

  .tc827-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
  }
  .tc827-feature-card {
    padding: 24px 18px !important;
  }
  .tc827-feature-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .tc827-holographic-clock {
    width: 200px !important;
    height: 200px !important;
    margin-bottom: 20px !important;
  }
  .tc827-clock-inner {
    border-width: 2px !important;
  }
  .tc827-hour-mark {
    width: 3px !important;
    height: 26px !important;
    transform-origin: 50% 100px !important;
    top: 18px !important;
  }
  .tc827-minute-mark {
    width: 2px !important;
    height: 14px !important;
    transform-origin: 50% 100px !important;
    top: 30px !important;
  }
  .tc827-clock-center {
    width: 22px !important;
    height: 22px !important;
  }
  .tc827-hour-hand {
    width: 7px !important;
    height: 60px !important;
    top: 48px !important;
    margin-left: -3.5px !important;
  }
  .tc827-minute-hand {
    width: 6px !important;
    height: 80px !important;
    top: 28px !important;
    margin-left: -3px !important;
  }
  .tc827-second-hand {
    width: 2px !important;
    height: 80px !important;
    top: 22px !important;
    margin-left: -1px !important;
  }
  .tc827-digital-time {
    font-size: 20px !important;
    padding: 14px !important;
    margin-top: 6px !important;
  }

  .tc827-stats-grid {
    gap: 12px !important;
  }
  .tc827-stat-item {
    padding: 12px 16px !important;
  }
  .tc827-stat-label {
    font-size: 14px !important;
  }
  .tc827-stat-value {
    font-size: 16px !important;
  }

  .tc827-content-section {
    padding: 32px 24px !important;
  }
  .tc827-content-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc827-content-title::after {
    width: 120px !important;
    bottom: -16px !important;
  }
  .tc827-content-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
  }
  .tc827-content-card {
    padding: 24px 18px !important;
  }
  .tc827-content-card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc827-content-text {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc827-list-item {
    font-size: 14px !important;
    padding-left: 24px !important;
  }
  .tc827-list-item::before {
    font-size: 16px !important;
  }

  .tc827-faq-section {
    margin-top: 48px !important;
  }
  .tc827-faq-title {
    font-size: 28px !important;
    margin-bottom: 28px !important;
  }
  .tc827-faq-grid {
    gap: 24px !important;
  }
  .tc827-faq-item {
    padding: 20px !important;
  }
  .tc827-faq-question {
    font-size: 18px !important;
    margin-bottom: 14px !important;
  }
  .tc827-faq-answer {
    font-size: 14px !important;
  }

  .tc827-mode-selector {
    gap: 12px !important;
    margin-bottom: 28px !important;
  }
  .tc827-mode-button {
    padding: 10px 22px !important;
    font-size: 14px !important;
  }
.tc827-clock-face {
	position: absolute;
	top: -35px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
}

/*────────── ≤ 400px ──────────*/
@media (max-width: 400px) {
  .container_body {
    padding: 16px 8px !important;
  }
  .tc827-futuristic-card {
    padding: 24px !important;
    margin-bottom: 16px !important;
  }
  .tc827-futuristic-card:hover {
    transform: translateY(-3px) scale(0.96) !important;
  }

  .tc827-hologram-logo {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 16px !important;
  }
  .tc827-hologram-ring:nth-child(1) {
    width: 90px !important;
    height: 90px !important;
  }
  .tc827-hologram-ring:nth-child(2) {
    width: 70px !important;
    height: 70px !important;
  }
  .tc827-hologram-ring:nth-child(3) {
    width: 50px !important;
    height: 50px !important;
  }
  .tc827-logo-text {
    font-size: 20px !important;
  }
  .tc827-main-title {
    font-size: 32px !important;
    margin-bottom: 14px !important;
  }
  .tc827-main-subtitle {
    font-size: 14px !important;
    max-width: 500px !important;
    margin-bottom: 24px !important;
  }

  .tc827-countdown-section {
    margin-bottom: 24px !important;
  }
  .tc827-countdown-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-countdown-display {
    gap: 12px !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
    margin-bottom: 24px !important;
  }
  .tc827-time-unit {
    padding: 20px 16px !important;
  }
  .tc827-time-number {
    font-size: 36px !important;
  }
  .tc827-time-label {
    font-size: 13px !important;
  }

  .tc827-progress-section {
    margin-bottom: 24px !important;
  }
  .tc827-progress-info {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }
  .tc827-progress-container {
    height: 10px !important;
  }

  .tc827-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .tc827-control-card {
    padding: 20px 16px !important;
  }
  .tc827-control-title {
    font-size: 18px !important;
    margin-bottom: 18px !important;
  }
  .tc827-current-time {
    font-size: 24px !important;
    margin-bottom: 18px !important;
  }
  .tc827-timezone-select {
    font-size: 14px !important;
    padding: 10px 14px !important;
  }
  .tc827-custom-inputs {
    gap: 10px !important;
    margin-bottom: 16px !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .tc827-time-input {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  .tc827-custom-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .tc827-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
  }
  .tc827-feature-card {
    padding: 24px 16px !important;
  }
  .tc827-feature-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .tc827-holographic-clock {
    width: 180px !important;
    height: 180px !important;
    margin-bottom: 18px !important;
  }
  .tc827-clock-inner {
    border-width: 2px !important;
  }
  .tc827-hour-mark {
    width: 3px !important;
    height: 24px !important;
    transform-origin: 50% 80px !important;
    top: 18px !important;
  }
  .tc827-minute-mark {
    width: 2px !important;
    height: 12px !important;
    transform-origin: 50% 80px !important;
    top: 28px !important;
  }
  .tc827-clock-center {
    width: 20px !important;
    height: 20px !important;
  }
  .tc827-hour-hand {
    width: 6px !important;
    height: 50px !important;
    top: 42px !important;
    margin-left: -3px !important;
  }
  .tc827-minute-hand {
    width: 5px !important;
    height: 60px !important;
    top: 25px !important;
    margin-left: -2.5px !important;
  }
  .tc827-second-hand {
    width: 2px !important;
    height: 70px !important;
    top: 18px !important;
    margin-left: -1px !important;
  }
  .tc827-digital-time {
    font-size: 18px !important;
    padding: 12px !important;
    margin-top: 6px !important;
  }

  .tc827-stats-grid {
    gap: 10px !important;
  }
  .tc827-stat-item {
    padding: 10px 14px !important;
  }
  .tc827-stat-label {
    font-size: 13px !important;
  }
  .tc827-stat-value {
    font-size: 15px !important;
  }

  .tc827-content-section {
    padding: 28px 20px !important;
  }
  .tc827-content-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-content-title::after {
    width: 120px !important;
    bottom: -14px !important;
  }
  .tc827-content-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
  }
  .tc827-content-card {
    padding: 20px 16px !important;
  }
  .tc827-content-card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc827-content-text {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc827-list-item {
    font-size: 14px !important;
    padding-left: 24px !important;
  }
  .tc827-list-item::before {
    font-size: 16px !important;
  }

  .tc827-faq-section {
    margin-top: 40px !important;
  }
  .tc827-faq-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-faq-grid {
    gap: 20px !important;
  }
  .tc827-faq-item {
    padding: 20px !important;
  }
  .tc827-faq-question {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .tc827-faq-answer {
    font-size: 14px !important;
  }

  .tc827-mode-selector {
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .tc827-mode-button {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }
	.tc827-clock-face {
	position: absolute;
	top: -27px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
}

/*────────── ≤ 375px ──────────*/
@media (max-width: 375px) {
  .container_body {
    padding: 12px 8px !important;
  }
  .tc827-futuristic-card {
    padding: 20px !important;
    margin-bottom: 16px !important;
  }
  .tc827-futuristic-card:hover {
    transform: translateY(-3px) scale(0.95) !important;
  }

  .tc827-hologram-logo {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 16px !important;
  }
  .tc827-hologram-ring:nth-child(1) {
    width: 80px !important;
    height: 80px !important;
  }
  .tc827-hologram-ring:nth-child(2) {
    width: 60px !important;
    height: 60px !important;
  }
  .tc827-hologram-ring:nth-child(3) {
    width: 40px !important;
    height: 40px !important;
  }
  .tc827-logo-text {
    font-size: 18px !important;
  }
  .tc827-main-title {
    font-size: 28px !important;
    margin-bottom: 12px !important;
  }
  .tc827-main-subtitle {
    font-size: 14px !important;
    max-width: 400px !important;
    margin-bottom: 20px !important;
  }

  .tc827-countdown-section {
    margin-bottom: 20px !important;
  }
  .tc827-countdown-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc827-countdown-display {
    gap: 8px !important;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
    margin-bottom: 20px !important;
  }
  .tc827-time-unit {
    padding: 16px 12px !important;
  }
  .tc827-time-number {
    font-size: 32px !important;
  }
  .tc827-time-label {
    font-size: 12px !important;
  }

  .tc827-progress-section {
    margin-bottom: 20px !important;
  }
  .tc827-progress-info {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
  .tc827-progress-container {
    height: 8px !important;
  }

  .tc827-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .tc827-control-card {
    padding: 20px 14px !important;
  }
  .tc827-control-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc827-current-time {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  .tc827-timezone-select {
    font-size: 14px !important;
    padding: 10px 14px !important;
  }
  .tc827-custom-inputs {
    gap: 8px !important;
    margin-bottom: 16px !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .tc827-time-input {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  .tc827-custom-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .tc827-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
  }
  .tc827-feature-card {
    padding: 20px 14px !important;
  }
  .tc827-feature-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .tc827-holographic-clock {
    width: 160px !important;
    height: 160px !important;
    margin-bottom: 16px !important;
  }
  .tc827-clock-inner {
    border-width: 2px !important;
  }
  .tc827-hour-mark {
    width: 3px !important;
    height: 22px !important;
    transform-origin: 50% 70px !important;
    top: 16px !important;
  }
  .tc827-minute-mark {
    width: 2px !important;
    height: 12px !important;
    transform-origin: 50% 70px !important;
    top: 28px !important;
  }
  .tc827-clock-center {
    width: 18px !important;
    height: 18px !important;
  }
  .tc827-hour-hand {
    width: 6px !important;
    height: 50px !important;
    top: 38px !important;
    margin-left: -3px !important;
  }
  .tc827-minute-hand {
    width: 5px !important;
    height: 60px !important;
    top: 22px !important;
    margin-left: -2.5px !important;
  }
  .tc827-second-hand {
    width: 2px !important;
    height: 60px !important;
    top: 18px !important;
    margin-left: -1px !important;
  }
  .tc827-digital-time {
    font-size: 16px !important;
    padding: 10px !important;
    margin-top: 6px !important;
  }

  .tc827-stats-grid {
    gap: 8px !important;
  }
  .tc827-stat-item {
    padding: 10px 12px !important;
  }
  .tc827-stat-label {
    font-size: 12px !important;
  }
  .tc827-stat-value {
    font-size: 14px !important;
  }

  .tc827-content-section {
    padding: 24px 16px !important;
  }
  .tc827-content-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-content-title::after {
    width: 120px !important;
    bottom: -12px !important;
  }
  .tc827-content-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }
  .tc827-content-card {
    padding: 20px 16px !important;
  }
  .tc827-content-card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc827-content-text {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc827-list-item {
    font-size: 14px !important;
    padding-left: 22px !important;
  }
  .tc827-list-item::before {
    font-size: 16px !important;
  }

  .tc827-faq-section {
    margin-top: 36px !important;
  }
  .tc827-faq-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc827-faq-grid {
    gap: 16px !important;
  }
  .tc827-faq-item {
    padding: 16px !important;
  }
  .tc827-faq-question {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  .tc827-faq-answer {
    font-size: 14px !important;
  }

  .tc827-mode-selector {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .tc827-mode-button {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }
	.tc827-clock-face {
	position: absolute;
	top: -27px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
}
