/* ============================================
   RINO Hack — CSS Part 2
   Pricing, Urgency, Proofs, FAQ, Contact,
   Footer, Floating TG, Chat Widget
   ============================================ */

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 20;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.toggle-btn {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 21;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 2px 16px rgba(255, 215, 0, 0.35);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

.price-card-featured {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.25);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.price-card-header {
    margin-bottom: 28px;
}

.price-duration {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card-featured .price-amount {
    font-size: 68px;
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.price-features li {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-btn {
    display: block;
    padding: 13px 24px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: auto;
}

.price-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: var(--glow-gold);
    transform: translateY(-1px);
}

.price-btn-featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.4);
}

.price-btn-featured:hover {
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
    color: #000;
}

.pricing-guarantee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.guarantee-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.guarantee-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.guarantee-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   URGENCY / COUNTDOWN
   ============================================ */
.urgency-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.urgency-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
}

.urgency-text {
    flex: 1;
    min-width: 200px;
}

.urgency-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 100, 50, 0.15);
    border: 1px solid rgba(255, 100, 50, 0.35);
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: #ff6432;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.urgency-text h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin-bottom: 8px;
}

.slots-count {
    color: var(--gold);
}

.urgency-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.countdown-wrap {
    flex: 1;
    min-width: 200px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.count-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 72px;
    text-align: center;
}

.count-box span {
    display: block;
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.count-box small {
    display: block;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 4px;
}

.count-sep {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

/* ============================================
   PROOFS
   ============================================ */
.proofs {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.proofs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.proof-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.proof-avatar-blue {
    background: linear-gradient(135deg, var(--neon-blue), #0088aa);
    color: #fff;
}

.proof-avatar-green {
    background: linear-gradient(135deg, var(--neon-green), #00aa55);
    color: #000;
}

.proof-avatar-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
}

.proof-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.proof-platform {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.proof-stars {
    margin-left: auto;
    font-size: 12px;
    flex-shrink: 0;
}

.proof-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}

.proof-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 0.5px;
}

.proofs-cta {
    text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-style: normal;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.contact-card-primary {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.04);
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.contact-info h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-arrow {
    margin-left: auto;
    font-size: 22px;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.contact-final-cta {
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo-text {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-btn:hover {
    border-color: var(--border-hover);
    color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}



/* ============================================
   AI CHAT WIDGET
   ============================================ */
.chat-bubble-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none; /* Allows taps to pass through transparent container */
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    pointer-events: auto; /* Enable tap on floating button */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.65);
}

.chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 68, 68, 0);
    }
}

.chat-window {
    width: 360px;
    height: 480px;
    background: #0f0f1a;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.08);
    transform-origin: bottom right;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0) translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.chat-window.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(0, 212, 255, 0.06));
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.chat-name {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--neon-green);
    font-weight: 500;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

.chat-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.2) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
}

.msg {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 85%;
}

.msg.bot {
    align-self: flex-start;
}

.msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.msg-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
}

.msg.bot .msg-bubble {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 600;
    border-bottom-right-radius: 4px;
}

.msg-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    max-width: 80px;
}

.msg-typing span {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.2s infinite;
}

.msg-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.msg-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

#chatInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

#chatInput:focus {
    border-color: rgba(255, 215, 0, 0.4);
}

#chatInput::placeholder {
    color: var(--text-muted);
}

#chatSend {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

#chatSend:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE — PART 2
   ============================================ */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

    .price-card-featured {
        transform: scale(1);
    }

    .price-card-featured:hover {
        transform: translateY(-4px);
    }

    .pricing-guarantee {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .proofs-grid {
        grid-template-columns: 1fr;
    }

    .urgency-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .chat-bubble-wrap {
        right: 16px;
        bottom: 16px;
        z-index: 1200;
    }

    .chat-toggle {
        width: 54px;
        height: 54px;
        font-size: 24px;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }

    .chat-window {
        width: calc(100vw - 32px);
        max-height: calc(100vh - 90px);
        height: 460px;
        border-radius: 16px;
    }



    .countdown {
        gap: 4px;
    }

    .count-box {
        padding: 10px 14px;
        min-width: 60px;
    }

    .count-box span {
        font-size: 28px;
    }

    .btn-mega {
        padding: 16px 32px;
        font-size: 14px;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   GAMEPLAY VIDEOS SHOWCASE (FULLY RESPONSIVE)
   ============================================ */
.video-showcase {
    padding: 90px 0;
    background: var(--bg-dark);
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
    width: 100%;
}

.video-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(0, 212, 255, 0.95);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.video-player {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #000;
    border: none;
    display: block;
}

.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.video-footer {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   SCREENSHOT GALLERY (FULLY RESPONSIVE)
   ============================================ */
.screenshot-gallery {
    padding: 90px 0;
    background: var(--bg-card);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

.gallery-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 16px 36px rgba(0, 212, 255, 0.25);
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #04070e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.85);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 26px;
}

.gallery-caption {
    padding: 16px 20px;
}

.gallery-caption h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Lightbox Modal for Full-Screen View */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-content {
    max-width: 96vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.lightbox-caption {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2600;
    line-height: 1;
    padding: 8px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .video-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-showcase, .screenshot-gallery {
        padding: 60px 0;
    }

    .lightbox-content {
        max-width: 100vw;
        max-height: 75vh;
        border-radius: 8px;
    }
}

/* Hide volume controls on all video players */
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-control-container {
    display: none !important;
}

/* Strict logo image sizing constraint */
.logo-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    object-fit: cover !important;
}