/* =============================================
   Photo Section
   ============================================= */
.photo-section {
    padding: 10px 10px 0;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.photo-card {
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    width: calc(33.33% - 8px);
}
.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.photo-card-info {
    padding: 8px 10px;
}
.photo-card-title {
    color: #ffd700;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
    word-break: break-word;
}
.photo-card-desc {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-word;
}
.photo-card-desc a {
    color: #90c8ff;
    text-decoration: none;
}
.photo-card-desc a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .photo-card { width: calc(50% - 6px); }
    .photo-card img { height: 170px; }
}
@media (max-width: 480px) {
    .photo-section { padding: 8px 8px 0; }
    .photo-grid { gap: 8px; }
    .photo-card { width: calc(50% - 5px); }
    .photo-card img { height: 140px; }
    .photo-card-info { padding: 6px 8px; }
    .photo-card-title { font-size: 12px; }
    .photo-card-desc { font-size: 11px; }
}
@media (max-width: 320px) {
    .photo-card { width: 100%; }
    .photo-card img { height: 180px; }
}


/* =============================================
   Result Section - Date/Time
   ============================================= */
.blinling {
    margin-left: 35%;
    text-align: right !important;
}
.timefor {
    color: rgb(0, 255, 136);
    font-size: 13px;
    font-weight: bold;
}
.datefor {
    color: rgb(0, 255, 145);
    font-size: 13px;
    font-weight: bold;
}


/* =============================================
   Telegram Icon & Age Verify Button
   ============================================= */
.bi-telegram {
    margin: 7px 0px 0px 0px;
    align-items: center;
}
.age-verify-btn {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    min-width: 40px;
    min-height: 40px;
}
.age-verify-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.5);
}
.age-verify-btn svg {
    animation: pulse 2s infinite;
}


/* =============================================
   Age Verification Modal
   ============================================= */
.age-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    animation: fadeIn 0.3s ease-in;
    pointer-events: none;
}
.age-modal .age-modal-content {
    pointer-events: auto;
}
.age-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 12px 15px;
    border-top: 2px solid #ffd700;
    animation: slideUpBottom 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.age-message {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.age-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.age-text {
    color: #ffd700;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 500;
}
.age-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.age-btn-yes,
.age-btn-no {
    width: 36px;
    height: 36px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-btn-yes {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
}
.age-btn-yes:hover {
    background: linear-gradient(135deg, #00ff00 0%, #00dd00 100%);
    transform: scale(1.1);
}
.age-btn-yes:active { transform: scale(0.95); }
.age-btn-no {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
}
.age-btn-no:hover {
    background: linear-gradient(135deg, #ff5555 0%, #dd0000 100%);
    transform: scale(1.1);
}
.age-btn-no:active { transform: scale(0.95); }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUpBottom {
    0%   { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .age-modal-content { padding: 10px 12px; gap: 10px; }
    .age-message { gap: 6px; }
    .age-icon { font-size: 16px; }
    .age-text { font-size: 10px; line-height: 1.2; }
    .age-btn-yes,
    .age-btn-no { width: 32px; height: 32px; font-size: 16px; }
}
