        * { font-family: monospace !important; }
        #body {
            width: 100vw;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
        }
        
        .countdown {
            font-size: 14px;
            font-weight: 600;
        }

        #myModalBtn {
            display: none;
            z-index: 9999;
            position: absolute;
            margin-left: auto;
            margin-right: auto;
            bottom: 10px;
            left: 10px;
            right: 10px;
            text-align: center;
            max-width: 75%;
        }

        .pricing-card {
            border: 1px dotted #333;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-header {
            border-radius: 4px 4px 0 0;
            padding: 1rem;
        }

        .pricing-features {
            padding: 1rem;
        }

        .pricing-features li {
            padding: 0.4rem 0rem 0.4rem 0rem;
            border-bottom: 1px dotted #333;
            font-weight: 600;
        }

        .pricing-features li img {
            width: 24px;
            height: 24px;
            margin-right: 2px;
        }

        .pricing-features .btn {
            border-radius: 4px;
            padding: 0.75rem 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: 100%;
        }