
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c23;
    --light-green: #8bc34a;
    --yellow-bg: #d4e836;
    --dark-green: #02450a;
}

.lottery-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.header-section {
    text-align: center;
    padding: 20px 15px 15px;
}

.lottery-title {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.result-status {
    color: #333;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

.result-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.date-badge {
    background: #dc3545;
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.live-section {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #eee;
}

.live-now {
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.congratulations {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.winner-name {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 3px;
}

.mobile-number {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.winning-amount {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.find-ticket-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.prize-section {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
    color: #333;
    text-align: center;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4), 
        0 2px 8px rgba(255, 140, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid #FF7F00;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.prize-section.first {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.second {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.third {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.fourth {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.fifth {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.sixth {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.prize-section.seventh {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF7F00 100%);
}

.ticket-numbers {
    padding: 15px;
    position: relative;
    margin: 0 15px 15px;
    border-radius: 0 0 10px 10px;
}

.number-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ticket-number {
    background: #495057;
    color: white;
    padding: 10px 8px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.number-row {
    position: relative;
    display: contents;
}

.arrow-container {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: #00FF00;
    z-index: 10;
}

.arrow-container::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #00FF00;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.third-prize .number-row:first-child,
.fourth-prize .number-row:nth-child(3) {
    position: relative;
}

.section-container {
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .lottery-card {
        margin: 0;
        border-radius: 0;
    }

    body {
        padding: 0;
    }
}

@media only screen and (min-width: 468px) {
    .helpline {
        display: none;
    }
}

@media only screen and (max-width: 468px) {
    .whatsapp {
        display: none;
    }
}
/* Navbar Styles */

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    align-items: center;
    border-radius:10px;
}

.logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.logo img {
    height: 100%;
}

.navbar-nav .nav-link {
    color: var(--primary-green) !important;
    font-weight: 600;
    margin: 0 15px;
    font-size: 18px;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-green) !important;
}
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    align-items: center;
}
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
}
/* Footer */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100%;
}

.footer-address {
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-info {
    font-weight: bold;
}

.contact-info div {
    margin-bottom: 10px;
}

.copyright {
    background-color: var(--dark-green);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
.prize-container {
    background: linear-gradient(135deg, #a8e6cf, #dcedc1);
    border: 3px solid #2d5016;
    border-radius: 15px;
    padding: 5px;
    font-family: 'Arial Black', Arial, sans-serif;
    max-width: 500px;
    margin: 22px 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.prize-item {
    display: flex;
    
    align-items: center;
    margin: 15px 0;
    padding: 12px 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    border-left: 5px solid #2d5016;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prize-position {
    font-weight: bold;
    color: #2d5016;
    font-size: 13px;
    min-width: 80px;
    float: left;
    text-align: left;
}
.prize-description {
    font-weight: bold;
    color: #2d5016;
    font-size: 13px;
    
}

.prize-item-consolidation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:  -5px 0px 15px 0px;
    padding: 2px 5px;
    background: rgba(255, 246, 212, 0.84);
    border-radius: 4px;
    border-left: 5px solid #2d5016;
     border-bottom: 2px solid #2d5016;
    transition: all 0.3s ease;
}
.prize-item-consolidation:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prize-amount {
    font-weight: bold;
    color: #d4691a;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    float: right;
    text-align: right;
}

.prize-winners {
    color: #555;
    font-size: 14px;
    font-weight: normal;
    background: rgba(45,80,22,0.1);
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

.first-prize {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-left-color: #d4af37;
    font-size: 20px;
}

.first-prize .prize-amount {
    color: #b8860b;
    font-size: 24px;
}

.second-prize {
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
    border-left-color: #a0a0a0;
}

.third-prize {
    background: linear-gradient(45deg, #cd7f32, #daa520);
    border-left-color: #b8860b;
}

.cr-unit {
    font-size: 16px;
    color: #d4691a;
}

.lakh-unit {
    font-size: 16px;
    color: #d4691a;
}


.fourth-prize {
    background: linear-gradient(45deg, #32cdcd, #da202091);
  border-left-color: #0ba0b8;
}
.fifth-prize {
   background: linear-gradient(45deg, #5b32cdc2, #20d1dac4);
  border-left-color: #390bb8;
}
.sixth-prize {
   background: linear-gradient(45deg, #32cd43, #076c34);
  border-left-color: #0a5926;
}
.seventh-prize {
   background: linear-gradient(45deg, #cd327b, #da2020db);
  border-left-color: #b80b0b;
}