            /* Video Modal Styles */
            .video-modal {
                display: none;
                position: fixed;
                z-index: 9999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.8);
                backdrop-filter: blur(5px);
            }

            .video-modal-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .video-modal-content {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 20px;
            }

            .video-container {
                position: relative;
                max-width: 95%;
                max-height: 95%;
                width: 900px;
                height: 600px;
                background: #000;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            }

            .video-container iframe {
                display: block;
                width: 100%;
                height: 100%;
                min-height: 500px;
            }

            .video-modal-close {
                position: absolute;
                top: 20px;
                right: 30px;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                font-size: 30px;
                cursor: pointer;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 10000;
            }

            .video-modal-close:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1);
            }

            /* Responsive Design */
            @media (max-width: 1200px) {
                .video-container {
                    width: 800px;
                    height: 500px;
                    max-width: 95%;
                    max-height: 90%;
                }
            }
            
            @media (max-width: 768px) {
                .video-container {
                    width: 95%;
                    height: 400px;
                    max-width: 95%;
                    max-height: 85%;
                }
                
                .video-container iframe {
                    min-height: 350px;
                }
                
                .video-modal-close {
                    top: 10px;
                    right: 15px;
                    width: 40px;
                    height: 40px;
                    font-size: 24px;
                }
            }
            
            @media (max-width: 480px) {
                .video-container {
                    width: 98%;
                    height: 300px;
                    max-width: 98%;
                    max-height: 80%;
                }
                
                .video-container iframe {
                    min-height: 250px;
                }
                
                .video-modal-close {
                    top: 5px;
                    right: 10px;
                    width: 35px;
                    height: 35px;
                    font-size: 20px;
                }
                
                .video-modal-content {
                    padding: 10px;
                }
            }

            /* Animation for modal */
            .video-modal.show {
                display: block;
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            /* Game Rules Modal Styles */
            .game-rules-modal {
                display: none;
                position: fixed;
                z-index: 9999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(2px);
            }

            .game-rules-modal-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .game-rules-modal-content {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 20px;
            }

            .game-rules-container {
                position: relative;
                max-width: 90%;
                max-height: 90%;
                width: 800px;
                background: linear-gradient(135deg, #1a4992 0%, #0a0a0a 100%);
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
                border: 2px solid rgba(248, 202, 20, 0.3);
            }

            .game-rules-header {
                background: linear-gradient(90deg, #f8ca14 0%, #faa64d 100%);
                padding: 25px 30px;
                text-align: center;
                border-bottom: 2px solid rgba(248, 202, 20, 0.3);
            }

            .game-rules-header h2 {
                color: #1a4992;
                font-size: 2.5rem;
                font-weight: 800;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            .game-rules-body {
                padding: 30px;
                max-height: 60vh;
                overflow-y: auto;
                color: #ffffff;
            }

            .game-rules-body h3 {
                color: #f8ca14;
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 20px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .game-rules-body h4 {
                color: #faa64d;
                font-size: 1.2rem;
                font-weight: 600;
                margin: 25px 0 15px 0;
                text-transform: uppercase;
            }

            .game-rules-body p {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 15px;
                color: #ffffff;
            }

            .game-rules-body ul {
                margin: 15px 0;
                padding-left: 25px;
            }

            .game-rules-body li {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 10px;
                color: #ffffff;
            }

            .game-rules-modal-close {
                position: absolute;
                top: 20px;
                right: 30px;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                font-size: 30px;
                cursor: pointer;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 10000;
            }

            .game-rules-modal-close:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1);
            }

            /* Scrollbar styling for game rules */
            .game-rules-body::-webkit-scrollbar {
                width: 8px;
            }

            .game-rules-body::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
            }

            .game-rules-body::-webkit-scrollbar-thumb {
                background: linear-gradient(90deg, #f8ca14 0%, #faa64d 100%);
                border-radius: 4px;
            }

            .game-rules-body::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(90deg, #faa64d 0%, #f8ca14 100%);
            }

            /* Responsive Design for Game Rules Modal */
            @media (max-width: 1200px) {
                .game-rules-container {
                    width: 90%;
                    max-width: 700px;
                }
                
                .game-rules-header h2 {
                    font-size: 2rem;
                }
            }
            
            @media (max-width: 768px) {
                .game-rules-container {
                    width: 95%;
                    max-width: 95%;
                }
                
                .game-rules-header {
                    padding: 20px 25px;
                }
                
                .game-rules-header h2 {
                    font-size: 1.8rem;
                }
                
                .game-rules-body {
                    padding: 25px;
                    max-height: 70vh;
                }
                
                .game-rules-body h3 {
                    font-size: 1.3rem;
                }
                
                .game-rules-body h4 {
                    font-size: 1.1rem;
                }
                
                .game-rules-modal-close {
                    top: 15px;
                    right: 20px;
                    width: 40px;
                    height: 40px;
                    font-size: 24px;
                }
            }
            
            @media (max-width: 480px) {
                .game-rules-container {
                    width: 98%;
                    max-width: 98%;
                }
                
                .game-rules-header {
                    padding: 15px 20px;
                }
                
                .game-rules-header h2 {
                    font-size: 1.5rem;
                }
                
                .game-rules-body {
                    padding: 20px;
                    max-height: 75vh;
                }
                
                .game-rules-body h3 {
                    font-size: 1.2rem;
                }
                
                .game-rules-body h4 {
                    font-size: 1rem;
                }
                
                .game-rules-body p,
                .game-rules-body li {
                    font-size: 0.9rem;
                }
                
                .game-rules-modal-close {
                    top: 10px;
                    right: 15px;
                    width: 35px;
                    height: 35px;
                    font-size: 20px;
                }
                
                .game-rules-modal-content {
                    padding: 10px;
                }
            }

            /* Animation for game rules modal */
            .game-rules-modal.show {
                display: flex;
                animation: fadeIn 0.3s ease;
            }

            /* Game Rules Content Styling */
            .game-rules-content {
                color: white;
                line-height: 1.6;
            }

            .rule-section {
                margin-bottom: 30px;
            }

            .rule-section:last-child {
                margin-bottom: 0;
            }

            .rule-title {
                color: #ffd700;
                font-size: 24px;
                font-weight: bold;
                margin-bottom: 15px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .rule-description {
                color: #ffffff;
                font-size: 16px;
                margin-bottom: 0;
                line-height: 1.7;
            }

            .rule-list {
                color: #ffffff;
                font-size: 16px;
                margin: 0;
                padding-left: 20px;
            }

            .rule-list li {
                margin-bottom: 10px;
                line-height: 1.6;
            }

            .rule-list li:last-child {
                margin-bottom: 0;
            }

            /* Terms and Conditions Modal Styles */
            .terms-modal {
                display: none;
                position: fixed;
                z-index: 9999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.8);
                backdrop-filter: blur(5px);
            }

            .terms-modal-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .terms-modal-content {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 20px;
            }

            .terms-container {
                position: relative;
                max-width: 90%;
                max-height: 90%;
                width: 800px;
                background: linear-gradient(135deg, #1a4992 0%, #0a0a0a 100%);
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
                border: 2px solid rgba(248, 202, 20, 0.3);
            }

            .terms-header {
                background: linear-gradient(90deg, #f8ca14 0%, #faa64d 100%);
                padding: 25px 30px;
                text-align: center;
                border-bottom: 2px solid rgba(248, 202, 20, 0.3);
            }

            .terms-header h2 {
                color: #1a4992;
                font-size: 2.5rem;
                font-weight: 800;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            .terms-body {
                padding: 30px;
                max-height: 60vh;
                overflow-y: auto;
                color: #ffffff;
            }

            .terms-body ol {
                margin: 0;
                padding-left: 25px;
            }

            .terms-body li {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 15px;
                color: #ffffff;
                padding-left: 10px;
            }

            .terms-modal-close {
                position: absolute;
                top: 20px;
                right: 30px;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                font-size: 30px;
                cursor: pointer;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 10000;
            }

            .terms-modal-close:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1);
            }

            /* Scrollbar styling for terms */
            .terms-body::-webkit-scrollbar {
                width: 8px;
            }

            .terms-body::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
            }

            .terms-body::-webkit-scrollbar-thumb {
                background: linear-gradient(90deg, #f8ca14 0%, #faa64d 100%);
                border-radius: 4px;
            }

            .terms-body::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(90deg, #faa64d 0%, #f8ca14 100%);
            }

            /* Responsive Design for Terms Modal */
            @media (max-width: 1200px) {
                .terms-container {
                    width: 90%;
                    max-width: 700px;
                }
                
                .terms-header h2 {
                    font-size: 2rem;
                }
            }
            
            @media (max-width: 768px) {
                .terms-container {
                    width: 95%;
                    max-width: 95%;
                }
                
                .terms-header {
                    padding: 20px 25px;
                }
                
                .terms-header h2 {
                    font-size: 1.8rem;
                }
                
                .terms-body {
                    padding: 25px;
                    max-height: 70vh;
                }
                
                .terms-body li {
                    font-size: 0.95rem;
                }
                
                .terms-modal-close {
                    top: 15px;
                    right: 20px;
                    width: 40px;
                    height: 40px;
                    font-size: 24px;
                }
            }
            
            @media (max-width: 480px) {
                .terms-container {
                    width: 98%;
                    max-width: 98%;
                }
                
                .terms-header {
                    padding: 15px 20px;
                }
                
                .terms-header h2 {
                    font-size: 1.5rem;
                }
                
                .terms-body {
                    padding: 20px;
                    max-height: 75vh;
                }
                
                .terms-body li {
                    font-size: 0.9rem;
                }
                
                .terms-modal-close {
                    top: 10px;
                    right: 15px;
                    width: 35px;
                    height: 35px;
                    font-size: 20px;
                }
                
                .terms-modal-content {
                    padding: 10px;
                }
            }

            /* Animation for terms modal */
            .terms-modal.show {
                display: block;
                animation: fadeIn 0.3s ease;
            }
