/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pro Tips Clean Layout */
.pro-tips-clean {
    margin: 2rem 0;
}

.tips-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.tip-clean {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    flex: 1;
    min-width: 180px;
}

.tip-clean .tip-icon {
    font-size: 1.5rem;
}

.tip-clean strong {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
}

/* Provider Section Horizontal Layout */
.provider-features-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.provider-features-clean .feature-clean {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    flex: 1;
    min-width: 200px;
}

.provider-features-clean .feature-icon {
    font-size: 1.5rem;
}

.provider-features-clean .feature-clean strong {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
}

.provider-features-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.provider-features-horizontal .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Comparison table (Chicken Road vs Chicken Road 2) */
.comparison-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  text-align: left;
}

.comparison-table thead th {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Chicken Road Gameplay Mechanics - improved responsive layout */
.gameplay-mechanics .mechanics-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 1rem;
}

.mechanics-overview {
  grid-column: 1 / -1; /* span both columns */
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 16px 18px;
}

/* clearer section partition inside mechanics */
.mechanics-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr; /* controls | progression | obstacles */
  gap: 18px;
  align-items: start;
}

.subsection-title {
  margin: 0 0 8px 0;
  color: #ffeb3b;
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.mechanic-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  row-gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
}

.mechanic-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.mechanic-card h3 {
  margin: 0;
}

.mechanic-card ul {
  grid-column: 1 / -1;
  margin: 6px 0 0 0;
  padding-left: 18px;
}

.mechanic-card ul li {
  margin: 3px 0;
}

.obstacle-types {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
}

.obstacle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.obstacle-item {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 8px;
  padding: 12px 12px;
}

.obstacle-item h4 {
  color: #ffd700;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .gameplay-mechanics .mechanics-content {
    grid-template-columns: 1fr; /* stack on small screens */
  }

  .mechanics-columns {
    grid-template-columns: 1fr;
  }
}

.provider-features-horizontal .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.provider-features-horizontal .feature-item strong {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.provider-features-horizontal .feature-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.provider-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.stats-compact {
    display: flex;
    gap: 1rem;
}

.stats-compact .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.stats-compact .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.stats-compact .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #ffd700;
}

h3 {
    font-size: 1.8rem;
    color: #ffeb3b;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu .dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-menu .dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 25px;
}

