.hand-cursor {
  cursor: pointer;
}

/*404 page*/
.error-page .backtohome{
    display:inline-block;   
    padding:12px 25px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}
.error-page .error-wrapper{

    text-align:center;
    padding-left:60px; 
    padding-right:60px; 
    padding-bottom:30px; 
    padding-right:60px; 
    font-family:'Segoe UI', sans-serif;
}
.error-page .quote{
    margin-top:20px; font-size:18px; color:#555;
}

.error-page .title{
   font-size:60px; color:#f44336; margin-bottom:10px;
}

/* match show*/
.match-show .match-card {
background: #fff;
border-radius: 14px;
border: 1px solid #ddd;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
padding: 20px;
}
.match-show .team-logo {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 50%;
border: 3px solid #eee;
}
.match-show .status-badge {
font-size: 15px;
padding: 6px 12px;
border-radius: 30px;
font-weight: 600;
}
.match-show .status-live { background: #d20000; color: #fff; }
.match-show .status-completed { background: #198754; color: #fff; }
.match-show .status-upcoming { background: #ff8c00; color: #fff; }

.match-show .player-card {
border-radius: 14px;
background: #ffffff;
border: 1px solid #ddd;
padding: 20px;
box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.match-show .player-img {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #eee;
}
.match-show .small-title {
font-size: 14px;
color: #777;
}
.match-show .score-box {
font-size: 24px;
font-weight: 700;
}
.match-show .sub-score {
font-size: 14px;
color: #666;
}

/*tournament*/

.tournament-match .match-block {
    border-radius: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #ddd;
    transition: 0.25s;
    cursor: pointer;
    position: relative;
}
.tournament-match .match-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #ff0024;
}
.tournament-match .team-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #eee;
}
.tournament-match .team-name {
    font-size: 18px;
    font-weight: 600;
}
.tournament-match .vs-text {
    font-weight: bold;
    color: #555;
}
/* Status Labels */
.tournament-match .match-status {
    position: absolute;
    top: -12px;
    left: -12px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: #555;
    border-radius: 6px;
}
.tournament-match .status-live { background: #d20000; }
.tournament-match .status-upcoming { background: #ff8c00; }
.tournament-match .status-completed { background: #198754; }

/*gallery*/

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}


.committeeMember ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.team-card {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: 0.3s ease-in-out;
        border-top: 5px solid #c5001c;
    }

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

    .team-img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #c5001c;
        margin-bottom: 10px;
    }

    .team-name {
        font-weight: 700;
        color: #950013;
    }

    .team-role {
        font-size: 14px;
        color: #666;
    }

    .team-links a {
        text-decoration: none;
        font-size: 14px;
        margin: 0 5px;
        color: #c5001c;
        font-weight: 600;
    }

    .team-links i {
        font-size: 16px;
    }