﻿#countdown {
    font-size: 2em;
    font-weight: bold;
    color: #ff0000;
}

.cta-card {
    background: white;
    padding: 5px 5px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}


.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /*background: conic-gradient(from 0deg, #ff8a00, #e52e71, #9c1aff, #ff8a00);
    animation: rotate 6s linear infinite;*/
    z-index: 0;
}

.cta-card::after {
    content: "";
    /*position: absolute;*/
    inset: 5px;
    background: white;
    border-radius: 15px;
    z-index: 1;
}


.cta-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0px;
}


.cta-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    animation: textPulse 2s infinite;
}

    .cta-content h6 {
        font-size: 0.8rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
        animation: textPulse 2s infinite;
    }


    .cta-content button {
        background: #0d6efd;
        /*background: linear-gradient(90deg,#ff8a00,#e52e71);*/
        border: none;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(229,46,113,0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: bounce 3s infinite;
    }


.cta-content button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(229,46,113,0.6);
}


@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}


@keyframes textPulse {
    0%,100% {
        color: #333
    }

    50% {
        color: #e52e71
    }
}


@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}
.countdown-container {
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

    .countdown-container h5 {
        /*margin-bottom: 20px;
        font-size: 2.5em;
        letter-spacing: 2px;*/
        color: #ffd700;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

.countdown {
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.digit {
    background: linear-gradient(45deg, #ff512f, #dd2476);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.5s;
}

    .digit:hover {
        transform: scale(1.2);
        background: linear-gradient(45deg, #24c6dc, #514a9d);
    }

.separator {
    font-weight: bold;
    align-self: center;
}

.radio-group {
    margin: 10px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
    font-size: 14px;
}

    /* Hide default radio */
    .radio-label input[type="radio"] {
        display: none;
    }

/* Custom radio box */
.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    /* Tick mark hidden by default */
    .custom-radio::after {
        content: "✔";
        color: green;
        font-size: 14px;
        display: none;
    }

/* When checked show tick */
.radio-label input[type="radio"]:checked + .custom-radio::after {
    display: block;
}

/* Change border color on select */
.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: green;
}

.link-preview {
    border: 1px solid #ddd;
    border-radius: 8px;
    
    font-family: Arial, sans-serif;
    overflow: hidden;
    text-decoration: none;
    color: black;
    display: block;
}

    .link-preview img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .link-preview .content {
        padding: 10px;
        
    }

    .link-preview .title {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .link-preview .desc {
        font-size: 14px;
        color: #555;
        margin-bottom: 8px;
        height: 150px;
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: #fff #fff;
    }

    .link-preview .url {
        font-size: 12px;
        color: green;
    }

.card {
    display: flex;
    flex-direction:inherit!important;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    width: 100%;
    font-family: Arial, sans-serif;
    margin-top:5px;
}

    .card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 15px;
    }

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

    .card-content a {
        font-size: 14px;
        color: #0066cc;
        text-decoration: none;
        margin-top: 4px;
        word-break: break-all; /* prevent overflow */
    }

        .card-content a:hover {
            text-decoration: underline;
        }
    .name{font-size:14px;}
.divURL{font-size:12px;}
.plandetails.active {
    border-color: green; /* green border when selected */
}
