:root {
    --bg-light: #f4f7fc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent-lime: #10b981;
    --accent-blue: #0ea5e9;
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --glow-green: 0 10px 20px rgba(16, 185, 129, 0.15);
    --glow-blue: 0 10px 20px rgba(14, 165, 233, 0.15);
    --glow-purple: 0 10px 20px rgba(139, 92, 246, 0.15);
    --glow-orange: 0 10px 20px rgba(249, 115, 22, 0.15);
    --glow-pink: 0 10px 20px rgba(236, 72, 153, 0.15);
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--bg-light); color: var(--text-main); overflow-x: hidden; line-height: 1.5; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* --- GRID SYSTEM: 3x3 Desktop, 2x2 Mobile --- */
.three-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 256px) !important;
    justify-content: center !important;
    gap: 25px !important;
    width: 100% !important;
    margin-bottom: 40px;
}

/* Action Card - 256x256 constraint with zero dullness/effects */
.action-card {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    width: 256px !important;
    height: 256px !important;
    max-width: 256px !important;
    max-height: 256px !important;
    min-width: 256px !important;
    min-height: 256px !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid var(--border-color);
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
    margin: 0 auto !important;
}

.action-card:hover { transform: none !important; box-shadow: none !important; }

/* Card Image Wrapper */
.card-image-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.card-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    filter: brightness(100%) contrast(100%) saturate(100%) !important;
    -webkit-filter: brightness(100%) contrast(100%) saturate(100%) !important;
    image-rendering: -webkit-optimize-contrast !important;
    transition: none !important;
}

.action-card:hover .card-image-wrap img {
    transform: none !important;
}

.card-image-wrap::after {
    display: none !important; /* Removes unwanted dark overlay/dullness gradient */
}

.card-body-content {
    position: relative;
    z-index: 3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.action-btn {
    pointer-events: auto;
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- OTHER SECTIONS (Maintained) --- */
header { background-color: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 9999; backdrop-filter: blur(10px); }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.logo-text h1 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.logo-text h1 span {
    color: var(--accent-blue);
}

.logo-text p {
    font-size: 10px;
    color: var(--text-muted);
}

nav {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-blue);
}

.live-nav-btn {
    background: #10b981;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}

.menu-toggle, .close-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    outline: none;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 40px 0 20px 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--text-main);
}

.hero-title h2 span {
    color: var(--accent-blue);
}

.time-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.time-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.time-card:hover {
    transform: translateY(-3px);
}

.time-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.time-card:nth-child(2) .time-card-icon-wrap {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.time-info p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.time-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2px;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    align-self: flex-start;
}

.date-badge i {
    color: var(--accent-blue);
}

/* --- VECTOR TARGET BOARD & ARROW --- */
.hero-graphic-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;
}

.target-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

.vector-target-board {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: 12px solid #ef4444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), var(--glow-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: float-aim 4s ease-in-out infinite;
}

.vector-target-board::before {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 10px solid #ffffff;
    background: #0ea5e9;
    display: block;
}

.vector-target-board::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f97316;
}

.target-crosshair-h {
    position: absolute;
    width: 180px;
    height: 2px;
    background: rgba(14, 165, 233, 0.2);
    z-index: 1;
    left: 10px;
    top: 100px;
}
.target-crosshair-v {
    position: absolute;
    width: 2px;
    height: 180px;
    background: rgba(14, 165, 233, 0.2);
    z-index: 1;
    left: 100px;
    top: 10px;
}

.vector-shooting-arrow {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    right: 50%;
    top: 50%;
    transform-origin: 100% 50%;
    transform: translate(0, -50%) rotate(-35deg);
    animation: arrow-strike 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.v-arrow-shaft {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #1e293b);
    border-radius: 2px;
    position: relative;
}

.v-arrow-shaft::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 1px 0 0 1px;
}

.v-arrow-head {
    border: 7px solid transparent;
    border-left: 14px solid var(--accent-orange);
    margin-left: -2px;
}

