* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold1: #F5CC2C;
    --gold2: #F2CA33;
    --bg: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #222;
    line-height: 1.8;
    background: #fff;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 900;
    color: #F5CC2C;
    text-shadow: 0px 1px 1px #000;
}


h2 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #F5CC2C;
}


section {
    padding: 10px 20px;
}

.container {
    max-width: 1180px;
    margin: auto;
}

.glass-box {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    padding: 28px;
    border: 4px solid rgba(255, 220, 90, 0.7);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}


.btn-box {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.gold-btn {
    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    padding: 12px 25px;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    border: 3px solid #f9e57f;
    box-shadow: 0 5px 12px #0002;
    text-decoration: none;
}

header.myheader {
    background: linear-gradient(90deg, #F5CC2C 0%, #F2CA33 100%);
    box-shadow: 0 -3px 7px 0 #0000001a;
    position: relative;
}

.nav__data {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo img {
    max-width: 131px;
}

.first-section {
    padding: 40px 0px 40px;
}

a {
    text-decoration: none;
}

.nav__menu {
    position: relative;
}

ul.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

li.menu-link {
    position: relative;
    padding: 7px 20px;
    z-index: 1;
    margin-left: 10px;
}

li.menu-link a {
    color: #000;
    font-weight: 400;
    font-size: 17px;
    position: relative;
}

li.menu-link a:before {
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    border-bottom: 1px solid #000;
    transition: all 0.5s ease-in-out;
    padding-top: 2px;
    z-index: -1;
}

.sunmenu li.sb-links a {
    position: relative;
}

.sunmenu li.sb-links a:before {
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    border-bottom: 1px solid #000;
    transition: all 0.5s ease-in-out;
    padding-top: 2px;
    z-index: -1;
    background-color: #fff;
}

li.menu-link a:hover:before {
    width: 100%;
}

.nav__toggle {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    display: none;
}

.nav__toggle .pizza,
.close {
    position: absolute;
    max-width: max-content;
    max-height: max-content;
    inset: 0;
    margin: auto;
    font-size: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.close {
    opacity: 0;
    visibility: hidden;
}

.show-menu {
    transform: translateX(0%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
}

.show-icon .close {
    transform: rotate(90deg);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: -103px;
    z-index: 999 !important;
}

.show-icon .pizza {
    opacity: 1;
    transform: rotate(360deg);
}

/* Dropdown */
.nav__menu ul.menu-list li.menu-link>ul.sunmenu {
    position: absolute;
    top: 100%;
    left: inherit;
    width: 250px;
    padding: 15px 0px;
    background: linear-gradient(90deg, #F5CC2C 0%, #F2CA33 100%);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 100;
    margin-left: -70px;
    margin-top: 8px;
    list-style: none;
}

.nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    background-color: #000;
    color: #fff;
}

.nav__menu ul.menu-list li.menu-link>ul>li>a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    display: block;
    padding: 5px 20px;
}

header .button-group a {
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    margin: 0px 6px;
    padding: 10px 20px;
    text-shadow: 0px 1px 2px #000;
}

button {
    background-color: #d9ac4f;
    color: #000000;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/* -------Faq---Style---Code---- */
.faq-item {
    border: 1px solid transparent;
    background: rgb(255 251 234);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 7px 0px;
    border: 1px solid #f4d045;
}

.faq-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d9ac4f, #b8860b, #d9ac4f);
    background-size: 400%;
    z-index: -1;
    border-radius: 12px;
    animation: borderGlow 6s linear infinite;
    color: #000;
}

.faq-item:hover h3 button {
    color: #000 !important;
    transition: all 0.5s ease-in-out;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #000;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    padding: 9px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    color: #000;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 20px;
    color: #d9ac4f;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.footer {
    background-color: #f3cb31;
    color: white;
    padding: 1rem 1rem 1rem;
    margin-top: 2.4rem;
}

.footer-section ul {
    padding: 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.footer-section ul li a {
    color: #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 23px;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 12px 20px 1px 10px;
    border-top: 1px solid #fff;
    margin-top: 16px;
}

ol {
    margin-left: 0px;
    margin-bottom: 25px;
    color: var(--text);
}

ol li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* -----Sticky----Style----Code-------- */
.sticky {
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    transition: all 0.6s ease-in-out;
    animation: smothScroll 1s forwards;
}

@keyframes smothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.sticky+.site-content {
    padding-top: 102px;
}

header.sticky {
    background-color: #242424;
}

header.sticky ul li a {
    color: #000;
}

header.sticky .button-group a {
    background: #000;
    color: #fff;
}

.for-top-left-border {
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.toc-container {
    background: #111;
    border: 1px solid #d9ac4f;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    margin: 0px 0px 20px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    overflow: hidden;
    position: relative;
}

/* Hide checkbox */
.toc-checkbox {
    display: none;
}

/* TOC Button */
.toc-toggle {
    background: linear-gradient(90deg, #F5CC2C 0%, #F2CA33 100%);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    text-align: left;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px 10px 0 0;
}

.toc-toggle:hover {
    background: linear-gradient(180deg, #fed358 0%, #ffb472 100%);
    color: #111;
}

/* Hidden by default */
.toc-content {
    display: none;
    background: #fffbea;
    padding: 10px 20px;
    border-top: 1px solid #000;
}

/* Show when checkbox is checked */
.toc-checkbox:checked~.toc-content {
    display: block;
}

.toc-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-content li {
    padding: 8px 0;
    border-bottom: 1px solid #000000;
}

.toc-content li:last-child {
    border-bottom: none;
}

.toc-content a {
    text-decoration: none;
    transition: 0.3s;
}

.toc-content a:hover {
    color: #000;
    text-shadow: 0 0 5px #d9ac4f;
}

.images-style img {
    max-width: 330px;
    border: 1px solid #d9ac4f;
    border-radius: 12px;
    padding: 6px;
}

.images-style {
    text-align: center;
    margin: 25px 0px 20px;
    background-color: #fffbea;
    padding: 27px 0px;
    border-radius: 15px;
    border: 1px solid #f4d045;
}

.yellow-table-container {
    width: 100%;
    overflow-x: auto;
    /* Scroll on small screens */
    margin: 20px 0;
}

.yellow-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Ensures table doesn't shrink too much */
}

.yellow-table th,
.yellow-table td {
    border: 2px solid #f4d045;
    /* Golden border */
    padding: 12px 15px;
    text-align: center;
    color: #333;
}

.yellow-table th {
    background-color: #fffbea;
    /* Light yellow background */
    color: #f4d045;
    /* Golden text */
    font-weight: 600;
}

.yellow-table td {
    background-color: #ffffff;
}

.yellow-table tr:nth-child(even) td {
    background-color: #fff8dc;
    /* Slightly lighter yellow for even rows */
}

@media (max-width: 768px) {

    .yellow-table th,
    .yellow-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .yellow-table {
        min-width: 100%;
        /* Make table fully scrollable */
    }

    .yellow-table th,
    .yellow-table td {
        font-size: 0.85rem;
        padding: 8px 6px;
    }
}

/* Section Container */
.player-reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: Arial, sans-serif;
    color: #333;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    /* color: #f4d045; */
    /* Golden accent for title */
    text-align: center;
}

.section-desc {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #555;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 20px;
}

/* Individual Review Card */
.review-card {
    background-color: #fffbea;
    /* Light yellow background */
    border: 1px solid #f4d045;
    /* Golden border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 10px;
    color: #f4d045;
    /* Golden text for reviewer name */
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* Reviews Summary */
.reviews-summary {
    margin-top: 30px;
    font-size: 1rem;
    text-align: center;
    color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-desc,
    .reviews-summary {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 15px;
    }

    .review-card p {
        font-size: 0.9rem;
    }
}

.margin-top {
    margin-top: 40px;
}

.section-box {
    margin: 25px 0px 20px;
    background-color: #fffbea;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f4d045;
}