.nav-menu .dropdown > a::after {
    content: "▼";
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/assets/337792612.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    z-index: 2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.feature p {
    font-size: 0.9rem;
    color: #cccccc;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.game-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.rtp, .volatility {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.game-buttons .btn-primary,
.game-buttons .btn-secondary {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Differentiators Section */
.differentiators-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.differentiators-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.differentiator {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.diff-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.diff-content h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* RTP Section */
.rtp-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.rtp-content {
    max-width: 800px;
    margin: 0 auto;
}

.rtp-overview {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.rtp-games {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rtp-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-name {
    font-weight: 600;
    color: #ffffff;
}

.rtp-rate {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffd700;
}

.rtp-average {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000000;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.rtp-average h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Fairness Section */
.fairness-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.fairness-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fairness-feature {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.fairness-feature h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Biggest Wins Section */
.biggest-wins-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.win-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.win-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.win-game {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.win-details {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
}

.wins-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-features {
    list-style: none;
    margin: 2rem 0;
}

.demo-features li {
    padding: 0.5rem 0;
    color: #cccccc;
}

.demo-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.demo-game {
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.demo-game img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.demo-game h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.demo-btn {
    margin-top: 1rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.download-features {
    list-style: none;
    margin: 2rem 0;
}

.download-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.download-size {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.download-requirements {
    color: #999;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.phone-mockup {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 24px;
    border: 2px solid #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.phone-mockup img {
    width: 100%;
    border-radius: 16px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #cccccc;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 8px 0;
        border-bottom: none;
        color: #cccccc;
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: transparent;
        color: #ffd700;
        padding-left: 0;
    }
    
    .nav-menu .dropdown > a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-content,
    .demo-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .differentiator {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wins-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .game-buttons {
        flex-direction: column;
    }

    .download-buttons {
        align-items: stretch;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card,
.benefit-card,
.win-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

/* About Page Specific Styles */

/* Fan Site Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    padding: 3rem 0;
    margin-top: 80px;
    border-bottom: 3px solid rgba(255, 0, 0, 0.2);
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.disclaimer-content h2 {
    color: #ff4444;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.disclaimer-text p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.disclaimer-text p strong {
    color: #ff4444;
}

.disclaimer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.disclaimer-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.disclaimer-highlight span:last-child {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.disclaimer-note {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #ffcccc !important;
    font-style: italic;
}

/* Quick Facts Section */
.quick-facts {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 235, 59, 0.05) 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.fact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.fact-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.fact-item p {
    color: #cccccc;
    font-size: 0.9rem;
    flex-grow: 1;
}

/* Company Highlights Section */
.company-highlights {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Company Culture Section */
.company-culture {
    padding: 4rem 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.culture-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.culture-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.culture-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Development Process Section */
.development-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 235, 59, 0.02) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #ffd700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.step-content ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-content ul li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Industry Recognition Section */
.industry-recognition {
    padding: 4rem 0;
}

.recognition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.recognition-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.recognition-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.recognition-text ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    line-height: 1.6;
}

.recognition-text ul li:last-child {
    border-bottom: none;
}

.recognition-text ul li strong {
    color: #ffd700;
}

.recognition-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Upcoming Events Section */
.upcoming-events {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.event-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.event-date {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.event-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.event-item p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-grow: 1;
}

.event-details span {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Partnership Opportunities Section */
.partnership-opportunities {
    padding: 4rem 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.opportunity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.opportunity-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.opportunity-card ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.opportunity-card ul li:before {
    content: "→";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Market Presence Section */
.market-presence {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 235, 59, 0.02) 100%);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.market-region {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.market-region:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.market-region h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.market-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-grow: 1;
}

.country {
    background: rgba(255, 215, 0, 0.1);
    color: #cccccc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.country:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Support & Services Section */
.support-services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.service-card ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Enhanced Team Section */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    display: block;
}

.team-stat .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.expertise-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Enhanced Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    color: #ffd700;
}

.contact-details h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #cccccc;
    margin: 0;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffeb3b;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.contact-form h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-form p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.news-date {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.news-card h3 {
    color: #ffd700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.news-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Enhanced Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.achievement-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Enhanced Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.member-info h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #ffeb3b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-bio {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Enhanced Mission & Values */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.mission-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Enhanced Business Development */
.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.business-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.business-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.business-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.business-text ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.business-text ul li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.business-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Partnerships */
.partnerships-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.partnership-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partnership-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.partnership-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Technology Stack */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.tech-category:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.tech-category h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    flex-grow: 1;
}

.tech-item {
    background: rgba(255, 215, 0, 0.1);
    color: #cccccc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Enhanced Why Choose Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reason-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Register Page Styles */

/* Registration Guide Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.registration-overview {
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #cccccc;
}

.registration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: #ffffff;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px auto;
}

.step-content h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-tips {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    width: 100%;
}

.step-tips h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-tips ul {
    list-style: none;
    padding: 0;
}

.step-tips li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Casino Guides Section */
.casino-guides-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.casino-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-guide-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.casino-guide-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.guide-header h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 0;
}

.guide-content h4 {
    color: #ffd700;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.guide-content p {
    color: #cccccc;
    margin-bottom: 15px;
}

.guide-content ol {
    color: #cccccc;
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-content ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.guide-content .btn-primary {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.security-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.security-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-details h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.security-details ul {
    list-style: none;
    padding: 0;
}

.security-details li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.security-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.bonus-type-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-type-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-type-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-example {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bonus-example h4 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bonus-example p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.bonus-requirements h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.bonus-requirements ul {
    list-style: none;
    padding: 0;
}

.bonus-requirements li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.bonus-requirements li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trouble-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.trouble-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.trouble-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.trouble-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.trouble-solutions h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.trouble-solutions ul {
    list-style: none;
    padding: 0;
}

.trouble-solutions li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.trouble-solutions li:before {
    content: "🔧";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 235, 59, 0.02) 100%);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #cccccc;
}

.intro-links {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
}

.intro-links p {
    margin-bottom: 1rem;
}

.intro-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.intro-links a:hover {
    color: #ffeb3b;
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.casino-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.casino-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.casino-card.featured::before {
    content: "⭐ Featured";
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.casino-rating {
    text-align: right;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    display: block;
}

.rating-score {
    color: #cccccc;
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.casino-features ul {
    list-style: none;
    padding: 0;
}

.casino-features ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.casino-features ul li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.casino-bonuses {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
}

.casino-bonuses h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.casino-bonuses ul {
    list-style: none;
    padding: 0;
}

.casino-bonuses ul li {
    color: #cccccc;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.casino-bonuses ul li:before {
    content: "💰";
    position: absolute;
    left: 0;
}

.casino-cta {
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.casino-cta .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Choose Section */
.choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
}

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

.choose-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.choose-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.choose-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.choose-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .culture-content,
    .recognition-content,
    .contact-content,
    .business-content,
    .partnerships-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facts-grid,
    .highlights-grid,
    .process-steps,
    .events-timeline,
    .opportunities-grid,
    .markets-grid,
    .services-grid,
    .news-grid,
    .achievements-grid,
    .team-grid,
    .values-grid,
    .tech-stack-grid,
    .reasons-grid,
    .casinos-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .event-details {
        flex-direction: column;
    }
    
    .market-countries {
        justify-content: center;
    }
    
    .tech-items {
        justify-content: center;
    }
    
    .casino-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .casino-logo img {
        width: 100px;
        height: 50px;
    }
    
    /* Registration Page Mobile Styles */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px auto;
    }
    
    .registration-benefits {
        grid-template-columns: 1fr;
    }
    
    .casino-guides-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid,
    .bonus-types-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .overview-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .security-card h3,
    .bonus-type-card h3,
    .trouble-card h3 {
        font-size: 1.1rem;
    }
}

/* Responsible Gaming Page Styles */

/* Responsible Intro Section */
.responsible-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsible-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #cccccc;
    font-size: 1.1rem;
}

.responsible-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.principle-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.principle-content h3 {
    color: #22c55e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.principle-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Warning Signs Section */
.warning-signs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.warning-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.warning-card h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.warning-card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.warning-card ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.warning-card ul li:last-child {
    border-bottom: none;
}

.warning-card ul li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Self Assessment Section */
.self-assessment-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.assessment-content {
    max-width: 800px;
    margin: 0 auto;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
}

.assessment-intro p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.assessment-questions {
    margin-bottom: 3rem;
}

.question-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.question-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.question-item h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.question-options {
    display: flex;
    gap: 1rem;
}

.option {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.option:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.assessment-result {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.assessment-result h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.assessment-result p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Tips Section */
.tips-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #a855f7;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Help Section */
.help-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
}

.help-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.help-intro p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-contact {
    text-align: left;
}

.resource-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.resource-contact a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.resource-contact a:hover {
    color: #059669;
}

.emergency-help {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.emergency-help h3 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.emergency-help p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #cccccc;
}

.emergency-contact strong {
    color: #ef4444;
}

/* Family Section */
.family-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.family-content {
    max-width: 800px;
    margin: 0 auto;
}

.family-text h3 {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.family-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.support-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-tip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.support-tip:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.support-tip h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.support-tip p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.family-resources {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.family-resources h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.family-resources ul {
    list-style: none;
    padding: 0;
}

.family-resources ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.family-resources ul li:before {
    content: "💚";
    position: absolute;
    left: 0;
}

/* Mobile Responsive for Responsible Gaming */
@media (max-width: 768px) {
    .responsible-principles,
    .warning-signs-grid,
    .tips-grid,
    .help-resources,
    .support-tips,
    .emergency-contacts {
        grid-template-columns: 1fr;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .question-options {
        flex-direction: column;
    }
    
    .option {
        text-align: center;
    }
}

/* Privacy Policy Page Styles */

/* Privacy Intro Section */
.privacy-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #cccccc;
    font-size: 1.1rem;
}

.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.policy-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.policy-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.policy-highlight .highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Data Collection Section */
.data-collection-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

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

.collection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.collection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.collection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.collection-card h3 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.collection-card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.collection-card ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.collection-card ul li:last-child {
    border-bottom: none;
}

.collection-card ul li:before {
    content: "📋";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Usage Section */
.usage-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

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

.usage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.usage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.usage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.usage-card h3 {
    color: #a855f7;
    margin-bottom: 1rem;
}

.usage-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Sharing Section */
.sharing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.sharing-content {
    max-width: 900px;
    margin: 0 auto;
}

.sharing-text h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sharing-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sharing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.sharing-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sharing-category:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.sharing-category h4 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sharing-category ul {
    list-style: none;
    padding: 0;
}

.sharing-category ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sharing-category ul li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.sharing-category:nth-child(2) ul li:before {
    content: "❌";
}

/* Cookies Section */
.cookies-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.cookies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookies-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
}

.cookies-intro p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookie-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.cookie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.cookie-card h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
    text-align: center;
}

.cookie-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cookie-card ul {
    list-style: none;
    padding: 0;
}

.cookie-card ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cookie-card ul li:before {
    content: "🍪";
    position: absolute;
    left: 0;
}

.cookie-controls {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.cookie-controls h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.cookie-controls p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-controls ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.cookie-controls ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cookie-controls ul li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

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

.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.security-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Rights Section */
.rights-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.right-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.right-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.right-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.right-card h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.right-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

.rights-contact {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
}

.rights-contact h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.rights-contact p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Retention Section */
.retention-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.retention-content {
    max-width: 900px;
    margin: 0 auto;
}

.retention-text h3 {
    color: #a855f7;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.retention-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.retention-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.retention-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.retention-category:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.retention-category h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.retention-category p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.retention-category p strong {
    color: #a855f7;
}

.deletion-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.deletion-info h4 {
    color: #a855f7;
    margin-bottom: 1rem;
}

.deletion-info p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Children Section */
.children-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.children-content {
    max-width: 800px;
    margin: 0 auto;
}

.children-text h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.children-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.children-policy,
.gambling-age {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.children-policy:hover,
.gambling-age:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.children-policy h4,
.gambling-age h4 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.children-policy ul,
.gambling-age ul {
    list-style: none;
    padding: 0;
}

.children-policy ul li,
.gambling-age ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.children-policy ul li:before {
    content: "👶";
    position: absolute;
    left: 0;
}

.gambling-age ul li:before {
    content: "🎰";
    position: absolute;
    left: 0;
}

/* Transfers Section */
.transfers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.transfers-content {
    max-width: 800px;
    margin: 0 auto;
}

.transfers-text h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.transfers-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.transfer-safeguards,
.transfer-notice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.transfer-safeguards:hover,
.transfer-notice:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.transfer-safeguards h4,
.transfer-notice h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.transfer-safeguards ul {
    list-style: none;
    padding: 0;
}

.transfer-safeguards ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.transfer-safeguards ul li:before {
    content: "🌍";
    position: absolute;
    left: 0;
}

.transfer-notice p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Changes Section */
.changes-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.changes-content {
    max-width: 800px;
    margin: 0 auto;
}

.changes-text h3 {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.changes-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.notification-methods,
.review-encouragement {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.notification-methods:hover,
.review-encouragement:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.notification-methods h4,
.review-encouragement h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.notification-methods ul {
    list-style: none;
    padding: 0;
}

.notification-methods ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.notification-methods ul li:before {
    content: "📢";
    position: absolute;
    left: 0;
}

.review-encouragement p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.contact-method .contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.response-time {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.response-time h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.response-time p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .policy-highlights,
    .collection-grid,
    .usage-grid,
    .cookies-grid,
    .security-grid,
    .rights-grid,
    .retention-categories,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .policy-highlight,
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .sharing-categories {
        grid-template-columns: 1fr;
    }
}

/* Game Pages Styles */

/* Game Overview Section */
.game-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-text h3 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.overview-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.highlight-item .highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    color: #a855f7;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #a855f7;
    margin-bottom: 1rem;
}

.stat-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-text h3 {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.demo-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.demo-feature .feature-icon {
    font-size: 1.2rem;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.demo-image {
    text-align: center;
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Strategy Section */
.strategy-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy-card h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.awards-content {
    max-width: 800px;
    margin: 0 auto;
}

.awards-text h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.awards-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.award-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.award-content h4 {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.award-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.comparison-card.featured {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.comparison-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.comparison-card h3 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.comparison-card.featured h3 {
    color: #22c55e;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    color: #cccccc;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-card ul li:before {
    content: "📊";
    position: absolute;
    left: 0;
}

/* Theme Section */
.theme-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.theme-content {
    max-width: 800px;
    margin: 0 auto;
}

.theme-text h3 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.theme-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.theme-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.theme-element {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.theme-element:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.element-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-content h4 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.element-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Characters Section */
.characters-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.characters-content {
    max-width: 800px;
    margin: 0 auto;
}

.characters-text h3 {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.characters-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.character-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.character-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.character-content h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.character-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Game Pages */
@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .game-highlights,
    .features-grid,
    .stats-grid,
    .strategy-grid,
    .awards-list,
    .comparison-grid,
    .theme-elements,
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item,
    .award-item,
    .theme-element,
    .character-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Demo Games Page Specific Styles */
.demo-games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.demo-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.demo-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-game-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.demo-game-card.coming-soon {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.03);
}

.game-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.demo-game-card:hover .game-image img {
    transform: scale(1.05);
}

.demo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-info h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-info p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.game-features .feature {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.demo-play-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Strategy Development Section */
.strategy-development {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.strategy-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.strategy-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.strategy-list {
    list-style: none;
    padding: 0;
}

.strategy-list li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.strategy-list li:before {
    content: "→";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.strategy-list li:last-child {
    border-bottom: none;
}

/* Risk Management Section */
.risk-management {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.risk-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.risk-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.risk-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.risk-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.risk-features .feature {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

/* Transition Section */
.transition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.transition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transition-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.transition-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.transition-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.transition-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.transition-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transition-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-item {
    color: #cccccc;
    font-size: 0.9rem;
    padding: 5px 0;
}

.transition-tips {
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.transition-tips h3 {
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tip-icon {
    font-size: 1.5rem;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 5px;
}

.tip-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.tip-item p strong {
    color: #ffd700;
}

/* Demo Benefits Section */
.demo-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* How to Play Demo Section */
.how-to-play {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Game Guides Section */
.game-guides-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.guide-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.guide-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guide-links .btn-primary,
.guide-links .btn-secondary {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Responsive Design for Demo Games Page */
@media (max-width: 768px) {
    .demo-games-grid,
    .strategy-grid,
    .risk-grid,
    .transition-grid,
    .benefits-grid,
    .steps-grid,
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-game-card,
    .strategy-card,
    .risk-card,
    .transition-card,
    .benefit-card,
    .step-card,
    .guide-card {
        padding: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .transition-tips {
        padding: 20px;
        margin-top: 30px;
    }
    
    .game-features {
        justify-content: center;
    }
    
    .guide-links {
        flex-direction: column;
    }
    
    .guide-links .btn-primary,
    .guide-links .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .demo-games-section,
    .strategy-development,
    .risk-management,
    .transition-section,
    .demo-benefits,
    .how-to-play,
    .game-guides-section {
        padding: 40px 0;
    }
    
    .demo-game-card,
    .strategy-card,
    .risk-card,
    .transition-card,
    .benefit-card,
    .step-card,
    .guide-card {
        padding: 15px;
    }
    
    .strategy-icon,
    .risk-icon,
    .transition-icon,
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* How to Play Section Styles */
.how-to-play-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.how-to-play-content {
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-play-intro {
    text-align: center;
    margin-bottom: 50px;
}

.how-to-play-intro p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.how-to-play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.step-screenshot {
    margin-top: 20px;
}

.step-screenshot img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.step-screenshot img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
}

.screenshot-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
}

.how-to-play-tips {
    margin-bottom: 50px;
}

.how-to-play-tips h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tip-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.tip-item h4 {
    color: #ffeb3b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.how-to-play-cta {
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.how-to-play-cta h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 2rem;
}

.how-to-play-cta p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    min-width: 150px;
}

/* Mobile Responsive for How to Play Section */
@media (max-width: 768px) {
    .how-to-play-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-item {
        padding: 20px;
    }
    
    .how-to-play-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Game Screenshots Gallery */
.game-screenshots {
    margin-bottom: 50px;
}

.game-screenshots h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.screenshot-item:hover img {
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
}

.screenshot-item .screenshot-caption {
    margin-top: 15px;
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshot-item {
        padding: 15px;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.comparison-card.featured {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.05);
    position: relative;
}

.comparison-card.featured::before {
    content: "★ RECOMMENDED";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.comparison-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 0;
    line-height: 1.6;
}

.comparison-card ul li:before {
    content: "";
    display: none;
}

.comparison-summary {
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-summary h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.comparison-summary p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-content h4 {
    color: #ffeb3b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* What's New Section */
.whats-new-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.improvements-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.highlight-card p {
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0;
}

.improvements-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.improvement-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: background 0.3s ease;
}

.improvement-feature:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h4 {
    color: #ffd700;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Demo Modal Styles */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.demo-modal-content {
    background-color: #1a1a2e;
    margin: 2% auto;
    border: 2px solid #ffd700;
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px 10px 0 0;
}

.demo-modal-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.demo-close {
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.demo-close:hover {
    color: #ffffff;
}

.demo-modal-body {
    padding: 0;
    height: calc(100% - 60px);
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 10px 10px;
}

/* How to Play Page Styles */
.game-selection {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-guide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.game-guide-card .game-image {
    position: relative;
    overflow: hidden;
}

.game-guide-card .game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-guide-card:hover .game-image img {
    transform: scale(1.05);
}

.difficulty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-badge.easy {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.difficulty-badge.medium {
    background: rgba(249, 115, 22, 0.9);
    color: white;
}

.difficulty-badge.hard {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.game-guide-card .game-info {
    padding: 1.5rem;
}

.game-guide-card h3 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.game-guide-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.game-guide-card .game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.game-guide-card .game-stats .stat {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Game Guide Modal */
.game-guide-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.guide-modal-content {
    background-color: #1a1a2e;
    margin: 2% auto;
    border: 2px solid #ffd700;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    overflow-y: auto;
}

.guide-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.guide-modal-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.guide-close {
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.guide-close:hover {
    color: #ffffff;
}

.guide-modal-body {
    padding: 2rem;
}

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

.guide-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-section ul {
    list-style: none;
    padding: 0;
}

.guide-section li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.guide-section li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.controls-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.control-key {
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: bold;
    min-width: 2rem;
    text-align: center;
}

.guide-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Universal Tips Section */
.universal-tips {
    padding: 4rem 0;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tip-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Quick Start Section */
.quick-start {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* FAQ Enhancements */
.faq-item {
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-question h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Founder Section */
.founder-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.founder-content {
    margin-top: 3rem;
}

.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.founder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-card:hover .founder-avatar {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.founder-initial {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    color: #ffed4e;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.founder-bio {
    margin-bottom: 2.5rem;
}

.founder-bio p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-content h4 {
    color: #ffd700;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.founder-quote {
    background: rgba(255, 215, 0, 0.08);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.founder-quote blockquote {
    margin: 0;
    font-style: italic;
}

.founder-quote p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    quotes: """ """ "'" "'";
}

.founder-quote p:before {
    content: open-quote;
    color: #ffd700;
    font-size: 1.5em;
    line-height: 0;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

.founder-quote p:after {
    content: close-quote;
    color: #ffd700;
    font-size: 1.5em;
    line-height: 0;
    margin-left: 0.25em;
    vertical-align: -0.4em;
}

.founder-quote cite {
    color: #ffd700;
    font-weight: 600;
    font-style: normal;
    font-size: 0.95rem;
}

/* Mobile Responsive for How to Play */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .controls-mini {
        grid-template-columns: 1fr;
    }
    
    .guide-actions {
        flex-direction: column;
    }
    
    .guide-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .guide-modal-header {
        padding: 1rem;
    }
    
    .guide-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .guide-modal-body {
        padding: 1.5rem;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .founder-info h3 {
        font-size: 2rem;
    }
    
    .founder-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-quote {
        padding: 1.5rem;
    }
}

/* Mobile Responsive for Comparison Section */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .improvements-highlight {
        grid-template-columns: 1fr;
    }
    
    .improvements-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .improvement-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-top: 0;
    }
    
    .demo-modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .demo-modal-header {
        padding: 0.75rem 1rem;
    }
    
    .demo-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .demo-close {
        font-size: 1.5rem;
    }
    
    .comparison-card {
        padding: 25px;
    }
    
    .comparison-card.featured::before {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .comparison-summary {
        padding: 30px 20px;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
    }
}

/* Mobile APK Section Styles */
.mobile-apk-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.mobile-apk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-pattern)"/></svg>');
    opacity: 0.5;
}

.mobile-apk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-intro {
    margin-bottom: 40px;
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-apk-text h3 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-apk-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #e0e0e0;
}

.mobile-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-feature:hover::before {
    left: 100%;
}

.mobile-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.mobile-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.mobile-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: 600;
}

.mobile-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
    color: #cccccc;
}

.mobile-benefits {
    margin-bottom: 40px;
}

.mobile-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffd700;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.mobile-cta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-cta .btn-primary,
.mobile-cta .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-cta .btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.mobile-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.mobile-cta .btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.mobile-cta .btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-3px);
}

.mobile-apk-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-device-mockup {
    position: relative;
    perspective: 1000px;
}

.device-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.device-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.mobile-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.mobile-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.mobile-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    display: block;
}

.mobile-stat .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
    font-family: serif;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffd700;
}

.author-info span {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* Game Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-caption {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.gallery-caption p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.gallery-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .mobile-apk-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mobile-apk-text h3 {
        font-size: 2.5rem;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mobile-cta {
        justify-content: center;
        gap: 20px;
    }
    
    .mobile-device-mockup {
        transform: scale(0.9);
    }
    
    .device-frame {
        transform: rotateY(-10deg) rotateX(3deg);
    }
    
    .mobile-stats {
        gap: 20px;
    }
    
    .mobile-stat {
        min-width: 100px;
        padding: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .gallery-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .mobile-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-icon {
        margin-bottom: 10px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 15px;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
    }
}