.v-arrow-feathers {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.v-arrow-feathers::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 16px;
    height: 7px;
    background: linear-gradient(135deg, var(--accent-orange), #ff9f43);
    clip-path: polygon(100% 100%, 0 100%, 35% 0, 100% 0);
    transform: skewX(-20deg);
}

.v-arrow-feathers::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 16px;
    height: 7px;
    background: linear-gradient(45deg, var(--accent-blue), #00d2d3);
    clip-path: polygon(100% 0, 0 0, 35% 100%, 100% 100%);
    transform: skewX(20deg);
}

/* --- LIVE RESULT BOX --- */
.live-result-section {
    background: var(--card-bg);
    border: 2px solid var(--accent-blue);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: var(--glow-blue);
}

.section-header-live {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.live-dot-blink {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1s infinite;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-box {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.result-box.f-round, .result-box.s-round { border-color: rgba(16, 185, 129, 0.3); }

.result-box .round-title {
    background: #10b981;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.result-box .number {
    font-size: 72px;
    font-weight: 700;
    text-align: center;
    padding: 15px 0;
    color: var(--text-main);
    letter-spacing: 2px;
}

/* --- TWO COLUMN INFO & QUICK LINKS --- */
.info-links-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.gambling-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    background: rgba(14, 165, 233, 0.05);
    align-self: flex-start;
    margin-bottom: 15px;
}

.info-shoot-img-wrap {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
}

.info-shoot-img-wrap img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(14, 165, 233, 0.2);
}

.quick-links-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quick-links-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: #f1f5f9;
    border-color: var(--accent-blue);
}

.link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-icon-orange { color: var(--accent-orange); }
.link-icon-blue { color: var(--accent-blue); }
.arrow-icon { font-size: 12px; color: var(--text-muted); }

/* --- WHAT IS SHILLONG TEER --- */
.about-teer-box {
    background: var(--card-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: var(--glow-green);
}

.about-graphic {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-lime);
    flex-shrink: 0;
}

.about-text h3 {
    font-size: 22px;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* --- HOW TO PLAY SECTION --- */
.how-to-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
}

.how-to-section h3 {
    color: var(--accent-blue);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.how-to-section > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

.feature-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: auto !important;
    width: 100% !important;
}

.feat-blue { border-color: rgba(14, 165, 233, 0.2); box-shadow: var(--glow-blue); }
.feat-orange { border-color: rgba(249, 115, 22, 0.2); box-shadow: var(--glow-orange); }
.feat-green { border-color: rgba(16, 185, 129, 0.2); box-shadow: var(--glow-green); }

.feature-box img {
    width: 100%;
    max-width: 110px;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- TIPS SECTION --- */
.tips-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 50px;
    box-shadow: var(--card-shadow);
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.tips-header i {
    color: var(--accent-orange);
}

.tips-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    flex: 1;
    min-width: 180px;
}

.tip-item i {
    color: var(--accent-lime);
    font-size: 16px;
}

/* --- FOOTER --- */
footer {
    background: #1e293b;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0 20px 0;
    width: 100%;
    color: #f1f5f9;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top .logo-text h1 {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--accent-blue);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #94a3b8;
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes float-aim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes arrow-strike {
    0% {
        transform: translate(-80px, -120px) rotate(-35deg);
        opacity: 0;
    }
    100% {
        transform: translate(0, -50%) rotate(-35deg);
        opacity: 1;
    }
}


/* ==========================================
   === FIXED & OPTIMIZED MEDIA QUERIES ===
   ========================================== */

@media (max-width: 992px) {
    .nav-container {
        padding: 10px 20px;
        position: relative;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        z-index: 10000;
    }

    .close-menu {
        display: block;
        font-size: 28px;
        color: var(--text-main);
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--card-bg);
        border-left: 1px solid var(--border-color);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 80px 25px 30px 25px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        display: none;
        flex-direction: column;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 15px;
        display: block;
        padding: 12px 10px;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-main);
    }

    .live-nav-btn {
        display: inline-flex;
        margin-top: 15px;
        width: auto;
        align-self: flex-start;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-graphic-wrap {
        display: flex !important;
        height: 220px;
        order: -1;
    }

    .hero-title h2 {
        font-size: 28px;
    }

    .time-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .date-badge {
        margin: 0 auto;
        align-self: center;
    }

    .info-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-teer-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* 📱 MOBILE VIEWPORTS - STRICT 2x2 GRID */
@media (max-width: 768px) {
    .three-cards-grid {
        grid-template-columns: repeat(2, 256px) !important;
        justify-content: center !important;
        gap: 15px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .three-cards-grid > :last-child,
    .features-grid > :last-child {
        grid-column: auto !important;
    }
}

/* 📱 SMARTPHONES (480px and below) */
@media (max-width: 480px) {
    .info-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card, .quick-links-card {
        padding: 20px;
    }
}

/* 📱 SMARTPHONES (Dynamic Layout Grid & Fluid 2x2 for Cards if screen < 532px) */
@media (max-width: 532px) {
    .three-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .action-card {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        min-width: unset !important;
        min-height: unset !important;
        max-width: unset !important;
        max-height: unset !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        padding: 15px 10px;
    }

    .hero-title h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 5px;
    }

    .time-cards {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .time-card {
        padding: 10px 12px;
        gap: 8px;
    }

    .time-card-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .time-info p {
        font-size: 10px;
    }

    .time-info h4 {
        font-size: 15px;
    }

    .date-badge {
        align-self: center;
        font-size: 12px;
        padding: 6px 14px;
        margin-top: 5px;
    }

    .hero-graphic-wrap {
        display: flex !important;
        height: 160px;
    }

    .target-container {
        width: 140px;
        height: 140px;
    }

    .vector-target-board {
        width: 100px;
        height: 100px;
        border-width: 8px;
    }

    .vector-target-board::before {
        width: 60px;
        height: 60px;
        border-width: 8px;
    }

    .vector-target-board::after {
        width: 16px;
        height: 16px;
    }

    .target-crosshair-h {
        width: 130px;
        left: 5px;
        top: 70px;
    }

    .target-crosshair-v {
        height: 130px;
        left: 70px;
        top: 5px;
    }

    .v-arrow-shaft {
        width: 50px;
        height: 3px;
    }

    .v-arrow-shaft::before {
        width: 2px;
        height: 3px;
        left: -2px;
    }

    .v-arrow-head {
        border-width: 5px;
        border-left-width: 10px;
    }

    .v-arrow-feathers {
        left: -8px;
        width: 12px;
        height: 12px;
    }

    .v-arrow-feathers::before, .v-arrow-feathers::after {
        width: 12px;
        height: 5px;
    }
}

/* Ultra Small Devices (Below 350px) */
@media (max-width: 350px) {
    .three-cards-grid, 
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .three-cards-grid > :last-child,
    .features-grid > :last-child {
        grid-column: auto !important;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Other Common Mobile Alignments */
@media (max-width: 650px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Mobile overflow prevention */
body {
    overflow-x: hidden !important;
    width: 100% !important;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}