.gameplaycontainer {
    height:100%;
    padding-top:78px;
    min-width:1270px;
}

.col-3.infocol {
  padding-left: 80px;
}

.maincol {
  background-color: transparent;
}

.imessage.sample {
  background-color: transparent;
}

.mobile-game-notices {
    display: none;
}

@media screen and (max-width: 991.98px) {
    .gameplaycontainer {
        height:100%;
        padding-top:78px;
        min-width:0px;
    }

    .col-1.blankshowbgcol {
        display: none;
    }

    .col-7.maincol {
        max-width: 100%;
        margin-bottom: 300px;
        padding-top: 5px;
    }

    .col-3.infocol {
        max-width: 100%;
        position: absolute;
        top: 120px;
        padding-left: 20px;
        display: none;
    }

    .row.actions .col-2 {
        display: none;
    }
    .row.actions .col7.next_instructions {
        max-width: 60%;
    }
    .row.actions .question_next_button.col-3 {
        max-width: 40%;
        flex: none;
    }
    .col-3.infocol .scores-section .game-notices {
        display: none;
    }

    .mobile-game-notices {
        display: block;
    }

    .mobile-game-notices .game-notices {
        margin:0;
    }
    
}
/* Playful Wordlize UI - Inspired by homepageUItemplate */

:root {
  --primary-color: #5e72e4;
  --secondary-color: #8898aa;
  --accent-color: #f5a623;
  --success-color: #2dce89;
  --info-color: #11cdef;
  --warning-color: #fb6340;
  --danger-color: #f5365c;
  --light-color: #f8f9fe;
  --dark-color: #172b4d;
  --purple-color: #8366f4;
  --pink-color: #f3a4b5;
  --teal-color: #1de9b6;
  --gradient-primary: linear-gradient(87deg, #5e72e4 0, #825ee4 100%);
  --gradient-secondary: linear-gradient(87deg, #f5a623 0, #f76c1c 100%);
  --gradient-accent: linear-gradient(87deg, #11cdef 0, #1171ef 100%);
  --font-family: 'Poppins', sans-serif;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  background-color: #fcfdff;
  margin: 0;
  padding: 0;
  color: var(--dark-color);
  line-height: 1.5;
}

/* Header & Navigation */
.navbar {
  background-color: white;
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.brand-logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 6rem auto 2rem;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 50vh;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 55%;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 1;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-content {
  color: var(--secondary-color);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.button-primary {
  background: var(--gradient-primary);
  color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(94, 114, 228, 0.3);
}

.button-secondary {
  background: var(--gradient-secondary);
  color: white;
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(245, 166, 35, 0.3);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

/* Wordset Card */
.wordset-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.wordset-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.wordset-card.active {
  border-top-color: var(--success-color);
}

.wordset-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.wordset-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Game Modes */
.game-modes {
  margin: 3rem 0;
}

.game-mode-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.game-mode-tab {
  padding: 0.75rem 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.game-mode-tab:hover {
  transform: translateY(-2px);
}

.game-mode-tab.active {
  background: var(--gradient-primary);
  color: white;
}

/* Quest Card */
.quest-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.quest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.quest-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.quest-progress {
  width: 100%;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* Score Card */
.score-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}

.score-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.score-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.score-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.score-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.score-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Wordset Carousel */
.card-carousel {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 2rem 0;
}

.my-card {
  min-width: 300px;
  transform: scale(0.9);
  transition: all 0.3s ease;
  opacity: 0.8;
  margin: 0 1rem;
}

.my-card.active {
  transform: scale(1);
  opacity: 1;
}

.my-card.prev, .my-card.next {
  cursor: pointer;
}

/* Playful Elements */
.blob-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.blob-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: var(--primary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-move 15s infinite alternate;
}

.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-move 12s infinite alternate-reverse;
}

@keyframes blob-move {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Confetti Animation */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  opacity: 0;
  animation: confetti-fall 5s ease-in-out infinite;
  z-index: -1;
}

.confetti:nth-child(odd) {
  background-color: var(--primary-color);
}

.confetti:nth-child(3n) {
  background-color: var(--success-color);
}

.confetti:nth-child(4n) {
  background-color: var(--info-color);
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .score-stats {
    grid-template-columns: 1fr;
  }
  
  .my-card {
    min-width: 250px;
  }
} 
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
