/* ceo bet365 - Main Stylesheet */
/* All classes use wc756- prefix */

:root {
  --wc756-primary: #A0522D;
  --wc756-secondary: #EE82EE;
  --wc756-dark: #3A3A3A;
  --wc756-light: #DDA0DD;
  --wc756-bg: #3A3A3A;
  --wc756-text: #FFFFFF;
  --wc756-accent: #EE82EE;
  --wc756-card-bg: #4A4A4A;
  --wc756-border: #5A5A5A;
  --wc756-success: #4CAF50;
  --wc756-warning: #FF9800;
  --wc756-radius: 8px;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--wc756-bg);
  color: var(--wc756-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Header */
.wc756-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, var(--wc756-dark), #2A2A2A);
  border-bottom: 2px solid var(--wc756-primary);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  height: 5rem;
}

.wc756-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.wc756-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.wc756-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wc756-primary);
  white-space: nowrap;
}

.wc756-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wc756-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border-radius: var(--wc756-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 3.6rem;
  min-width: 4.4rem;
  transition: all 0.2s ease;
}

.wc756-btn:active { transform: scale(0.95); }

.wc756-btn-register {
  background: linear-gradient(135deg, var(--wc756-primary), #C0662D);
  color: #FFF;
}

.wc756-btn-login {
  background: transparent;
  color: var(--wc756-accent);
  border: 1px solid var(--wc756-accent);
}

.wc756-btn-promo {
  background: linear-gradient(135deg, var(--wc756-secondary), var(--wc756-light));
  color: var(--wc756-dark);
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
}

.wc756-menu-btn {
  background: none;
  border: none;
  color: var(--wc756-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Mobile Menu */
.wc756-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wc756-menu-overlay.wc756-active {
  opacity: 1;
  pointer-events: all;
}

.wc756-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--wc756-dark);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 6rem 0 2rem;
  overflow-y: auto;
}

.wc756-mobile-menu.wc756-active { right: 0; }

.wc756-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--wc756-text);
  font-size: 2.4rem;
  cursor: pointer;
}

.wc756-menu-link {
  display: block;
  padding: 1.2rem 2rem;
  color: var(--wc756-text);
  text-decoration: none;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--wc756-border);
  transition: background 0.2s;
}

.wc756-menu-link:hover {
  background: var(--wc756-primary);
  color: #FFF;
}

/* Carousel */
.wc756-carousel {
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  height: 18rem;
}

.wc756-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  cursor: pointer;
}

.wc756-slide-active { opacity: 1; }

.wc756-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Content */
.wc756-main {
  padding: 1rem;
  padding-bottom: 8rem;
}

.wc756-section {
  margin-bottom: 2rem;
}

.wc756-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wc756-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wc756-primary);
}

/* Game Grid */
.wc756-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.wc756-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.wc756-game-item:active { transform: scale(0.93); }

.wc756-game-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--wc756-radius);
  object-fit: cover;
  border: 2px solid var(--wc756-border);
}

.wc756-game-name {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  color: var(--wc756-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cards */
.wc756-card {
  background: var(--wc756-card-bg);
  border-radius: var(--wc756-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--wc756-border);
}

.wc756-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wc756-primary);
  margin-bottom: 0.8rem;
}

.wc756-card-text {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #DDD;
}

/* Promo Link Styles */
.wc756-promo-link {
  color: var(--wc756-accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.wc756-promo-link:hover {
  text-decoration: underline;
}

.wc756-promo-banner {
  background: linear-gradient(135deg, var(--wc756-primary), #C0662D);
  border-radius: var(--wc756-radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  margin: 1rem 0;
}

.wc756-promo-banner h3 {
  color: #FFF;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.wc756-promo-banner p {
  color: #F5F5F5;
  font-size: 1.2rem;
}

/* FAQ */
.wc756-faq-item {
  background: var(--wc756-card-bg);
  border-radius: var(--wc756-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--wc756-primary);
}

.wc756-faq-q {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wc756-primary);
  margin-bottom: 0.4rem;
}

.wc756-faq-a {
  font-size: 1.2rem;
  color: #CCC;
  line-height: 1.6rem;
}

/* Features */
.wc756-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.wc756-feature-item {
  background: var(--wc756-card-bg);
  border-radius: var(--wc756-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--wc756-border);
}

.wc756-feature-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--wc756-accent);
}

.wc756-feature-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wc756-primary);
}

/* Partners */
.wc756-partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.wc756-partner {
  font-size: 1.1rem;
  color: #AAA;
  font-weight: 600;
}

/* Footer */
.wc756-footer {
  background: #2A2A2A;
  padding: 2rem 1rem 8rem;
  border-top: 2px solid var(--wc756-primary);
}

.wc756-footer-text {
  font-size: 1.2rem;
  color: #AAA;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.6rem;
}

.wc756-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.wc756-footer-link {
  color: var(--wc756-accent);
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.wc756-footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-top: 1rem;
}

/* Bottom Nav */
.wc756-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--wc756-dark);
  border-top: 1px solid var(--wc756-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 5.6rem;
  z-index: 1000;
}

.wc756-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #AAA;
  text-decoration: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  min-height: 4.4rem;
  min-width: 4.4rem;
  transition: color 0.2s;
  font-family: 'Hind Siliguri', sans-serif;
}

.wc756-bottom-btn:active { color: var(--wc756-primary); }

.wc756-bottom-icon { font-size: 2rem; margin-bottom: 0.2rem; }
.wc756-bottom-label { font-size: 1rem; }

.wc756-bottom-btn.wc756-active {
  color: var(--wc756-primary);
}

/* Winners */
.wc756-winner-list { list-style: none; }

.wc756-winner-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--wc756-border);
  font-size: 1.2rem;
}

.wc756-winner-name { color: var(--wc756-accent); }
.wc756-winner-amount { color: var(--wc756-success); font-weight: 600; }

/* Payment */
.wc756-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.wc756-payment-item {
  background: var(--wc756-card-bg);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  color: var(--wc756-text);
  border: 1px solid var(--wc756-border);
}

/* Testimonials */
.wc756-testimonial {
  background: var(--wc756-card-bg);
  border-radius: var(--wc756-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--wc756-accent);
}

.wc756-testimonial-text {
  font-size: 1.2rem;
  color: #DDD;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.wc756-testimonial-author {
  font-size: 1.1rem;
  color: var(--wc756-accent);
}

/* RTP Table */
.wc756-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.wc756-rtp-table th {
  background: var(--wc756-primary);
  color: #FFF;
  padding: 0.6rem;
  text-align: left;
}

.wc756-rtp-table td {
  padding: 0.6rem;
  border-bottom: 1px solid var(--wc756-border);
  color: #DDD;
}

/* Responsive */
@media (min-width: 769px) {
  .wc756-bottom-nav { display: none; }
}
