 .Uttrayan_container {
     overflow: hidden;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(to bottom, #87CEEB 0%, #E0F6FF 50%, #FFF8DC 100%);
     display: none;
     height: 100%;
     width: 100%;
 }

 #uttrayancanvas {
     display: block;
     background: linear-gradient(to bottom, #87CEEB 0%, #E0F6FF 50%, #FFF8DC 100%);
 }

 .selection-screen {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 3000;
     padding: 20px;
     overflow-y: auto;
 }

 .selection-container {
     background: white;
     border-radius: 20px;
     padding: 40px;
     max-width: 1200px;
     width: 100%;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     animation: slideUp 0.6s ease;
 }

 @keyframes slideUp {
     from {
         transform: translateY(50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .selection-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .selection-header h1 {
     font-size: 48px;
     color: #2c3e50;
     margin-bottom: 10px;
 }

 .section-title {
     font-size: 28px;
     font-weight: 700;
     color: #2c3e50;
     margin: 30px 0 20px 0;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .kite-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 40px;
 }

 .thread-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .option-card {
     border: 4px solid #ecf0f1;
     border-radius: 15px;
     padding: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
     background: white;
     position: relative;
 }

 .option-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .option-card.selected {
     border-color: #3498db;
     background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
     transform: scale(1.05);
 }

 .option-card.selected::after {
     content: "✓";
     position: absolute;
     top: 10px;
     right: 10px;
     background: #3498db;
     color: white;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 18px;
 }

 .kite-image {
     width: 140px;
     height: 140px;
     margin: 0 auto 15px;
 }

 .thread-image {
     width: 100%;
     height: 80px;
     margin: 0 auto 15px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .option-name {
     font-size: 18px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 8px;
 }

 .option-stats {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-top: 10px;
 }

 .stat-badge {
     background: #3498db;
     color: white;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 11px;
     font-weight: 600;
 }

 .instructions-box {
     background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
     padding: 30px;
     border-radius: 15px;
     border-left: 5px solid #ff9800;
     margin: 30px 0;
 }

 .instructions-box h3 {
     font-size: 24px;
     color: #e65100;
     margin-bottom: 20px;
 }

 .instruction-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 .instruction-item {
     display: flex;
     align-items: start;
     gap: 12px;
     padding: 15px;
     background: white;
     border-radius: 10px;
 }

 .instruction-icon {
     font-size: 28px;
 }

 .instruction-text strong {
     display: block;
     color: #2c3e50;
     margin-bottom: 5px;
     font-size: 14px;
 }

 .instruction-text p {
     font-size: 12px;
     color: #546e7a;
     line-height: 1.4;
 }

 .start-btn {
     width: 100%;
     padding: 20px;
     background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 24px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 20px;
 }

 .start-btn:hover:not(:disabled) {
     transform: scale(1.05);
     box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
 }

 .start-btn:disabled {
     background: #95a5a6;
     cursor: not-allowed;
 }

 .ui-panel {
     position: absolute;
     top: 20px;
     left: 20px;
     background: rgba(255, 255, 255, 0.95);
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
     min-width: 300px;
     backdrop-filter: blur(10px);
     display: none;
 }

 .game-active .ui-panel {
     display: block;
 }

 .ui-title {
     font-size: 24px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .stat-group {
     margin: 15px 0;
 }

 .stat-label {
     font-size: 12px;
     color: #7f8c8d;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 5px;
     font-weight: 600;
 }

 .stat-value {
     font-size: 28px;
     font-weight: 700;
     color: #e74c3c;
     display: flex;
     align-items: baseline;
     gap: 5px;
 }

 .stat-unit {
     font-size: 14px;
     color: #95a5a6;
     font-weight: 500;
 }

 .progress-bar {
     height: 8px;
     background: #ecf0f1;
     border-radius: 10px;
     overflow: hidden;
     margin-top: 8px;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(90deg, #e74c3c, #c0392b);
     border-radius: 10px;
     transition: width 0.3s ease;
 }

 .score-board {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 15px;
     border-radius: 8px;
     margin: 15px 0;
 }

 .score-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 8px 0;
 }

 .score-value {
     font-size: 20px;
     font-weight: 700;
 }

 .health-fill {
     background: linear-gradient(90deg, #27ae60, #2ecc71);
 }

 .health-fill.low {
     background: linear-gradient(90deg, #e74c3c, #c0392b);
 }

 .difficulty-badge {
     background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     color: white;
     padding: 8px 15px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 700;
     margin-top: 10px;
     text-align: center;
 }

 .distance-indicator {
     position: fixed;
     background: rgba(0, 0, 0, 0.85);
     color: white;
     padding: 20px 30px;
     border-radius: 12px;
     font-size: 32px;
     font-weight: 700;
     pointer-events: none;
     z-index: 1000;
     animation: popIn 0.3s ease;
 }

 @keyframes popIn {
     0% {
         transform: scale(0.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }

 .uttrayan_notification {
     position: fixed;
     top: 10%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(0, 0, 0, 0.9);
     color: white;
     padding: 30px 50px;
     border-radius: 15px;
     font-size: 28px;
     font-weight: 700;
     z-index: 2000;
     animation: uttrayan_notification 2s ease;
 }

 @keyframes uttrayan_notification {
     0% {
         opacity: 0;
         transform: translate(-50%, -50%) scale(0.5);
     }

     10% {
         opacity: 1;
         transform: translate(-50%, -50%) scale(1.1);
     }

     90% {
         opacity: 1;
         transform: translate(-50%, -50%) scale(1);
     }

     100% {
         opacity: 0;
         transform: translate(-50%, -50%) scale(0.8);
     }
 }

 .cut-animation {
     position: fixed;
     font-size: 48px;
     pointer-events: none;
     z-index: 1500;
     animation: cutAnim 1s ease;
 }

 @keyframes cutAnim {
     0% {
         transform: scale(1) rotate(0deg);
         opacity: 1;
     }

     100% {
         transform: scale(2) rotate(360deg);
         opacity: 0;
     }
 }

 .game-over-screen {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 2500;
 }

 .game-over-container {
     background: white;
     border-radius: 20px;
     padding: 50px;
     text-align: center;
     max-width: 500px;
 }

 .game-over-container h2 {
     font-size: 48px;
     color: #e74c3c;
     margin-bottom: 20px;
 }

 .final-score {
     font-size: 64px;
     font-weight: 700;
     color: #3498db;
     margin: 30px 0;
 }

 .restart-btn {
     padding: 18px 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 20px;
     font-weight: 700;
     cursor: pointer;
 }

 @media (max-width: 768px) {

     .kite-grid,
     .thread-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .instruction-list {
         grid-template-columns: 1fr;
     }
 }


 #UttrayanClose {
     position: fixed;
     top: 0px;
     right: 0px;
     padding: 12px 15px;
     /* background-color: #013189; */
     background-color: transparent;
     color: white;
     border: none;
     cursor: pointer;
     z-index: 110;
     /* display: none; */
 }

 #UttrayanClose:hover {
     background-color: #53c41e;
 }