﻿
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

.gausingArea {
    background-color: #ddc4c4;
}
.post-card {
    border-radius: 16px; /* Rounder, modern corners */
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04); /* Soft, premium drop shadow */
    transition: transform 0.2s ease;
    margin-bottom:8px;
}



.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.user-info {
    display: flex;
    padding: 10px 12px;
    gap: 12px;
    align-items: center;
}

.user-avatar {
    width: 40px; /* Slightly larger */
    height: 40px;
    background: linear-gradient(135deg, #154374 0%, #09203f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.username {
    font-size: 15px;
    font-weight: 800;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-time {
    font-size: 11px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #38a169;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 4px rgba(56, 161, 105, 0.5);
}

.post-card[bestlucky="true"] .card-header {
    background-color: #ffdeb7 !important;
}

.post-card[bestlucky="true"] .card-body {
    background-color: #fff4e5 !important;
}

/* --- VIBRANT CATEGORY TAG --- */
.category-tag {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 16px;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: -2px 3px 10px rgba(255,8,68,0.25);
    margin-top: -1px;
    margin-right: -1px;
    letter-spacing: 0.5px;
}

/* --- Card Body --- */
.card-body {
    padding: 20px 15px;
    text-align: center;
   /* background-color: #ffffff;*/
}

/* Replaced underline with a modern pill shape */
.category-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    color: #c53030;
    background-color: #fff5f5;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid #fed7d7;
}

.numbers-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.number-line {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tactile Number Boxes */
.number-box {
    background: linear-gradient(135deg, #154374 0%, #0a192f 100%);
    color: #fceabb;
    font-weight: 900;
    font-size: 17px;
    padding: 5px 5px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    box-shadow: 0 4px 8px rgba(10, 25, 47, 0.3), inset 0 1px 1px rgba(255,255,255,0.1);
    min-width: 50px;
    text-align: center;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .number-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(10, 25, 47, 0.4), inset 0 1px 1px rgba(255,255,255,0.1);
    }

/* --- Card Footer --- */
.card-footer {
    padding: 12px 5px 5px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-top: 1px dashed #e2e8f0;
   
    justify-content: center;
}

.interaction-icons {
    display: flex;
    gap: 12px;
    color: #4a5568;
    font-size: 16px;
    align-items: center;
    font-weight: 600;
}

    .interaction-icons i {
        cursor: pointer;
        transition: color 0.2s;
    }

        .interaction-icons i.fa-heart:hover {
            color: #e53e3e;
        }

.comment-input-wrapper {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
}

/* Native App style chat input */
.comment-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 24px;
    background-color: #f0f2f5;
    font-size: 14px;
    outline: none;
    color: #1a202c;
    transition: background-color 0.2s;
}

    .comment-input:focus {
        background-color: #e2e8f0;
    }

    .comment-input::placeholder {
        color: #a0aec0;
        font-weight: 500;
    }

.image-upload-icon {
    position: absolute;
    right: 15px;
    color: #718096;
    font-size: 16px;
    cursor: pointer;
}
/* --- MODERN TACTILE COPY BUTTON --- */
.btn-gausingCopy {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px; /* Pill shape to match your category titles */
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
    margin-top: 8px;
}

    /* Hover Effect: Glow and Lift */
    .btn-gausingCopy:hover {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #d4af37; /* Gold border on hover to match your theme */
    }

    /* Active State: "Pressed" feel */
    .btn-gausingCopy:active {
        transform: translateY(1px);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    /* Success State: Green Gradient */
    .btn-gausingCopy.copy-success {
        background: linear-gradient(135deg, #38a169 0%, #2f855a 100%) !important;
        border-color: #ffffff;
        transform: scale(1.05);
    }

    /* Optional: Add a Copy Icon using pseudo-element if FontAwesome isn't loaded */
    .btn-gausingCopy::before {
        content: "\f0c5"; /* FontAwesome Copy Icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }








.gausing-pass-number {
    font-weight: bold;
}






.card-footer{
    background-color:black;
}

.card-footer {
    color: cyan;
    text-shadow: 0 0 7px cyan, 0 0 10px cyan, 0 0 21px cyan, 0 0 42px #0fa, 0 0 82px #0fa;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 4px cyan, 0 0 11px cyan, 0 0 19px cyan, 0 0 40px #0fa, 0 0 80px #0fa;
    }

    20%, 24%, 55% {
        text-shadow: none;
        color: #222; /* Dimmed state */
    }
}


