﻿:root {
    --bg-body: #F3F5F9;
    --primary-navy: #0f172a;
    --secondary-navy: #1e293b;
    --accent-gold: #fbbf24;
    --accent-red: #ef4444;
    --accent-green: #10b981;
    --whatsapp-green: #22c55e;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-primary: #1F2937;
    --text-secondary: #9CA3AF;
    --card-surface: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 15px rgba(251, 191, 36, 0.3);
    /* Added from Style 2 (non-conflicting) */
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-navy: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --market-header-normal: #ffdeb7;
    --market-header-highlight: #d9063f; /* rgb(73 133 192);*/
    --market-body-normal: #fff4e5;
    --market-body-highlight: #e9e257; /*#7aafe2;*/
    --market-color-normal: #1b4063;
    --market-color-highlight: white;
    --accent-gold: #C69C3A;
    --accent-gold-gradient: linear-gradient(135deg, #C69C3A 0%, #E3C478 100%);
    --accent-green: #25D366;
    --accent-blue: #3B82F6;
    --accent-telegram: #229ED9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    padding-bottom: 40px;
}

.app-container {
    /*max-width: 600px;*/
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

/* --- Header --- */
header {
    background: #173B5C;
    background: radial-gradient(circle,rgba(23, 59, 92, 1) 0%, rgba(79, 137, 194, 1) 0%, rgba(23, 59, 92, 1) 85%);
    background: radial-gradient(#81B4D3,#00325F,#011635);
    color: white;
    padding: 10px 10px 5px 5px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;
    overflow: hidden;
}

    header::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo i {
        color: var(--accent-red);
    }

.refresh-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

    .refresh-btn:hover {
        background: rgba(255,255,255,0.2);
    }

/* --- Lucky Section --- */
.lucky-card-wrapper {
    margin-top: 25px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.lucky-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.golden-ank-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.g-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-navy);
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
}

.divider {
    height: 1px;
    background: #eee;
    width: 100%;
}

.final-ank-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.final-ank-item {
    text-align: center;
    flex: 1;
}

    .final-ank-item span {
        display: block;
        font-weight: 700;
        color: var(--primary-navy);
        margin-top: 2px;
    }

/* --- Ticker --- */
.ticker-wrap {
    background: #fff4e5;
    color: #d97706;
    padding: 10px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-left: 4px solid #d97706;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Results Feed --- */
.results-list {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #acc0db;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.2s;
}

    .market-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.market-header {
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.market-name {
    font-weight: 800;
   /* color: white;*/
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Live Dot */
.live-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    position: relative;
}

    .live-indicator::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        bottom: -4px;
        right: -4px;
        border-radius: 50%;
        border: 2px solid var(--whatsapp-green);
        animation: pulse 1.5s infinite;
        opacity: 0.5;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.market-time {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-light);
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
}

.result-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

    .result-number span {
        color: var(--primary-navy);
    }

    .result-number .middle {
        /*color: var(--accent-red);*/
        font-size: 2rem;
    }

    .result-number .middle.red {
        color: var(--accent-red);      
    }

/* --- Actions --- */
.market-actions {
    display: flex;
    border-top: 1px solid #f1f5f9;
    align-items: stretch;
}

.action-btn {
    /*flex: 1;*/
    padding: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-chart {
    border-right: 1px solid #f1f5f9;
    margin-right:.01rem;
}
.btn-chart {
    flex: 1;
}

/* This button will only take up the space it needs for the icon */
.btn-wa {
    flex: 0 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: .01rem;
    font-size: 2rem;
    background-color: green;
    color: white;
}

.section-title {
    text-align: center;
    font-weight: 800;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .section-title::before,
    .section-title::after {
        content: '';
        height: 2px;
        width: 30px;
        background: var(--accent-gold);
    }

/* Promo Banner */
.promo-banner {
    background: rgb(66 115 164);
    color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

    .promo-banner h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .promo-banner p {
        font-size: 0.8rem;
        opacity: 0.9;
        margin-bottom: 15px;
    }

.promo-btn {
    background: white;
    color: #b91c1c;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 20px;
}

.menu-item {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 600;
    transition: 0.2s;
}

    .menu-item:hover {
        transform: translateX(5px);
        border-color: var(--accent-gold);
    }

    .menu-item i {
        color: var(--accent-gold);
    }

/* Table / Charts */
.table-container {
    overflow-x: auto;
    margin: 0 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: white;
}

th {
    background: var(--primary-navy);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

tr:nth-child(even) {
    background-color: #f8fafc;
}

tr:hover {
    background-color: #f1f5f9;
}

.highlight-num {
    color: var(--accent-red);
    font-size: 1.1em;
}

/* Game Cards */
.game-card {
    margin: 0 20px 20px 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    border: 1px solid #e2e8f0;
}

.game-card-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-name {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-card-body {
    padding: 15px;
    text-align: center;
}

.prediction-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
    word-break: break-all;
}

.prediction-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* Text Block */
.text-block-card {
    background: white;
    margin: 0 20px 20px 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-red);
}

.text-block-header {
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.text-content {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Wheel */
.wheel-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    width: auto;
    height: auto;
}

.wheel-simulation {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient( #ef4444 0% 12.5%, #fbbf24 12.5% 25%, #3b82f6 25% 37.5%, #10b981 37.5% 50%, #8b5cf6 50% 62.5%, #f472b6 62.5% 75%, #06b6d4 75% 87.5%, #248cdb 87.5% 100% );
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.wheel-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
}

/* Floating Button */
.refresh-float {
    position: fixed;
    bottom: 2px;
    right: 2px;
    background: var(--primary-navy);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
    cursor: pointer;
    z-index: 100;
}






.clock-2 {
    display: none;
}
header {
    margin-bottom: auto;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap;
}

/* Logo image */
.logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* Name image */
.name-img {
    max-width: 520px;
    width: 100%;
    height: auto;
}

@media (max-width: 805px) {
   /* .logo-img {
        max-width: 80px;
    }*/

    .name-img {
        max-width: 400px;
    }

   /* #clock {
        font-size: 0.9rem;
    }*/
}

/* Mobile adjustments */
@media (max-width: 700px) {
    .logo-img {
        max-width: 80px;
    }

    .name-img {
        max-width: 350px;
    }

  /*  #clock {
        font-size: 0.9rem;
    }*/
}

@media (max-width: 595px) {
    .logo-img {
        max-width: 80px;
    }

    .name-img {
        max-width: 300px;
    }

    /*  #clock {
        font-size: 0.9rem;
    }*/
}
@media (max-width: 545px) {

    .clock-1 {
        display: none;
    }
    .clock-2{
        display:block;
    }
    .logo-img {
        max-width: 80px;
    }

    .name-img {
        max-width: 250px;
    }

    .tagline {
        display: flex;
        justify-content: space-between;
    }
    /*  #clock {
        font-size: 0.9rem;
    }*/
}

@media (max-width: 495px) {
    .logo-img {
        max-width: 80px;
    }

    .name-img {
        max-width: 250px;
    }

    /*  #clock {
        font-size: 0.9rem;
    }*/
}

@media (max-width: 375px) {
    .top-bar {
        justify-content: center;
        text-align: center;
    }

    .logo-img {
        max-width: 80px;
    }

    .name-img {
        max-width: 200px;
    }
}
@media (max-width: 325px) {
    .top-bar {
        justify-content: center;
        text-align: center;
    }

    .logo-img {
        max-width: 70px;
    }

    .name-img {
        max-width: 200px;
    }
}

/* Tagline */
.tagline {
    text-align: center;
    margin-bottom: 20px;
}

    .tagline p {
        opacity: 0.8;
        font-size: 0.9rem;
        color: white;
    }



.lucky-card.lucky-card-hide {
    /* background-color:greenyellow;*/
    /*display: none;*/
  

    visibility: hidden;
    position: absolute;
    left: -9999px;
    pointer-events: none;
}



.market-time.opentime.a::before {
    content: 'LIVE';
    color: var(--whatsapp-green);
    font-size: 10px;
    font-weight: bold;
    margin-right: 6px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.3;
    }
}
.market-time.live{
    color:green;
}
.market-time.end {
    color: red;
}



.market-time.live i {
    font-size: .85rem;
    font-weight: bold;
    color: var(--whatsapp-green);
    animation: blink 1.7s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.2;
    }
}
.market-time.end i {
    color:red;
}
  






.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #5c8fcf; /* Example color based on your image */
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

@media screen and (max-width: 450px) {

    /* The Container */
    .market-header {
        display: flex;
        flex-wrap: wrap; /* Allows items to move to the next line */
        justify-content: space-between; /* Creates space between the two time badges */
    }

    /* 1. Open Time (Top Left) */
    .market-time.opentime {
        order: 2; /* Position: First */
     

    }

    /* 2. Close Time (Top Right) */
    .market-time.closetime {
        order: 3; /* Position: Second */
      

    }

    /* 3. Market Name (Bottom Center) */
    .market-name {
        order: 1; /* Position: Last (New Row) */
        width: 100%; /* Takes full width of the second row */
        text-align: center; /* FIX: This centers the text */
        font-weight: bold; /* Optional: Makes it stand out */
        font-size: 1.2rem; /* Optional: Adjust size if needed */
        justify-content: center
    }
}





.market-body {
    padding: 20px;
    text-align: center;
    /*background: radial-gradient(circle at center, #fff 0%, #fcfcfc 100%);*/
}



.market-card .market-header, .btn-chart {
    background: var(--market-header-normal);
    color: var(--market-color-normal);
}


.market-card.highlight .market-header, .market-card.highlight .btn-chart {
    background: var(--market-header-highlight);
    color: var(--market-color-highlight);
}




.market-card .market-body {
    background: var(--market-body-normal);
    /*background: radial-gradient(circle at center, #fff 0%, #fcfcfc 100%);*/
}

.market-card.highlight .market-body {
    background: var(--market-body-highlight);
    /*background: radial-gradient(circle at center, #fff 0%, #fcfcfc 100%);*/
}












footer {
    background-color: #fff;
    color: red;
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
    border: 4px groove purple;
    text-shadow: 1px 1px gold;
    margin: 3px;
}
    footer .ftr-icon {
        text-decoration: none;
        font-size: 35px;
        text-transform: uppercase;
        color: #007bff;
    }
    footer p span {
        color: rgb(51, 102, 255);
    }
    footer p {
        margin: 10px 0 10px;
        line-height: 35px;
    }


.market-time.holiday-text {
    background-color: #9f0a0a;
    color: white;
    font-weight: bold;
}










/* Container: Removed fixed W/H, added padding */
.ahcard {
    position: relative;
    min-width: 200px; /* Optional: keeps a base size */
    padding: 5px; /* Content determines size now */
    border-radius: 14px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

/* Glass Layer: Set to fill the container entirely */
.ahbg {
    position: absolute;
   /* top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;*/
    z-index: 2;
    background: rgba(255, 255, 255, .7); /* Slightly more transparent for effect */
    backdrop-filter: blur(20px);
    border-radius: 10px;
    outline: 2px solid white;
    /* Removed fixed width/height */
}

/* The Animated Blob */
.ahblob {
    position: absolute;
    z-index: 0; /* Behind the glass */
    top: 50%;
    left: 25%;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background-color: #ff0000;
    filter: blur(30px);
    animation: blob-bounce 8s infinite linear;
  

}


/* Adjusting the content to sit above the background */
.market-card {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}


@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
       /* transform: translate(-100%, -100%) translate3d(100%, 0, 0);*/
        transform: translate(-50%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        /*transform: translate(-100%, -100%) translate3d(100%, 100%, 0);*/
        transform: translate(-50%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}




.lucky-card .marketname {
    font-size: 1rem;
    font-weight: bold;
    color: black;
}


.lucky-card .resultDisplay, .lucky-card .countdown {
    font-size: .8rem;
    font-weight: bold;
    color: black;
    border: 1px solid #d0d7e0;
    padding: .2rem .5rem .2rem .5rem;
    border-radius: 3rem;
    background-color: #d0d7e0;
}

.sloterTopBar {
    padding-bottom: .2rem;
    /* margin-bottom: 1rem;*/
    border-bottom: 2px solid var(--card-surface);
}

.premium-footer {
    margin: 5rem 5% 0 5%;
    background: linear-gradient(to bottom, #f3f3f3, #FDFCF8);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgb(55 52 46 / 25%);
    box-shadow: 0 -10px 30px rgb(58 154 198 / 38%);
}

.footer-brand {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.gold-text {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    text-transform:uppercase;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
@media (max-width: 350px) {
    .gold-text {
        font-weight: 800;
        font-size: 15px;
    }
}
.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(15 23 42 / 43%), transparent);
    margin: 0 auto 1rem auto;
    width: 60%;
}
.support-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-hub {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}
.telegram-icon {
    color: var(--accent-telegram);
}

.contact-glass-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05), -10px -10px 30px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}
.fa-brands, .fab {
    font-weight: 400;
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}
.fa-telegram-plane:before, .fa-telegram:before {
    content: "\f2c6";
}
.contact-glass-icon:hover {
    transform: translateY(-5px) scale(1.05);
}
    .contact-glass-icon:hover.telegram-icon {
        background: var(--accent-telegram);
        color: white;
        box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4);
    }
    .contact-glass-icon:hover.whatsapp-icon {
        background: var(--accent-green);
        color: white;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    .contact-glass-icon:hover.phone-icon {
        background: var(--accent-blue);
        color: white;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }
.whatsapp-icon {
    color: var(--accent-green);
}
.phone-icon {
    color: var(--accent-blue);
}
.astrologer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    background: #F8F9FA;
    box-shadow: var(--shadow-soft);
}
