.bodycount {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 35vh;
            margin: 0;
            background-color: #fff3e0; /* Very pale orange/cream background */
            color: #4e342e; /* Dark brown for text */
            padding: 10px; /* Added padding to prevent touching screen edges */
            box-sizing: border-box;
        }

        .countdown-container {
            text-align: center;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(255,152,0,0.15); 
            border: 2px solid #007dff; 
            width: 100%;
            max-width: 600px; /* Restrict maximum width */
            box-sizing: border-box;
        }

        .h1c {
            margin-top: 0;
            font-size: 24px;
            color: #002c59; 
        }

        .timer {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap; /* Allows wrapping on extremely small screens */
        }

        .time-box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .time-box span {
            font-size: 48px;
            font-weight: bold;
            color: white; 
            background: #007dff; 
            padding: 15px 20px;
            border-radius: 8px;
            min-width: 70px;
            box-shadow: inset 0 -4px 0 rgba(0,0,0,0.1); 
            box-sizing: border-box;
        }

        .time-box label {
            margin-top: 10px;
            font-size: 14px;
            text-transform: uppercase;
            color: #007dff; 
            letter-spacing: 1px;
            font-weight: bold;
        }

        #expired-message {
            display: none;
            font-size: 24px;
            color: #1e6ab9; 
            font-weight: bold;
            margin-top: 20px;
            border: 2px solid #007dff;
            padding: 10px;
            border-radius: 5px;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 500px) {
            .countdown-container {
                padding: 25px 15px;
            }

            h1 {
                font-size: 20px;
            }

            .timer {
                gap: 10px; /* Reduce gap between boxes */
            }

            .time-box span {
                font-size: 32px; /* Smaller numbers */
                padding: 12px 10px;
                min-width: 55px; /* Narrower boxes */
            }

            .time-box label {
                font-size: 11px; /* Smaller labels */
                letter-spacing: 0.5px;
            }
            
            #expired-message {
                font-size: 18px;
            }
        }
        
        /* For very small devices like the iPhone SE */
        @media (max-width: 350px) {
            .timer {
                /* Splits into a 2x2 grid instead of a straight line */
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px; 
            }
        }
		
		/* Base Styles */
        .bodybox {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f4f5f7;
            color: #333;
            margin: 0;
            padding: 3rem 1.5rem;
            box-sizing: border-box;
        }

        /* Header Section */
        .headerbox {
            text-align: center;
            margin-bottom: 3rem;
        }

        .headerbox h2 {
            color: #007dff; /* Deep Orange */
            font-size: 2.2rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .headerbox-line {
            height: 4px;
            width: 80px;
            background-color: #007dff; /* Bright Orange */
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* Grid Container for Cards */
        .cardbox-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Individual Card Design */
        .cardbox {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-top: 5px solid #007dff; /* Orange top border */
            display: flex;
            align-items: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cardbox:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 152, 0, 0.15); /* Orange tinted shadow */
        }

        /* Card Icon/Arrow */
        .card-icon {
            color: #007dff;
            font-size: 1.2rem;
            margin-right: 1rem;
            margin-top: 2px;
        }

        /* Card Text */
        .card-text {
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.4;
            color: #444;
        }

        /* Special Card for the Note */
        .notebox-card {
            grid-column: 1 / -1; /* Spans across all columns */
            background-color: #fff3e0; /* Very light orange background */
            border: 1px dashed #007dff;
            border-left: 6px solid #025ab7;
            border-radius: 8px;
            padding: 1.5rem 2rem;
            margin-top: 1rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
        }

        .note-card p {
            margin: 0;
            font-size: 1rem;
            font-style: italic;
            color: #0b59aa; /* Darkest orange/brown */
            font-weight: 500;
        }
		
		/* footer */
        .cardfooter-body {
            background-color: #007dff;
			padding: 1rem;
			font-size: .875rem;
			line-height: 1.25rem;
        }