@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #141e30;
  --secondary-color: #243b55;
  --accent-color: #daa520;
  --text-color: #fff;
  --card-red: #e74c3c;
  --card-black: #2c3e50;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  --telegram-color: #2AABEE;
  --clubgg-color: #007bff;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: var(--text-color);
  position: relative;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.8s ease;
}

.loading-screen.fade-out {
  opacity: 0;
}

.poker-chip {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #111, #333);
  border: 6px dashed var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  animation: rotate 4s linear infinite;
}

.chip-inner {
  width: 80%;
  height: 80%;
  background: radial-gradient(#222, #000);
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5em;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-content {
  display: flex;
  gap: 15px;
}

.loading-content .card {
  position: relative;
  width: 60px;
  height: 90px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: #222;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.loading-content .card[data-suit="♥️"],
.loading-content .card[data-suit="♦️"] {
  color: var(--card-red);
}

.loading-content .card[data-suit="♠️"],
.loading-content .card[data-suit="♣️"] {
  color: var(--card-black);
}

.loading-content .card small {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.5em;
}

.card.flip {
  transform: rotateY(180deg);
}

/* Card Particles */
.card-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.card-particle {
  position: absolute;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.15);
  font-weight: bold;
  opacity: 0.3;
  animation: float-card 20s infinite linear;
}

@keyframes float-card {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px 0;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Poker Table Background Shape */
.poker-table-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 90%;
  background: rgba(16, 64, 33, 0.15);
  border-radius: 200px;
  z-index: -1;
  box-shadow: 0 0 100px rgba(0, 100, 0, 0.1);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.chip {
  top: 15%;
  right: 10%;
  width: 50px;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%23daa520" stroke="%23fff" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="%23b8860b" stroke="%23fff" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="%23daa520" stroke="%23fff" stroke-width="1"/></svg>') no-repeat center/contain;
}

.chip2 {
  bottom: 20%;
  left: 15%;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%23e74c3c" stroke="%23fff" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="%23c0392b" stroke="%23fff" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="%23e74c3c" stroke="%23fff" stroke-width="1"/></svg>') no-repeat center/contain;
}

.chip3 {
  top: 40%;
  left: 5%;
  width: 35px;
  height: 35px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%232ecc71" stroke="%23fff" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="%2327ae60" stroke="%23fff" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="%232ecc71" stroke="%23fff" stroke-width="1"/></svg>') no-repeat center/contain;
}

.card1 {
  bottom: 30%;
  right: 5%;
  width: 60px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 120"><rect x="2" y="2" width="76" height="116" rx="8" fill="%23fff" stroke="%23000" stroke-width="2"/><text x="10" y="30" font-family="Arial" font-size="24" font-weight="bold" fill="%23e74c3c">A</text><text x="58" y="100" font-family="Arial" font-size="24" font-weight="bold" fill="%23e74c3c">♥</text></svg>') no-repeat center/contain;
  transform: rotate(-15deg);
}

.card2 {
  top: 25%;
  left: 10%;
  width: 60px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 120"><rect x="2" y="2" width="76" height="116" rx="8" fill="%23fff" stroke="%23000" stroke-width="2"/><text x="10" y="30" font-family="Arial" font-size="24" font-weight="bold">K</text><text x="58" y="100" font-family="Arial" font-size="24" font-weight="bold">♠</text></svg>') no-repeat center/contain;
  transform: rotate(10deg);
}

/* Header Style */
header {
  padding: 20px 0;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-cards {
  display: flex;
  margin-bottom: -15px;
}

.logo-card {
  position: relative;
  width: 40px;
  height: 60px;
  background: white;
  border-radius: 5px;
  margin: 0 -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-card:nth-child(1) {
  transform: rotate(-15deg);
  z-index: 1;
}

.logo-card:nth-child(2) {
  transform: translateY(-5px);
  z-index: 3;
}

.logo-card:nth-child(3) {
  transform: rotate(15deg);
  z-index: 2;
}

.logo-card small {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 0.6em;
}

.logo:hover .logo-card:nth-child(1) {
  transform: rotate(-20deg) translateX(-5px);
}

.logo:hover .logo-card:nth-child(2) {
  transform: translateY(-10px);
}

.logo:hover .logo-card:nth-child(3) {
  transform: rotate(20deg) translateX(5px);
}

.logo h1 {
  font-size: 3.2em;
  margin: 15px 0 0;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

header p {
  font-size: 1.3em;
  color: #ddd;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Sections Styling */
.hero {
  margin-bottom: 50px;
  position: relative;
}

.glassmorphism {
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glassmorphism:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--glass-shadow);
}

/* Card Corner Decorations */
.card-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.15);
}

.top-left {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 5px;
}

.bottom-right {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 5px;
}

/* Card Decorations */
.card-decoration {
  position: absolute;
  width: 60px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.left-top {
  top: 20px;
  left: 20px;
  transform: rotate(-15deg);
}

.right-bottom {
  bottom: 20px;
  right: 20px;
  transform: rotate(15deg);
}

/* Chips Decorations */
.chips-decoration {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.1);
  border: 2px dashed rgba(218, 165, 32, 0.3);
}

.chips-decoration.left {
  left: 20px;
  top: 30px;
}

.chips-decoration.right {
  right: 20px;
  bottom: 30px;
}

.hero h2 {
  font-size: 2.3em;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h2 i {
  margin-right: 10px;
  color: var(--accent-color);
  -webkit-text-fill-color: var(--accent-color);
}

.telegram-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--telegram-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.telegram-button:hover {
  background-color: #1b8ece;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 171, 238, 0.5);
}

.telegram-button i {
  margin-right: 10px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.feature {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--glass-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--glass-shadow);
}

.feature:hover .feature-icon {
  transform: scale(1.2);
}

.feature-icon {
  margin-bottom: 20px;
  font-size: 2.5em;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 1.4em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.platform {
  margin-bottom: 50px;
}

.clubgg-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--clubgg-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clubgg-button:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.clubgg-button i {
  margin-right: 10px;
}

/* Jackpot Section */
.jackpot {
  margin-bottom: 50px;
}

.jackpot-container {
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.7), rgba(36, 59, 85, 0.7));
}

.jackpot-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.jackpot-title h3 {
  font-size: 1.8em;
  color: var(--accent-color);
}

.jackpot-title i {
  color: var(--accent-color);
  font-size: 1.5em;
}

.jackpot-amount {
  font-size: 3.5em;
  font-weight: bold;
  margin: 20px 0;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
footer {
  padding: 30px 0;
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-icon {
  font-size: 1.5em;
  margin: 0 5px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-icon:hover {
  opacity: 1;
  transform: translateY(-5px);
}

footer p {
  font-size: 0.9em;
  color: #aaa;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .container {
    width: 95%;
    padding: 15px;
  }
  
  .glassmorphism {
    padding: 30px;
  }
  
  .logo h1 {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
