*, *::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #f8f9fa;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Shantell Sans', cursive;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 768px) {
  .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  }
}

@media (max-width: 480px) {
  .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 18;
  }
}

@media (max-width: 320px) {
  .material-symbols-outlined {
    font-size: 16px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 16;
  }
  
  .ibn-gameBadge .material-symbols-outlined,
  .ibn-ageGate_agree .material-symbols-outlined,
  .ibn-ageGate_leave .material-symbols-outlined {
    display: none; 
  }
}

.ibn-ageGate_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ibn-ageGate_box {
    background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ibn-ageGate_header {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ibn-ageGate_text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ibn-ageGate_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.ibn-ageGate_agree, .ibn-ageGate_leave {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ibn-ageGate_agree {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.ibn-ageGate_leave {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
}

.ibn-cookieAlert_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 1rem;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.ibn-cookieAlert_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.ibn-cookieAlert_icon {
    font-size: 1.8rem;
}

.ibn-cookieAlert_text {
    flex: 1;
    margin: 0;
}

.ibn-cookieAlert_link {
    color: #4facfe;
    text-decoration: underline;
}

.ibn-cookieAlert_ok {
    background: linear-gradient(to right, #11998e, #38ef7d);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ibn-siteHeader {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-headerFrame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ibn-logoWrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ibn-logoTitle {
    font-size: 1.8rem;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.ibn-navList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ibn-navLink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.ibn-navLink:hover {
    color: #4facfe;
}

.ibn-mobileToggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.ibn-mobilePanel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: none;
    background: linear-gradient(to bottom, #0f2027, #203a43);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.ibn-mobilePanel.active {
    display: flex;
}

.ibn-mobileList {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.ibn-mobileItem {
    margin-bottom: 1.5rem;
}

.ibn-mobileLink {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.ibn-welcomeSection {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ibn-welcomeContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.ibn-welcomeTitle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ibn-welcomeText {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.ibn-welcomeButtons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.ibn-welcomePrimary, .ibn-welcomeSecondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.ibn-welcomePrimary {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
}

.ibn-welcomeSecondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ibn-featureSection {
    padding: 5rem 0;
    position: relative;
}

.ibn-featureBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../ibn-image/ibn-background-img-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.ibn-featureContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ibn-featureHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ibn-featureGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ibn-featureCard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-featureCard:hover {
    transform: translateY(-10px);
}

.ibn-featureIcon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ibn-featureTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.ibn-featureDesc {
    color: rgba(255, 255, 255, 0.8);
}

.ibn-gameSection {
    padding: 5rem 0;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

.ibn-gameWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.ibn-gameMedia {
    flex: 1 1 500px;
    position: relative;
}

.ibn-gameImage {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ibn-gameBadge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ibn-gameDetails {
    flex: 1 1 500px;
}

.ibn-gameTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ibn-gameText {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ibn-gameList {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ibn-gameItem {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ibn-gameButton {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #11998e, #38ef7d);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ibn-gameButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ibn-joinSection {
    padding: 5rem 0;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
}

.ibn-joinContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.ibn-joinContent {
    margin-bottom: 2rem;
}

.ibn-joinTitle {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

.ibn-joinText {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ibn-joinForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.ibn-joinGroup {
    position: relative;
}

.ibn-joinInput {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.ibn-joinError {
    color: #ff4b2b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.ibn-joinConsent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.ibn-joinConsent a {
    color: #4facfe;
    text-decoration: underline;
}

.ibn-joinSubmit {
    padding: 1rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.ibn-joinSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ibn-join-success {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a2a6c, #b21f1f);
  padding: 2rem;
  border-radius: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ibn-join-success .material-symbols-outlined {
  font-size: 3rem;
  color: #38ef7d;
  margin-bottom: 1rem;
}

.ibn-join-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.ibn-communitySection {
    padding: 5rem 0;
    position: relative;
}

.ibn-communityVisual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../ibn-image/ibn-background-img-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.1;
}

.ibn-communityContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.ibn-communityHeading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

.ibn-communityIntro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.ibn-communityStats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ibn-communityStat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-communityStat span[class^="material-symbols-outlined"] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ibn-communityNumber {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: white;
}

.ibn-communityLabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.ibn-communityFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ibn-communityFeature {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-communityFeature span[class^="material-symbols-outlined"] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ibn-communityTitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.ibn-communityText {
    color: rgba(255, 255, 255, 0.8);
}

.ibn-testimonialSection {
    padding: 5rem 0;
    background: linear-gradient(to right, #1e3c72, #2a5298);
}

.ibn-testimonialContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ibn-testimonialHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ibn-testimonialSlider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

.ibn-testimonialSlider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #4facfe transparent;
}

.ibn-testimonialSlider::-webkit-scrollbar {
  height: 8px;
}

.ibn-testimonialSlider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.ibn-testimonialSlider::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  border-radius: 10px;
}

.ibn-testimonialSlider::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right, #3a9bed, #00d9e6);
}

.ibn-testimonialCard {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-testimonialAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    align-self: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.ibn-testimonialContent {
    flex: 1;
}

.ibn-testimonialName {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ibn-testimonialRating {
    margin-bottom: 1rem;
    color: #ffc107;
}

.ibn-testimonialText {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.ibn-supportSection {
    padding: 5rem 0;
    position: relative;
}

.ibn-supportVisual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../ibn-image/ibn-background-img-3.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.1;
}

.ibn-supportContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.ibn-supportInfo {
    flex: 1 1 400px;
}

.ibn-supportHeading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.ibn-supportText {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ibn-supportContacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ibn-supportContact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ibn-supportContact span[class^="material-symbols-outlined"] {
    font-size: 1.5rem;
    color: #4facfe;
}

.ibn-supportFormWrap {
    flex: 1 1 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-supportForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ibn-supportGroup {
    position: relative;
}

.ibn-supportLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ibn-supportInput, .ibn-supportTextarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.ibn-supportTextarea {
    min-height: 150px;
    resize: vertical;
}

.ibn-supportError {
    color: #cfcccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.ibn-supportConsent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ibn-supportConsent a {
    color: #4facfe;
    text-decoration: underline;
}

.ibn-supportSubmit {
    padding: 1rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(to right, #11998e, #38ef7d);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.ibn-supportSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ibn-supportSuccess {
    text-align: center;
    padding: 2rem;
    display: none;
}

.ibn-supportSuccess span[class^="material-symbols-outlined"] {
    font-size: 3rem;
    color: #38ef7d;
    margin-bottom: 1rem;
}

.ibn-support-success {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0f2027, #203a43);
  padding: 2rem;
  border-radius: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ibn-support-success .material-symbols-outlined {
  font-size: 3rem;
  color: #38ef7d;
  margin-bottom: 1rem;
}

.ibn-support-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.ibn-faqSection {
    padding: 5rem 0;
    background: linear-gradient(to right, #0f2027, #203a43);
}

.ibn-faqContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ibn-faqHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ibn-faqAccordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ibn-faqItem {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibn-faqQuestion {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    color: white;
    font-family: 'Shantell Sans', cursive;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ibn-faqQuestion span[class^="material-symbols-outlined"]:first-child {
    color: #4facfe;
}

.ibn-faqAnswer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ibn-faqItem.active .ibn-faqAnswer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.ibn-noticeSection {
    padding: 5rem 0;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
}

.ibn-noticeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ibn-noticeBlock {
    flex: 1 1 500px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
}

.ibn-noticeHeading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.ibn-noticeText {
    line-height: 1.7;
}

.ibn-noticeText a {
    color: #4facfe;
    text-decoration: underline;
}

.ibn-siteFooter {
    background: linear-gradient(to right, #0f2027, #203a43);
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.ibn-footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ibn-footerBlock {
    flex: 1 1 250px;
}

.ibn-footerTitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ibn-footerText {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ibn-footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibn-footerItem {
    margin-bottom: 1rem;
}

.ibn-footerLink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.ibn-footerLink:hover {
    color: #4facfe;
}

.ibn-footerAddress p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.ibn-footerCopyright {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.ibn-scrollTop {
    position: fixed;
    bottom: 15rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.ibn-scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
  .ibn-testimonialCard {
    flex: 0 0 calc(25% - 1.5rem);
  }
}

@media (max-width: 1024px) {
    .ibn-welcomeTitle {
        font-size: 3rem;
    }
    
    .ibn-featureHeading, .ibn-communityHeading, .ibn-testimonialHeading, .ibn-faqHeading {
        font-size: 2.2rem;
    }
    
    .ibn-supportHeading {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
  .ibn-testimonialCard {
    flex: 0 0 calc(33.333% - 1.5rem);
  }
}

@media (max-width: 768px) {
    .ibn-navList {
        display: none;
    }
    
    .ibn-mobileToggle {
        display: block;
        z-index: 1003;
    }
    
    .ibn-welcomeTitle {
        font-size: 2.5rem;
    }
    
    .ibn-welcomeButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .ibn-gameWrapper {
        flex-direction: column;
    }
    
    .ibn-supportContainer {
        flex-direction: column;
    }
}

@media (min-width: 480px) {
  .ibn-testimonialCard {
    flex: 0 0 calc(50% - 1.5rem);
  }
}

@media (max-width: 480px) {
    .ibn-welcomeTitle {
        font-size: 2rem;
    }
    
    .ibn-featureHeading, .ibn-communityHeading, .ibn-testimonialHeading, .ibn-faqHeading {
        font-size: 1.8rem;
    }
    
    .ibn-communityStats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ibn-testimonialCard {
        flex: 0 0 300px;
    }
    
    .ibn-footerContainer {
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    .ibn-headerFrame, .ibn-welcomeContent, .ibn-featureContainer, 
    .ibn-gameWrapper, .ibn-communityContainer, .ibn-testimonialContainer, 
    .ibn-supportContainer, .ibn-faqContainer, .ibn-noticeContainer, 
    .ibn-footerContainer {
        padding: 0 1rem;
    }
    
    .ibn-welcomeTitle {
        font-size: 1.8rem;
    }
    
    .ibn-gameBadge {
        right: 0;
    }

      .ibn-testimonialSlider {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .ibn-testimonialCard {
        padding: 1.5rem;
        flex: 0 0 280px;
    }
    
    .ibn-testimonialSlider::-webkit-scrollbar {
        height: 4px;
    }
}

.ibnpg-responsible-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #f8f9fa;
}

.ibnpg-responsible-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ibnpg-responsible-header h2 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibnpg-responsible-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ibnpg-responsible-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ibnpg-responsible-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibnpg-responsible-item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}

.ibnpg-responsible-item p {
  line-height: 1.6;
}

.ibnpg-responsible-item a {
  color: #4facfe;
  text-decoration: underline;
}

.ibnpg-responsible-item .material-symbols-outlined {
  font-size: 2.5rem;
  background: linear-gradient(to right, #11998e, #38ef7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 320px) {
  .ibnpg-responsible-header h2 {
    font-size: 1.8rem;
    flex-direction: column;
  }
  
  .ibnpg-responsible-points {
    grid-template-columns: 1fr;
  }
  
  .ibnpg-responsible-item .material-symbols-outlined {
    font-size: 1.8rem;
  }
}

.ibnpg-terms-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #f8f9fa;
}

.ibnpg-terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ibnpg-terms-header h2 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibnpg-terms-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ibnpg-terms-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
}

.ibnpg-terms-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibnpg-terms-item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}

.ibnpg-terms-item p {
  line-height: 1.6;
}

.ibnpg-terms-item .material-symbols-outlined {
  font-size: 2.5rem;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 320px) {
  .ibnpg-terms-header h2 {
    font-size: 1.8rem;
  }
  
  .ibnpg-terms-item {
    padding: 1rem;
  }
  
  .ibnpg-terms-item h3 {
    font-size: 1.1rem;
  }
}

.ibnpg-cookie-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #f8f9fa;
}

.ibnpg-cookie-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ibnpg-cookie-header h2 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #11998e, #38ef7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibnpg-cookie-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ibnpg-cookie-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ibnpg-cookie-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibnpg-cookie-item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}

.ibnpg-cookie-item p {
  line-height: 1.6;
}

.ibnpg-cookie-item .material-symbols-outlined {
  font-size: 2.5rem;
  background: linear-gradient(to right, #ff8a00, #da1b60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 320px) {
  .ibnpg-cookie-header h2 {
    font-size: 1.8rem;
  }
  
  .ibnpg-cookie-points {
    grid-template-columns: 1fr;
  }
  
  .ibnpg-cookie-item .material-symbols-outlined {
    font-size: 1.8rem;
  }
}

.ibnpg-privacy-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #f8f9fa;
}

.ibnpg-privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ibnpg-privacy-header h2 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibnpg-privacy-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ibnpg-privacy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
}

.ibnpg-privacy-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibnpg-privacy-item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}

.ibnpg-privacy-item p {
  line-height: 1.6;
}

.ibnpg-privacy-item .material-symbols-outlined {
  font-size: 2.5rem;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 320px) {
  .ibnpg-privacy-header h2 {
    font-size: 1.8rem;
    flex-direction: column;
  }
  
  .ibnpg-privacy-item {
    padding: 1rem;
  }
  
  .ibnpg-privacy-item .material-symbols-outlined {
    font-size: 2rem;
  }
}