        .afacad-menu {
            font-family: "Afacad", sans-serif;
            font-optical-sizing: auto;
            font-weight: 620;
            font-style: normal;
        }

        .cygre-font {
            font-family: "Cygre-semiBold", sans-serif;
            font-weight: 600;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cygre-semiBold';
            src: url('../resources/fonts/Cygre-SemiBold.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cygre-Book';
            src: url('../resources/fonts/Cygre-Book.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        * {
            font-family: 'Cygre-Book', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }

        body {
            background-color: #1a1a1a;
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-circle {
            width: 30px;
            height: 30px;
            background-color: #f9a825;
            border-radius: 50%;
            margin-right: 5px;
        }

        .logo-text {
            font-weight: bold;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 20px 0;
        }

        .scorecard {
            margin-bottom: 40px;
        }

        .team-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .team-name {
            display: flex;
            align-items: center;
        }

        .team-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mahinda-logo {
            background-image: url('../resources/images/Crest.png');
            background-size: cover;
        }

        .richmond-logo {
            background-image: url('../resources/images/RCG\ Crest.png');
            background-size: cover;
        }

        .team-score {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .inning-info {
            color: #aaa;
            margin-left: 10px;
        }

        .stats-table {
            width: 100%;
            background-color: rgba(60, 60, 60, 0.6);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .stats-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .stats-header {
            background-color: rgba(40, 40, 40, 0.7);
            padding: 15px;
            font-weight: normal;
            text-align: left;
        }

        .stats-cell {
            padding: 15px;
            border-bottom: 1px solid rgba(80, 80, 80, 0.3);
        }

        .stats-cell:last-child {
            border-bottom: none;
        }

        .player-info {
            font-size: 0.9rem;
            color: #aaa;
        }

        .text-center {
            text-align: center;
        }

        .text-right {
            text-align: right;
        }

        .column-header {
            color: #aaa;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #3b5998;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none !important;
        }

        .facebook {
            background-color: #1877F2;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .youtube {
            background-color: #ff0000;
        }

        .backdrop-word {
            position: absolute;
            top: 120px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 10rem;
            font-weight: bold;
            color: rgba(50, 50, 50, 0.3);
            z-index: -1;
            text-transform: uppercase;
            letter-spacing: 10px;
        }

        .gray-color {
            color: rgb(202, 202, 202);
        }

        .white-color {
            color: rgb(255, 255, 255);
        }

        .backgrnd {
            background-image: url('../resources/images/web\ 1.png');
            background-size: cover;
        }

        .navbar-nav{
            font-weight: bold;
        }

        .navbar-nav .nav-link:hover {
            color: #ffb900 !important;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .page-title {
                font-size: 2rem;
            }

            .backdrop-word {
                font-size: 6rem;
                top: 150px;
            }

            .stats-header,
            .stats-cell {
                padding: 10px;
            }

            .backgrnd {
                background-image: url('../resources/images/Web\ tab\ size\ 1.png');
                /* background-size: cover; */
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }

            .backdrop-word {
                font-size: 4rem;
                top: 180px;
            }

            .team-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .team-score {
                margin-top: 10px;
                align-self: flex-end;
            }

            .backgrnd {
                background-image: url('../resources/images/web\ phone\ size\ 1.png');
                /* background-size: cover; */
            }
        }