/* Golden Clover Casino Styles */
/* Color Scheme: Gold (#FFD700, #FFA500), Green (#228B22, #32CD32), Dark (#1a1a1a, #2c2c2c) */

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

:root {
  --gold: #ffd700;
  --gold-dark: #ffa500;
  --green: #228b22;
  --green-light: #32cd32;
  --dark: #1a1a1a;
  --dark-light: #2c2c2c;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #333333;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Header Styles */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
}

.social-links a {
  color: var(--white);
  margin-left: 15px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--gold);
}

.main-nav {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--gold);
  font-size: 28px;
  font-weight: bold;
}

.logo h1 a {
  color: var(--gold);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.btn-signup {
  background-color: var(--gold);
  color: var(--dark);
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-signup:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--dark);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Welcome Bonus Section */
.welcome-bonus {
  padding: 60px 0;
  background-color: var(--gray);
}

.welcome-bonus .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.welcome-bonus img {
  max-width: 50%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bonus-content h3 {
  font-size: 36px;
  color: var(--green);
  margin-bottom: 15px;
}

/* Games Section */
.games-section,
.fish-games,
.about-preview,
.game-variety {
  padding: 60px 0;
}

.games-section h2,
.fish-games h2,
.about-preview h2,
.game-variety h2 {
  font-size: 36px;
  text-align: center;
  color: var(--green);
  margin-bottom: 40px;
}

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

.game-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: translateY(-10px);
}

.game-card img {
  width: 100%;
  height: auto;
}

.game-card h3 {
  padding: 15px;
  color: var(--green);
}

.game-card p {
  padding: 0 15px 15px;
  color: var(--text-dark);
}

/* Features List */
.features-list ul {
  list-style: none;
  padding: 20px 0;
}

.features-list li {
  padding: 10px 0;
  font-size: 18px;
}

/* About Preview Section */
.about-preview {
  background-color: var(--gray);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Full Width Image */
.full-width-img {
  width: 100%;
  border-radius: 15px;
  margin: 20px 0;
}

/* Mobile App Section */
.mobile-app {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.mobile-app h2 {
  color: var(--gold);
  margin-bottom: 10px;
}

.mobile-app h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.btn-download {
  background-color: var(--gold);
  color: var(--dark);
  padding: 15px 35px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-download:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.app-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.app-feature {
  max-width: 200px;
}

.app-feature img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 20px;
}

.btn-primary.large {
  padding: 20px 50px;
  font-size: 20px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Legal Content */
.legal-content {
  padding: 60px 0;
}

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

.legal-content h2 {
  color: var(--green);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h3 {
  color: var(--green);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.notice-box,
.warning-box,
.cta-box,
.contact-box {
  background-color: var(--gray);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.warning-box {
  border-left-color: #dc3545;
  background-color: #fff5f5;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: var(--white);
}

.cta-box h3 {
  color: var(--gold);
}

/* About Content Page */
.about-content-page {
  padding: 60px 0;
}

.about-content-page article {
  max-width: 900px;
  margin: 0 auto;
}

/* Contact Page */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-card {
  background-color: var(--gray);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.info-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.info-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links-large a {
  color: var(--green);
  text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper h2 {
  color: var(--green);
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: var(--gray);
}

.faq-section h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-detailed {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item-detailed h3 {
  color: var(--green);
  margin-bottom: 15px;
}

/* Login Page */
.login-section {
  padding: 60px 0;
  background-color: var(--gray);
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.login-visual {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-large {
  text-align: center;
  margin-bottom: 30px;
}

.logo-large h2 {
  font-size: 80px;
}

.logo-large h3 {
  color: var(--gold);
}

.login-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.login-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form-container h1 {
  color: var(--green);
  margin-bottom: 10px;
}

.login-subtitle {
  color: var(--text-dark);
  margin-bottom: 30px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.forgot-link {
  color: var(--green);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.full-width {
  width: 100%;
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background-color: var(--white);
  padding: 0 15px;
}

.btn-signup-alt {
  width: 100%;
  background-color: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-signup-alt:hover {
  background-color: var(--green);
  color: var(--white);
}

.login-footer {
  text-align: center;
  margin-top: 20px;
}

.signup-link {
  color: var(--green);
  font-weight: bold;
}

.security-notice {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

.why-login {
  padding: 60px 0;
}

.why-login h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 40px;
}

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

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

/* App Pages */
.app-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: var(--white);
}

.android-hero {
  background: linear-gradient(135deg, #228b22 0%, #1a1a1a 100%);
}

.ios-hero {
  background: linear-gradient(135deg, #32cd32 0%, #2c2c2c 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.app-badges {
  margin: 30px 0;
}

.btn-download-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--gold);
  color: var(--dark);
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-download-large:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.download-icon {
  font-size: 36px;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-text .small {
  font-size: 12px;
}

.download-text .large {
  font-size: 20px;
}

.download-info {
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* App Features Section */
.app-features-section {
  padding: 80px 0;
  background-color: var(--gray);
}

.app-features-section h2 {
  text-align: center;
  color: var(--green);
  font-size: 36px;
  margin-bottom: 50px;
}

.features-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card-large {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-card-large:hover {
  transform: translateY(-10px);
}

.feature-icon-large {
  font-size: 60px;
  margin-bottom: 20px;
}

.feature-card-large h3 {
  color: var(--green);
  margin-bottom: 15px;
  font-size: 22px;
}

/* App Screenshots */
.app-screenshots {
  padding: 80px 0;
}

.app-screenshots h2 {
  text-align: center;
  color: var(--green);
  font-size: 36px;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
}

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

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.screenshot-item p {
  font-weight: 500;
  color: var(--text-dark);
}

/* Installation Guide */
.installation-guide {
  padding: 80px 0;
  background-color: var(--gray);
}

.installation-guide h2 {
  text-align: center;
  color: var(--green);
  font-size: 36px;
  margin-bottom: 50px;
}

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

.step-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: var(--green);
  margin-bottom: 15px;
}

/* Technical Specs */
.technical-specs {
  padding: 80px 0;
}

.technical-specs h2 {
  text-align: center;
  color: var(--green);
  font-size: 36px;
  margin-bottom: 50px;
}

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

.spec-item {
  background-color: var(--gray);
  padding: 30px;
  border-radius: 15px;
}

.spec-item h3 {
  color: var(--green);
  margin-bottom: 20px;
}

.spec-item ul {
  list-style: none;
}

.spec-item li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.spec-item li:last-child {
  border-bottom: none;
}

/* Device Compatibility */
.device-compatibility {
  padding: 80px 0;
  background-color: var(--gray);
}

.device-compatibility h2 {
  text-align: center;
  color: var(--green);
  font-size: 36px;
  margin-bottom: 15px;
}

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

.device-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.device-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.device-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.device-card ul {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}

.device-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* App CTA */
.app-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
}

.app-cta h2 {
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 20px;
}

.app-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.security-note {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--green);
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h2 {
    font-size: 32px;
  }

  .welcome-bonus .container {
    flex-direction: column;
  }

  .welcome-bonus img {
    max-width: 100%;
  }

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

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

  .contact-grid,
  .login-wrapper,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .features-grid-large,
  .screenshots-grid,
  .steps-grid,
  .specs-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h2,
  .page-header h1 {
    font-size: 28px;
  }

  .logo h1 {
    font-size: 22px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 16px;
  }
}
